forked from Wavyzz/dolibarr
Add weight and size in sendings
This commit is contained in:
@@ -53,3 +53,9 @@ update llx_c_prospectlevel set code='PL_NONE', label='None' where code='PL_UNKOW
|
||||
|
||||
update llx_societe set fk_prospectlevel=null where fk_prospectlevel='PL_UNKOWN';
|
||||
|
||||
alter table llx_expedition add height integer;
|
||||
alter table llx_expedition add width integer;
|
||||
alter table llx_expedition add size_units integer;
|
||||
alter table llx_expedition add size integer;
|
||||
alter table llx_expedition add weight_units integer;
|
||||
alter table llx_expedition add weight integer;
|
||||
|
||||
@@ -34,6 +34,12 @@ create table llx_expedition
|
||||
fk_expedition_methode integer,
|
||||
tracking_number varchar(50),
|
||||
fk_statut smallint DEFAULT 0,
|
||||
height integer,
|
||||
width integer,
|
||||
size_units integer,
|
||||
size integer,
|
||||
weight_units integer,
|
||||
weight integer,
|
||||
note text,
|
||||
model_pdf varchar(50)
|
||||
)type=innodb;
|
||||
|
||||
Reference in New Issue
Block a user