Skip to content
Snippets Groups Projects
Commit 4aef2412 authored by Yannick Warnier's avatar Yannick Warnier
Browse files

Added llx_facturedet.special_code (for shipping and ecotax)

parent 403b3b74
No related branches found
No related tags found
No related merge requests found
......@@ -823,3 +823,4 @@ alter table llx_boxes modify box_order varchar(3) NOT NULL;
alter table llx_bordereau_cheque modify number integer;
ALTER TABLE llx_facturedet ADD COLUM special_code tinyint unsigned default 0;
\ No newline at end of file
......@@ -41,5 +41,6 @@ create table llx_facturedet
info_bits integer DEFAULT 0, -- TVA NPR ou non
fk_code_ventilation integer DEFAULT 0 NOT NULL,
fk_export_compta integer DEFAULT 0 NOT NULL,
rang integer DEFAULT 0
rang integer DEFAULT 0, -- ordre d'affichage
special_code tinyint UNSIGNED DEFAULT 0, -- code pour les lignes speciales (livraison=1, ecotaxe=2)
)type=innodb;
......@@ -45,5 +45,6 @@ create table llx_facturedet
"info_bits" integer DEFAULT 0, -- TVA NPR ou non
"fk_code_ventilation" integer DEFAULT 0 NOT NULL,
"fk_export_compta" integer DEFAULT 0 NOT NULL,
"rang" integer DEFAULT 0
"rang" integer DEFAULT 0, -- ordre d'affichage
"special_code" smallint unsiDEFAULT 0, -- code pour les lignes speciales (livraison=1, ecotaxe=2)
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment