Merge pull request #18246 from FHenry/fix_ref_fourn_size
new: ref fourn and ref customer same size as ref product
This commit is contained in:
commit
212f157c0f
@ -33,7 +33,9 @@
|
||||
-- Missing in v14 or lower
|
||||
|
||||
|
||||
|
||||
|
||||
-- v15
|
||||
|
||||
ALTER TABLE llx_product_fournisseur_price MODIFY COLUMN ref_fourn varchar(128);
|
||||
ALTER TABLE llx_product_customer_price MODIFY COLUMN ref_customer varchar(128);
|
||||
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ create table llx_product_customer_price
|
||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
fk_product integer NOT NULL,
|
||||
fk_soc integer NOT NULL,
|
||||
ref_customer varchar(30),
|
||||
ref_customer varchar(128),
|
||||
price double(24,8) DEFAULT 0,
|
||||
price_ttc double(24,8) DEFAULT 0,
|
||||
price_min double(24,8) DEFAULT 0,
|
||||
|
||||
@ -27,7 +27,7 @@ create table llx_product_fournisseur_price
|
||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
fk_product integer,
|
||||
fk_soc integer,
|
||||
ref_fourn varchar(30),
|
||||
ref_fourn varchar(128),
|
||||
desc_fourn text,
|
||||
fk_availability integer,
|
||||
price double(24,8) DEFAULT 0, -- price without tax for quantity
|
||||
|
||||
Loading…
Reference in New Issue
Block a user