[-] BO : product state did not show in the back office search #PSCFV-3150

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16354 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
dMetzger
2012-07-11 15:54:17 +00:00
parent f39226c85e
commit 66e01b5f67
+3 -3
View File
@@ -207,15 +207,15 @@ class AdminSearchControllerCore extends AdminController
protected function initProductList()
{
$this->show_toolbar = false;
$this->fields_list['products'] = (array(
$this->fields_list['products'] = array(
'id_product' => array('title' => $this->l('ID'), 'width' => 25),
'manufacturer_name' => array('title' => $this->l('Manufacturer'), 'align' => 'center', 'width' => 200),
'reference' => array('title' => $this->l('Reference'), 'align' => 'center', 'width' => 150),
'name' => array('title' => $this->l('Name'), 'width' => 'auto'),
'price_tax_excl' => array('title' => $this->l('Price (tax excl.)'), 'align' => 'right', 'type' => 'price', 'width' => 60),
'price_tax_incl' => array('title' => $this->l('Price (tax incl.)'), 'align' => 'right', 'type' => 'price', 'width' => 60),
'status' => array('title' => $this->l('Status'), 'align' => 'center', 'width' => 25),
));
'active' => array('title' => $this->l('Active'), 'width' => 70, 'active' => 'status', 'align' => 'center', 'type' => 'bool')
);
}
public function setMedia()