From 39de98b165e210f448845c7fb03a24b94054cb86 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 8 Aug 2004 21:12:50 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20Bug=20[9907].=20Lors=20d'une=20nouvel=20?= =?UTF-8?q?install,=20le=20pays=20"Non=20sp=E9cifi=E9"=20n'=E9tait=20pas?= =?UTF-8?q?=20install=E9=20rendant=20le=20pays=20et=20d=E9partement=20obli?= =?UTF-8?q?gatoire.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/data/data.sql | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/mysql/data/data.sql b/mysql/data/data.sql index eb2fbe87da4..99e2d2178fb 100644 --- a/mysql/data/data.sql +++ b/mysql/data/data.sql @@ -146,10 +146,10 @@ insert into llx_const (name, value, type) values ('FAC_OUTPUT_URL','/htdocs/docu insert into llx_const (name, value, type) values ('FAC_PDF_INTITULE','Facture','chaine'); insert into llx_const (name, value, type) values ('FAC_PDF_MEL','facture@societe.com','chaine'); insert into llx_const (name, value, type) values ('FAC_PDF_WWW','http://www.societe.com','chaine'); -insert into llx_const (name, value, type) values ('FAC_PDF_LOGO','/htdocs/documents/logo','chaine'); -insert into llx_const (name, value, type) values ('FAC_CAPITAL_EURO','18600','chaine'); -insert into llx_const (name, value, type) values ('FAC_PDF_TVA_INTRA','BE 443 698 678','chaine'); -insert into llx_const (name, value, type) values ('FAC_PDF_RCS','634 674','chaine'); +insert into llx_const (name, value, type) values ('FAC_PDF_LOGO','/documents/logo','chaine'); +insert into llx_const (name, value, type) values ('FAC_CAPITAL_EURO','0','chaine'); +insert into llx_const (name, value, type) values ('FAC_PDF_TVA_INTRA','','chaine'); +insert into llx_const (name, value, type) values ('FAC_PDF_RCS','','chaine'); -- -- Propales @@ -221,9 +221,10 @@ insert into llx_c_typent (id,libelle) values (100, 'Autres'); -- Pays -- +insert into llx_c_pays (rowid,libelle,code) values (0, '-', ''); insert into llx_c_pays (rowid,libelle,code) values (1, 'France', 'FR'); insert into llx_c_pays (rowid,libelle,code) values (2, 'Belgique', 'BE'); -insert into llx_c_pays (rowid,libelle,code) values (2, 'Belgie', 'BE'); +insert into llx_c_pays (rowid,libelle,code) values (2, 'Belgie', 'BE'); insert into llx_c_pays (rowid,libelle,code) values (3, 'Italie', 'IT'); insert into llx_c_pays (rowid,libelle,code) values (4, 'Espagne', 'ES'); insert into llx_c_pays (rowid,libelle,code) values (5, 'Allemagne', 'DE');