debut d'integration de la comptabilite banquaire dans la partie adherent

This commit is contained in:
jlb 2003-05-06 16:45:13 +00:00
parent e8b2407738
commit 779a5d6e75
3 changed files with 11 additions and 3 deletions

View File

@ -46,7 +46,9 @@ function llxHeader($head = "") {
$menu->add("/public/adherents/","Espace adherents public");
$menu->add("cotisations.php","Cotisations");
$menu->add("index.php","Comptabilite");
$menu->add_submenu("cotisations.php","Cotisations");
$menu->add_submenu("/compta/bank/","Bank");
if ($user->admin)
{

View File

@ -1,5 +1,6 @@
<?PHP
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -67,9 +68,12 @@ function llxHeader($head = "")
$menu->add_submenu("config.php3","Config");
$menu->add("/compta/facture.php3","Factures");
if (defined("COMPTA_BANK_FACTURES") && COMPTA_BANK_FACTURES)
{
$menu->add("/compta/facture.php3","Factures");
}
if (COMPTA_ONLINE_PAYMENT_BPLC)
if (defined("COMPTA_ONLINE_PAYMENT_BPLC") && COMPTA_ONLINE_PAYMENT_BPLC)
{
$menu->add("/compta/bank/bplc.php","Transactions BPLC");
}

View File

@ -44,6 +44,8 @@ insert into llx_const(name, value, type, note) values ('MAIN_SEARCHFORM_CONTACT'
insert into llx_const(name, value, type, note) values ('COMPTA_ONLINE_PAYMENT_BPLC','1','yesno','Système de gestion de la banque populaire de Lorraine');
insert into llx_const(name, value, type, note) values ('COMPTA_BANK_FACTURES','1','yesno','Menu factures dans la partie bank');
INSERT INTO llx_const (name, value, type, note) VALUES ('MAIN_THEME','dolibarr','chaine','theme principal');
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_MAIL_RESIL','Votre adhesion sur %SERVEUR% vient d\'etre resilie.\r\nNous esperons vous revoir tres bientot','texte','Mail de Resiliation');