[-] BO : fix #PSTEST-1128 - when saving a pack, a validation error causes pack data loss

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14451 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2012-04-04 12:38:42 +00:00
parent 3d57070dcb
commit e1a98ac876
5 changed files with 95 additions and 23 deletions
+14
View File
@@ -31,6 +31,13 @@ class PackCore extends Product
protected static $cacheIsPack = array();
protected static $cacheIsPacked = array();
/**
* Is product a pack?
*
* @static
* @param $id_product
* @return bool
*/
public static function isPack($id_product)
{
if (!Pack::isFeatureActive())
@@ -47,6 +54,13 @@ class PackCore extends Product
return self::$cacheIsPack[$id_product];
}
/**
* Is product in a pack?
*
* @static
* @param $id_product
* @return bool
*/
public static function isPacked($id_product)
{
if (!Pack::isFeatureActive())