// Fix list of customers in multishop #PSCFV-2499

This commit is contained in:
rMalie
2012-05-21 17:44:38 +00:00
parent 5f25c7c735
commit a38d3626c1
+4 -1
View File
@@ -703,7 +703,10 @@ class ShopCore extends ObjectModel
if ($alias)
$alias .= '.';
$restriction = ' AND '.$alias.'id_shop IN ('.implode(', ', Shop::getContextListShopID($share)).') ';
if ($share == Shop::SHARE_CUSTOMER)
$restriction = ' AND '.$alias.'id_shop_group = '.(int)Shop::getContextShopGroupID();
else
$restriction = ' AND '.$alias.'id_shop IN ('.implode(', ', Shop::getContextListShopID($share)).') ';
return $restriction;
}