Меня бы устроило добавление колонки "Производитель" для фильтрации по производителю
Откройте файл
/controllers/admin/AdminProductsController.php и после:
Код:
$this->fields_list['active'] = array(
'title' => $this->l('Status'),
'active' => 'status',
'filter_key' => $alias.'!active',
'align' => 'text-center',
'type' => 'bool',
'class' => 'fixed-width-sm',
'orderby' => false
);
добавьте:
Код:
$this->fields_list['id_manufacturer'] = array(
'title' => $this->l('Manufacturers'),
'align' => 'text-center',
'filter_key' => 'm!name',
'class' => 'fixed-width-sm',
'orderby' => false
);
после:
Код:
LEFT JOIN `'._DB_PREFIX_.'shop` shop ON (shop.id_shop = '.$id_shop.')
добавьте:
Код:
LEFT JOIN `'._DB_PREFIX_.'manufacturer` m ON (a.`id_manufacturer` = m.`id_manufacturer`)