[+] BO : Add Accounting Management

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9961 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vSchoener
2011-11-08 14:20:24 +00:00
parent b173b1b737
commit 66fa6c64af
12 changed files with 407 additions and 16 deletions
+8
View File
@@ -2163,3 +2163,11 @@ CREATE TABLE `PREFIX_supplier_rates` (
PRIMARY KEY (`id_product`, `id_product_attribute`, `id_supplier`, `quantity_min`, `quantity_max`)
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
CREATE TABLE `PREFIX_accounting_zone_shop` (
`id_accounting_zone_shop` int(11) NOT NULL AUTO_INCREMENT,
`id_zone` int(11) NOT NULL,
`id_shop` int(11) NOT NULL,
`account_number` varchar(64) NOT NULL,
PRIMARY KEY (`id_accounting_zone_shop`),
UNIQUE KEY `id_zone` (`id_zone`,`id_shop`)
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;