Forgotten files

This commit is contained in:
sparkyx 2022-12-27 15:19:42 +01:00
parent 27de754a8b
commit 0ad83ac24b
2 changed files with 57 additions and 26 deletions

View file

@ -0,0 +1,15 @@
begin;
COMMENT ON COLUMN public.tva_rate.tva_both_side IS 'If set to 1 , the amount VAT will be reversed (autoliquidation)';
COMMENT ON COLUMN public.tva_rate.tva_poste IS 'accounting';
COMMENT ON COLUMN public.tva_rate.tva_comment IS 'Description of VAT';
COMMENT ON COLUMN public.tva_rate.tva_rate IS 'Rate';
COMMENT ON COLUMN public.tva_rate.tva_label IS 'Label';
alter table quant_purchase drop constraint qp_vat_code_fk;
alter table quant_purchase add constraint qp_vat_code_fk foreign key (qp_vat_code) references tva_rate(tva_id) on update cascade ;
alter table quant_sold drop constraint qs_vat_code_fk;
alter table quant_sold add constraint qs_vat_code_fk foreign key (qs_vat_code) references tva_rate(tva_id) on update cascade ;
insert into version (val,v_description) values (183,'Mantis #1327 code for vat');
commit;