2
0
forked from Wavyzz/dolibarr

Add total field into contract

This commit is contained in:
Laurent Destailleur
2024-06-24 11:18:52 +02:00
parent cd6c11220d
commit c8eee02b66
3 changed files with 31 additions and 16 deletions

View File

@@ -40,6 +40,13 @@ create table llx_contrat
fk_user_modif integer,
fk_user_cloture integer,
total_tva double(24,8) DEFAULT 0, -- total tax
localtax1 double(24,8) DEFAULT 0, -- total local tax 2
localtax2 double(24,8) DEFAULT 0, -- total local tax 3
revenuestamp double(24,8) DEFAULT 0, -- amount total revenuestamp (usefull for proforma that must match invoice)
total_ht double(24,8) DEFAULT 0, -- total without tax
total_ttc double(24,8) DEFAULT 0, -- total with tax
signed_status smallint DEFAULT NULL, -- signed status NULL, 0 or 1
online_sign_ip varchar(48),
online_sign_name varchar(64),