From 5c75347faa062d992071cf18747343e006948b3d Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 22 Jan 2009 22:55:53 +0000 Subject: [PATCH] New: Can edit sending methods --- mysql/migration/2.5.0-2.6.0.sql | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mysql/migration/2.5.0-2.6.0.sql b/mysql/migration/2.5.0-2.6.0.sql index 5e5354bb639..1f2488fbf6f 100644 --- a/mysql/migration/2.5.0-2.6.0.sql +++ b/mysql/migration/2.5.0-2.6.0.sql @@ -6,9 +6,16 @@ -- when current version is 2.4.0 or higher. -- +alter table llx_expedition_methode change statut active; + update llx_actioncomm set datep = datea where datep is null; +INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (1,'CATCH','Catch','Catch by client',1); +INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (2,'TRANS','Transporter','Generic transporter',1); +INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (3,'COLSUI','Colissimo Suivi','Colissimo Suivi',0); + + insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (70, 'facture_fourn', 'internal', 'SALESREPFOLL', 'Responsable suivi du paiement', 1); insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (71, 'facture_fourn', 'external', 'BILLING', 'Contact fournisseur facturation', 1); insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (72, 'facture_fourn', 'external', 'SHIPPING', 'Contact fournisseur livraison', 1);