modif pour definir dans fiche client si asujjeti ou non a TVA
This commit is contained in:
parent
d1ac3d0850
commit
f4a64c37f4
@ -25,6 +25,7 @@ alter table llx_propal add column note_public text after note;
|
||||
|
||||
ALTER TABLE llx_societe ADD mode_reglement INT( 11 ) DEFAULT NULL ;
|
||||
ALTER TABLE llx_societe ADD cond_reglement INT( 11 ) DEFAULT '1' NOT NULL ;
|
||||
ALTER TABLE llx_societe ADD tva_assuj tinyint DEFAULT '1' NOT NULL ;
|
||||
|
||||
alter table llx_product add gencode varchar(255) DEFAULT NULL;
|
||||
|
||||
@ -49,4 +50,4 @@ create table llx_commande_fournisseur_model_pdf
|
||||
nom varchar(50) PRIMARY KEY,
|
||||
libelle varchar(255),
|
||||
description text
|
||||
)type=innodb;
|
||||
)type=innodb;
|
||||
|
||||
@ -63,6 +63,6 @@ create table llx_societe
|
||||
fk_user_modif integer, -- utilisateur qui a modifié l'info
|
||||
remise_client real DEFAULT 0, -- remise systématique pour le client
|
||||
mode_reglement integer DEFAULT 0, -- mode de réglement
|
||||
cond_reglement integer DEFAULT 1 NOT NULL -- condition de réglement
|
||||
cond_reglement integer DEFAULT 1 NOT NULL, -- condition de réglement
|
||||
tva_assuj tinyint DEFAULT 1 NOT NULL,-- assujéti ou non à la TVA
|
||||
)type=innodb;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user