// activate stockCover admin interface + debug and adaptations

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9565 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
dSevere
2011-10-21 16:14:44 +00:00
parent 9494881976
commit a498289551
8 changed files with 120 additions and 114 deletions
@@ -40,29 +40,33 @@ class AdminWarehousesControllerCore extends AdminController
$this->fieldsDisplay = array(
'reference' => array(
'title' => $this->l('Reference'),
'width' => 40
'width' => 40,
),
'name' => array(
'title' => $this->l('Name'),
'width' => 300,
'havingFilter' => true
),
'management_type' => array(
'title' => $this->l('Managment type'),
'width' => 40
'width' => 40,
),
'employee' => array(
'title' => $this->l('Manager'),
'width' => 150,
'havingFilter' => true
),
'location' => array(
'title' => $this->l('Location'),
'width' => 150
'width' => 150,
'orderby' => false,
'filter' => false,
'search' => false,
),
'contact' => array(
'title' => $this->l('Phone Number'),
'width' => 50
'width' => 50,
'orderby' => false,
'filter' => false,
'search' => false,
),
);