// AdminStockInstantState : added hint bo on 'quantity_usable'

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9984 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
bMancone
2011-11-09 11:17:09 +00:00
parent eeefaf3a4f
commit 6694cf0a20
@@ -58,7 +58,7 @@ class AdminStockInstantStateControllerCore extends AdminController
'title' => $this->l('Price (te)'),
'width' => 150,
'orderby' => false,
'search' => false
'search' => false,
),
'physical_quantity' => array(
'title' => $this->l('Physical quantity'),
@@ -70,13 +70,16 @@ class AdminStockInstantStateControllerCore extends AdminController
'title' => $this->l('Usable quantity'),
'width' => 80,
'orderby' => false,
'search' => false
'search' => false,
),
'real_quantity' => array(
'title' => $this->l('Real quantity'),
'width' => 80,
'orderby' => false,
'search' => false
'search' => false,
'hint' => $this->l('Pysical qty,
in combination with the quantity you ordered (atm) from your supplier,
minus what is ordered (atm) by clients.')
),
);