Skip to content
Snippets Groups Projects
Commit 0f69c33a authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Champs obligatoires

parent 390e66d6
Branches
Tags
No related merge requests found
#Sun Nov 25 21:04:17 GMT 2007
#Tue Nov 27 03:47:02 GMT 2007
eclipse.preferences.version=1
encoding/<project>=ISO-8859-1
......@@ -76,6 +76,8 @@ update llx_c_chargesociales set actioncompta='TAXCSGND' where id = 3;
update llx_c_chargesociales set actioncompta='TAXAPP' where id = 10;
update llx_c_chargesociales set actioncompta='TAXPRO' where id = 11;
update llx_c_chargesociales set actioncompta='TAXFON' where id = 20;
alter table llx_chargesociales modify fk_type integer NOT NULL;
alter table llx_chargesociales modify libelle varchar(80) NOT NULL;
insert into llx_rights_def (id, libelle, module, type, bydefault, subperms, perms) values (114,'Rapprocher transactions','banque','w',0,null,'consolidate');
update llx_rights_def set libelle='Crer/modifier/supprimer criture bancaire' where perms='modifier' AND module='banque';
......
......@@ -24,8 +24,8 @@ create table llx_chargesociales
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
date_ech datetime NOT NULL, -- date d'echeance
libelle varchar(80),
fk_type integer,
libelle varchar(80) NOT NULL,
fk_type integer NOT NULL,
amount real default 0 NOT NULL,
paye smallint default 0 NOT NULL,
periode date
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment