// class Shop optimization in sql request
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11443 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -185,7 +185,7 @@ class ShopCore extends ObjectModel
|
||||
{
|
||||
$has_dependency = false;
|
||||
$nbr_customer = (int)Db::getInstance()->getValue('
|
||||
SELECT `id_customer`
|
||||
SELECT count(*)
|
||||
FROM `'._DB_PREFIX_.'customer`
|
||||
WHERE `id_shop`='.(int)$id_shop
|
||||
);
|
||||
@@ -194,7 +194,7 @@ class ShopCore extends ObjectModel
|
||||
else
|
||||
{
|
||||
$nbr_order = (int)Db::getInstance()->getValue('
|
||||
SELECT `id_order`
|
||||
SELECT count(*)
|
||||
FROM `'._DB_PREFIX_.'orders`
|
||||
WHERE `id_shop`='.(int)$id_shop
|
||||
);
|
||||
@@ -351,7 +351,7 @@ class ShopCore extends ObjectModel
|
||||
{
|
||||
if (!$this->domain)
|
||||
return false;
|
||||
return 'http://'.$this->domain.$this->physical_uri.$this->virtual_uri;
|
||||
return 'http://'.$this->domain.$this->getBaseURI();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user