Ajout table llx_product_price

This commit is contained in:
Rodolphe Quiedeville 2003-09-09 17:17:24 +00:00
parent 74b2d8f88d
commit ad58f68b5b

View File

@ -4,4 +4,17 @@
--
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
);