Fix: Champs obligatoires
This commit is contained in:
parent
390e66d6b9
commit
0f69c33a52
@ -1,3 +1,3 @@
|
|||||||
#Sun Nov 25 21:04:17 GMT 2007
|
#Tue Nov 27 03:47:02 GMT 2007
|
||||||
eclipse.preferences.version=1
|
eclipse.preferences.version=1
|
||||||
encoding/<project>=ISO-8859-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='TAXAPP' where id = 10;
|
||||||
update llx_c_chargesociales set actioncompta='TAXPRO' where id = 11;
|
update llx_c_chargesociales set actioncompta='TAXPRO' where id = 11;
|
||||||
update llx_c_chargesociales set actioncompta='TAXFON' where id = 20;
|
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');
|
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='Créer/modifier/supprimer écriture bancaire' where perms='modifier' AND module='banque';
|
update llx_rights_def set libelle='Créer/modifier/supprimer écriture bancaire' where perms='modifier' AND module='banque';
|
||||||
|
|||||||
@ -24,8 +24,8 @@ create table llx_chargesociales
|
|||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
date_ech datetime NOT NULL, -- date d'echeance
|
date_ech datetime NOT NULL, -- date d'echeance
|
||||||
libelle varchar(80),
|
libelle varchar(80) NOT NULL,
|
||||||
fk_type integer,
|
fk_type integer NOT NULL,
|
||||||
amount real default 0 NOT NULL,
|
amount real default 0 NOT NULL,
|
||||||
paye smallint default 0 NOT NULL,
|
paye smallint default 0 NOT NULL,
|
||||||
periode date
|
periode date
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user