From 88f701bf0a50caf9cc16a31d486a0c35b217980f Mon Sep 17 00:00:00 2001 From: bMancone Date: Wed, 9 Nov 2011 11:17:09 +0000 Subject: [PATCH] // AdminStockInstantState : added hint bo on 'quantity_usable' --- controllers/admin/AdminStockInstantStateController.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/controllers/admin/AdminStockInstantStateController.php b/controllers/admin/AdminStockInstantStateController.php index 8f31f0073..5653436cc 100644 --- a/controllers/admin/AdminStockInstantStateController.php +++ b/controllers/admin/AdminStockInstantStateController.php @@ -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.') ), );