From 02c7d48f547747d675bfd58e1db0d92e2ea15213 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 7 Jan 2005 23:57:26 +0000 Subject: [PATCH] =?UTF-8?q?Ajout=20du=20choix=20de=20la=20monnaie=20princi?= =?UTF-8?q?pale=20de=20la=20soci=E9t=E9=20dans=20l'=E9cran=20de=20configur?= =?UTF-8?q?ation=20de=20soci=E9t=E9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/data/data.sql | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/mysql/data/data.sql b/mysql/data/data.sql index f5085914c5c..66bcfa34875 100644 --- a/mysql/data/data.sql +++ b/mysql/data/data.sql @@ -48,15 +48,16 @@ insert into llx_action_def (rowid,titre,description,objet_type) values (2,'Valid -- -- Constantes de configuration -- -insert into llx_const (name, value, type, note) values ('MAIN_MONNAIE','euros','chaine','Monnaie'); -insert into llx_const (name, value, type, note) values ('MAIN_UPLOAD_DOC','1','chaine','Authorise l\'upload de document'); -insert into llx_const (name, value, type, note) values ('MAIN_NOT_INSTALLED','1','chaine','Test d\'installation'); -insert into llx_const (name, value, type, note) values ('MAIN_MAIL_FROM','dolibarr-robot@domain.com','chaine','EMail emetteur pour les notifications automatiques Dolibarr'); +insert into llx_const (name, value, type, note, visible) values ('MAIN_MONNAIE','euros','chaine','Monnaie',0); -insert into llx_const (name, value, type, note) values ('MAIN_START_YEAR','2004','chaine','Année de départ'); +insert into llx_const (name, value, type, note, visible) values ('MAIN_UPLOAD_DOC','1','chaine','Autorise l\'upload de document',1); +insert into llx_const (name, value, type, note, visible) values ('MAIN_NOT_INSTALLED','1','chaine','Test d\'installation',1); +insert into llx_const (name, value, type, note, visible) values ('MAIN_MAIL_FROM','dolibarr-robot@domain.com','chaine','EMail emetteur pour les notifications automatiques Dolibarr',1); -insert into llx_const (name, value, type, note) values ('MAIN_TITLE','Dolibarr','chaine','Titre des pages'); -insert into llx_const (name, value, type, note) values ('MAIN_DEBUG','1','yesno','Debug ..'); +insert into llx_const (name, value, type, note, visible) values ('MAIN_START_YEAR','2004','chaine','Année de départ',1); + +insert into llx_const (name, value, type, note, visible) values ('MAIN_TITLE','Dolibarr','chaine','Titre des pages',1); +insert into llx_const (name, value, type, note, visible) values ('MAIN_DEBUG','1','yesno','Debug ..',1); insert into llx_const (name, value, type, note, visible) values ('COMPTA_ONLINE_PAYMENT_BPLC','1','yesno','Système de gestion de la banque populaire de Lorraine',0);