forked from Wavyzz/dolibarr
New: Ajout d'un champ note sur les produits non destin etre visible sur les factures ou propales.
This commit is contained in:
@@ -419,6 +419,7 @@ alter table llx_product add stock_commande integer default 0;
|
||||
alter table llx_product add seuil_stock_alerte integer default 0;
|
||||
update llx_product set ref=substr(label,0,15) where ref is null;
|
||||
alter table llx_product modify ref varchar(15) UNIQUE NOT NULL;
|
||||
alter table llx_product add note text after description;
|
||||
|
||||
alter table llx_groupart add description text after groupart ;
|
||||
|
||||
|
||||
@@ -26,10 +26,11 @@ create table llx_product
|
||||
datec datetime,
|
||||
tms timestamp,
|
||||
ref varchar(15) UNIQUE NOT NULL,
|
||||
label varchar(255),
|
||||
description text,
|
||||
label varchar(128),
|
||||
description varchar(255),
|
||||
note text,
|
||||
price double,
|
||||
tva_tx double DEFAULT 19.6,
|
||||
tva_tx double,
|
||||
fk_user_author integer,
|
||||
envente tinyint DEFAULT 1,
|
||||
nbvente integer DEFAULT 0,
|
||||
|
||||
Reference in New Issue
Block a user