mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-10 03:28:18 +01:00
19 lines
414 B
SQL
19 lines
414 B
SQL
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Structure de la table `llx_tmp_caisse`
|
|
--
|
|
|
|
CREATE TABLE llx_tmp_caisse (
|
|
id integer NOT NULL auto_increment,
|
|
fk_article integer NOT NULL,
|
|
qte integer NOT NULL,
|
|
fk_tva integer NOT NULL,
|
|
remise_percent integer NOT NULL,
|
|
remise float NOT NULL,
|
|
total_ht float NOT NULL,
|
|
total_ttc float NOT NULL,
|
|
PRIMARY KEY (id)
|
|
) ENGINE=innodb;
|