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

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15572 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
aNiassy
2012-05-21 18:34:36 +00:00
parent db90962422
commit e5e53d54bb
+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.' ';