Skip to content

Commit

Permalink
Close #24842
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jul 6, 2024
1 parent cfd520e commit 04a1b6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions htdocs/install/mysql/migration/20.0.0-21.0.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,5 @@ ALTER TABLE llx_contrat ADD COLUMN total_ht double(24,8) DEFAULT 0;
ALTER TABLE llx_contrat ADD COLUMN total_ttc double(24,8) DEFAULT 0;

ALTER TABLE llx_expedition_package MODIFY COLUMN dangerous_goods varchar(60) DEFAULT '0';

ALTER TABLE llx_propal ADD COLUMN model_pdf_pos_sign VARCHAR(32) DEFAULT NULL AFTER model_pdf;
5 changes: 3 additions & 2 deletions htdocs/install/mysql/tables/llx_propal.sql
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@ create table llx_propal
note_private text,
note_public text,

model_pdf varchar(255), -- last template used to generate main document
last_main_doc varchar(255), -- relative filepath+filename of last main generated document
model_pdf varchar(255), -- last template used to generate main document (exemple: azur, generic_invoice_odt:/pathto/template_invoice.odt)
model_pdf_pos_sign varchar(32), -- last position used to include the signature (example: posX:posY:Height:Width)
last_main_doc varchar(255), -- relative filepath+filename of the last main generated document

date_livraison date DEFAULT NULL, -- delivery date
fk_shipping_method integer, -- shipping method id
Expand Down

0 comments on commit 04a1b6b

Please sign in to comment.