task #845: Ajout d'un div d'information

This commit is contained in:
Dany De Bontridder 2013-05-18 20:06:43 +00:00
parent 36e5012827
commit 64494ae388
8 changed files with 57 additions and 2 deletions

View file

@ -4,7 +4,13 @@ ALTER TABLE mod_payment DROP CONSTRAINT mod_payment_mp_fd_id_fkey ;
ALTER TABLE mod_payment ADD CONSTRAINT mod_payment_mp_fd_id_fkey FOREIGN KEY (mp_fd_id) REFERENCES fiche_def (fd_id) MATCH SIMPLE ON UPDATE cascade ON DELETE cascade;
ALTER TABLE mod_payment DROP CONSTRAINT mod_payment_mp_jrn_def_id_fkey ;
ALTER TABLE mod_payment ADD CONSTRAINT mod_payment_mp_jrn_def_id_fkey FOREIGN KEY (mp_jrn_def_id) REFERENCES jrn_def (jrn_def_id) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE;
ALTER TABLE fiche_def ADD COLUMN fd_description text;
update fiche_def set fd_description='Achats de marchandises' where fd_id=1;
update fiche_def set fd_description='Liste des clients' where fd_id=2;
update fiche_def set fd_description='Liste des comptes financiers: banque, caisse,...' where fd_id=3;
update fiche_def set fd_description='Liste des fournisseurs' where fd_id=4;
update fiche_def set fd_label='Services & Biens Divers',fd_description='Pour les charges diverses' where fd_id=5;
update fiche_def set fd_description='Vente de prestations, marchandises ' where fd_id=6;
update version set val=107;
commit;