[-] BO : Fixed a bug which did not permitted to found a customer in the creation of order in the back office

This commit is contained in:
aNiassy
2012-05-21 18:34:36 +00:00
parent 3f9ede1799
commit e441f5cdf1
+4
View File
@@ -700,6 +700,8 @@ class ShopCore extends ObjectModel
*/
public static function addSqlRestriction($share = false, $alias = null)
{
if (!Shop::isFeatureActive())
return;
if ($alias)
$alias .= '.';
@@ -745,6 +747,8 @@ class ShopCore extends ObjectModel
*/
public static function addSqlRestrictionOnLang($alias = null, $id_shop = null)
{
if (!Shop::isFeatureActive())
return;
if (is_null($id_shop))
$id_shop = Context::getContext()->shop->id;
return ' AND '.(($alias) ? $alias.'.' : '').'id_shop = '.$id_shop.' ';