From a55236a2d8151aa05f2d4a2e39b640eaddd02c2e Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 30 Nov 2005 23:09:28 +0000 Subject: [PATCH] =?UTF-8?q?S=E9paration=20de=20adresse=20de=20prestation?= =?UTF-8?q?=20(service)=20et=20de=20livraison=20(produit)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/data/data.sql | 3 ++- mysql/migration/1.1.0-2.0.0.sql | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/mysql/data/data.sql b/mysql/data/data.sql index 7de5a4850cf..51ae78cc193 100644 --- a/mysql/data/data.sql +++ b/mysql/data/data.sql @@ -814,5 +814,6 @@ insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) v insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (50, 'facture', 'internal', 'SALESREPFOLL', 'Commercial suivi du paiement', 1); insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (60, 'facture', 'external', 'BILLING', 'Contact client facturation', 1); -insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (61, 'facture', 'external', 'CUSTOMER', 'Contact client livraison/préstation', 1); +insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (61, 'facture', 'external', 'SHIPPING', 'Contact client livraison', 1); +insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (62, 'facture', 'external', 'SERVICE', 'Contact client préstation', 1); diff --git a/mysql/migration/1.1.0-2.0.0.sql b/mysql/migration/1.1.0-2.0.0.sql index 7b5bdac025f..d1416706bdd 100644 --- a/mysql/migration/1.1.0-2.0.0.sql +++ b/mysql/migration/1.1.0-2.0.0.sql @@ -1930,9 +1930,10 @@ insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) v insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (50, 'facture', 'internal', 'SALESREPFOLL', 'Commercial suivi du paiement', 1); insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (60, 'facture', 'external', 'BILLING', 'Contact client facturation', 1); -insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (61, 'facture', 'external', 'CUSTOMER', 'Contact client livraison/préstation', 1); +insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (61, 'facture', 'external', 'SHIPPING', 'Contact client livraison', 1); +insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (62, 'facture', 'external', 'SERVICE', 'Contact client préstation', 1); + - alter table llx_commande add ref_client varchar(30) after ref; alter table llx_facture add ref_client varchar(30) after facnumber; alter table llx_facture add date_valid date after datef;