Ajout support ventilation sur facture fournisseur
This commit is contained in:
parent
7ed3d15bae
commit
564bc8e04f
@ -480,6 +480,9 @@ ALTER TABLE llx_facture_fourn ADD CONSTRAINT fk_facture_fourn_fk_user_author
|
||||
ALTER TABLE llx_facture_fourn ADD CONSTRAINT fk_facture_fourn_fk_user_valid FOREIGN KEY (fk_user_valid) REFERENCES llx_user (rowid);
|
||||
ALTER TABLE llx_facture_fourn ADD CONSTRAINT fk_facture_fourn_fk_projet FOREIGN KEY (fk_projet) REFERENCES llx_projet (rowid);
|
||||
|
||||
ALTER TABLE llx_facture_fourn_det ADD fk_export_compta INT( 11 ) NOT NULL AFTER total_ttc;
|
||||
ALTER TABLE llx_facture_fourn_det ADD fk_code_ventilation INT( 11 ) NOT NULL AFTER fk_export_compta ;
|
||||
|
||||
update llx_facture_fourn set date_lim_reglement = datef where fk_cond_reglement = 1;
|
||||
|
||||
alter table llx_bank_account modify bank varchar(60);
|
||||
@ -1889,4 +1892,4 @@ alter table llx_facture add model varchar(50) after note;
|
||||
|
||||
alter table llx_facturedet modify fk_product integer NULL;
|
||||
alter table llx_contratdet modify fk_product integer NULL;
|
||||
update llx_facturedet set fk_product = null where fk_product=0;
|
||||
update llx_facturedet set fk_product = null where fk_product=0;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user