2
0
forked from Wavyzz/dolibarr

Add weight and size in sendings

This commit is contained in:
Laurent Destailleur
2008-10-28 21:39:47 +00:00
parent e3ea7caf7d
commit 156cf92cbb
9 changed files with 142 additions and 42 deletions

View File

@@ -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;

View File

@@ -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;