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

This commit is contained in:
tDidierjean
2012-04-04 12:38:42 +00:00
parent 91e7097652
commit dffaf9b621
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())