[-] BO : Bug Fixed #PSTEST-695 - Are ranges defined Tax Excl or Incl? => Incl

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13559 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fBrignoli
2012-02-23 14:12:30 +00:00
parent ac38a0a09b
commit dbfc56473d
@@ -84,7 +84,7 @@ class AdminRangePriceControllerCore extends AdminController
'name' => 'delimiter1',
'size' => 5,
'required' => true,
'suffix' => $currency->getSign('right'),
'suffix' => $currency->getSign('right').' '.$this->l('(Tax Incl.)'),
'desc' => $this->l('Range start (included)'),
'string_format' => '%.2f'
),
@@ -94,7 +94,7 @@ class AdminRangePriceControllerCore extends AdminController
'name' => 'delimiter2',
'size' => 5,
'required' => true,
'suffix' => $currency->getSign('right'),
'suffix' => $currency->getSign('right').' '.$this->l('(Tax Incl.)'),
'desc' => $this->l('Range end (excluded)'),
'string_format' => '%.2f'
),