[-] BO : fixed bug #PSCFV-3437

This commit is contained in:
vAugagneur
2012-08-03 08:30:04 +00:00
parent 1e71d78782
commit 2cddd751af
@@ -188,7 +188,8 @@ class AdminManufacturersControllerCore extends AdminController
ON (cl.`id_country` = a.`id_country` AND cl.`id_lang` = '.(int)$this->context->language->id.') ';
$this->_join .= '
LEFT JOIN `'._DB_PREFIX_.'manufacturer` m
ON (a.`id_manufacturer` = m.`id_manufacturer`)';
ON (a.`id_manufacturer` = m.`id_manufacturer`)'.
Shop::addSqlAssociation('manufacturer', 'm');
$this->_where = 'AND a.`id_customer` = 0 AND a.`id_supplier` = 0 AND a.`id_warehouse` = 0';
$this->context->smarty->assign('title_list', $this->l('Manufacturers addresses:'));