New: Can edit sending methods
This commit is contained in:
parent
5c75347faa
commit
7855cf7086
@ -104,7 +104,7 @@ insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) v
|
|||||||
|
|
||||||
alter table llx_product_stock add column pmp double(24,8) default 0 NOT NULL;
|
alter table llx_product_stock add column pmp double(24,8) default 0 NOT NULL;
|
||||||
|
|
||||||
alter table llx_expedition_methode change statut active tinyint DEFAULT 1;
|
alter table llx_expedition_methode change statut active;
|
||||||
|
|
||||||
INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (1,'CATCH','Catch','Catch by client',1);
|
INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (1,'CATCH','Catch','Catch by client',1);
|
||||||
INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (2,'TRANS','Transporter','Generic transporter',1);
|
INSERT INTO llx_expedition_methode (rowid,code,libelle,description,active) VALUES (2,'TRANS','Transporter','Generic transporter',1);
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
-- when current version is 2.4.0 or higher.
|
-- when current version is 2.4.0 or higher.
|
||||||
--
|
--
|
||||||
|
|
||||||
alter table llx_expedition_methode change statut active;
|
alter table llx_expedition_methode change statut active tinyint DEFAULT 1;
|
||||||
|
|
||||||
update llx_actioncomm set datep = datea where datep is null;
|
update llx_actioncomm set datep = datea where datep is null;
|
||||||
|
|
||||||
|
|||||||
@ -25,5 +25,5 @@ create table llx_expedition_methode
|
|||||||
code varchar(30) NOT NULL,
|
code varchar(30) NOT NULL,
|
||||||
libelle varchar(50) NOT NULL,
|
libelle varchar(50) NOT NULL,
|
||||||
description text,
|
description text,
|
||||||
statut tinyint DEFAULT 0
|
active tinyint DEFAULT 0
|
||||||
)type=innodb;
|
)type=innodb;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user