Suite gestion des arrondis sur les montants.

Fix: Pb du update sur vieilles version mysql
This commit is contained in:
Laurent Destailleur
2007-07-04 22:07:53 +00:00
parent 7ae57dda4e
commit adf61a88c9
9 changed files with 125 additions and 108 deletions

View File

@@ -27,12 +27,12 @@ create table llx_societe_remise_except
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_soc integer NOT NULL, -- client
datec datetime,
amount_ht real NOT NULL,
amount_tva real DEFAULT 0 NOT NULL,
amount_ttc real DEFAULT 0 NOT NULL,
tva_tx real DEFAULT 0 NOT NULL,
fk_user integer NOT NULL,
amount_ht double(16,8) NOT NULL,
amount_tva double(16,8) DEFAULT 0 NOT NULL,
amount_ttc double(16,8) DEFAULT 0 NOT NULL,
tva_tx double(6,3) DEFAULT 0 NOT NULL,
fk_user integer NOT NULL,
fk_facture integer,
fk_facture_source integer,
description varchar(255) NOT NULL
description varchar(255) NOT NULL
)type=innodb;