- Accounting: Add new tab for product to define the number liable to an existing zone, update upgrader and installer

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9986 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vSchoener
2011-11-09 14:16:28 +00:00
parent 14c94558a6
commit 5016b3ca0d
8 changed files with 234 additions and 21 deletions
@@ -67,14 +67,9 @@ class AdminAccountingManagementControllerCore extends AdminController
NULL, NULL, $id_shop);
ksort($shop['zones']);
$query = '
SELECT `id_shop`, `id_zone`, `account_number`
FROM `'._DB_PREFIX_.'accounting_zone_shop`
WHERE `id_shop` = '.(int)$id_shop;
$zoneShopList = Db::getInstance()->executeS($query);
$zoneShopList = Accounting::getAccountNumberZoneShop($id_shop);
// Set Account number to the id_zone for an id_shop if exist
// Set Account number to the id_zone for the id_shop if exist
foreach($zoneShopList as $zoneShop)
$shop['zones'][$zoneShop['id_zone']]['account_number'] = $zoneShop['account_number'];
}