From b519f30ec8c0ce565f3cba723bdeebae69aecfe4 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 1 May 2006 15:35:38 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20les=20taux=20de=20tva=20de=20l'Australie?= =?UTF-8?q?=20=E9tait=20attribu=E9=20=E0=20l'Allemagne?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/migration/2.0.0-2.1.0.sql | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index 1778370ad2b..a245fbeb220 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -148,8 +148,10 @@ insert into llx_c_departements (fk_region, code_departement,cheflieu,tncc,ncc,no insert into llx_c_departements (fk_region, code_departement,cheflieu,tncc,ncc,nom) values (2901,'TAS','',1,'','Tasmania'); insert into llx_c_departements (fk_region, code_departement,cheflieu,tncc,ncc,nom) values (2901, 'WA','',1,'','Western Australia'); insert into llx_c_departements (fk_region, code_departement,cheflieu,tncc,ncc,nom) values (2901, 'NT','',1,'','Northern Territory'); -insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values (291, 5, '10','0','VAT Rate 10',1); -insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values (292, 5, '0','0','VAT Rate 0',1); +insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values (291, 29, '10','0','VAT Rate 10',1); +insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values (292, 29, '0','0','VAT Rate 0',1); +delete from llx_c_tva where rowid='291' and fk_pays='5'; +delete from llx_c_tva where rowid='292' and fk_pays='5'; update llx_const set value='neptune' where value='pluton' and name = 'FACTURE_ADDON';