Fix: Champs obligatoires

This commit is contained in:
Laurent Destailleur 2007-11-27 05:20:53 +00:00
parent 390e66d6b9
commit 0f69c33a52
3 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,3 @@
#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

View File

@ -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='Créer/modifier/supprimer écriture bancaire' where perms='modifier' AND module='banque';

View File

@ -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