// Fixed #PSTEST-886

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13639 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
bMancone
2012-02-27 16:14:14 +00:00
parent f6b91055d5
commit 8b35f64f95
@@ -103,6 +103,7 @@ class AdminStockManagementControllerCore extends AdminController
$this->_select = 'a.id_product as id, COUNT(pa.id_product_attribute) as variations';
$this->_join = 'LEFT JOIN `'._DB_PREFIX_.'product_attribute` pa ON (pa.id_product = a.id_product)';
$this->_where = 'AND a.cache_is_pack = 0 AND a.is_virtual = 0';
$this->_group = 'GROUP BY a.id_product';
// displays informations
$this->displayInformation($this->l('This interface allows you to manage the stocks of each of your products and their variations.').'<br />');