Ajout table llx_product_price
This commit is contained in:
parent
74b2d8f88d
commit
ad58f68b5b
@ -5,3 +5,16 @@
|
|||||||
|
|
||||||
alter table llx_propal add remise_percent real default 0;
|
alter table llx_propal add remise_percent real default 0;
|
||||||
alter table llx_facture add remise_percent real default 0;
|
alter table llx_facture add remise_percent real default 0;
|
||||||
|
|
||||||
|
create table llx_product_price
|
||||||
|
(
|
||||||
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
|
tms timestamp,
|
||||||
|
fk_product integer NOT NULL,
|
||||||
|
date_price datetime NOT NULL,
|
||||||
|
price double,
|
||||||
|
tva_tx double default 19.6,
|
||||||
|
fk_user_author integer,
|
||||||
|
envente tinyint default 1
|
||||||
|
);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user