Mise à jour des formats
This commit is contained in:
parent
41f3933af5
commit
7347ee0479
@ -29,5 +29,5 @@ create table llx_entrepot
|
|||||||
description text,
|
description text,
|
||||||
fk_user_author integer
|
fk_user_author integer
|
||||||
|
|
||||||
) type=ISAM;
|
);
|
||||||
|
|
||||||
|
|||||||
@ -25,10 +25,12 @@ create table llx_product_stock
|
|||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
tms timestamp,
|
tms timestamp,
|
||||||
fk_product integer NOT NULL,
|
fk_product integer NOT NULL,
|
||||||
fk_stock integer NOT NULL,
|
fk_entrepot integer NOT NULL,
|
||||||
value integer,
|
reel integer, -- stock réel
|
||||||
|
commande integer, -- stock commande
|
||||||
|
proposition integer, -- stock proposition commerciale
|
||||||
|
|
||||||
key(fk_product),
|
key(fk_product),
|
||||||
key(fk_stock)
|
key(fk_entrepot)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -1,33 +0,0 @@
|
|||||||
-- ============================================================================
|
|
||||||
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
||||||
--
|
|
||||||
-- This program is free software; you can redistribute it and/or modify
|
|
||||||
-- it under the terms of the GNU General Public License as published by
|
|
||||||
-- the Free Software Foundation; either version 2 of the License, or
|
|
||||||
-- (at your option) any later version.
|
|
||||||
--
|
|
||||||
-- This program is distributed in the hope that it will be useful,
|
|
||||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
-- GNU General Public License for more details.
|
|
||||||
--
|
|
||||||
-- You should have received a copy of the GNU General Public License
|
|
||||||
-- along with this program; if not, write to the Free Software
|
|
||||||
-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
--
|
|
||||||
-- $Id$
|
|
||||||
-- $Source$
|
|
||||||
--
|
|
||||||
-- ============================================================================
|
|
||||||
|
|
||||||
create table llx_entrepot
|
|
||||||
(
|
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
|
||||||
datec datetime,
|
|
||||||
tms timestamp,
|
|
||||||
label varchar(255),
|
|
||||||
description text,
|
|
||||||
fk_user_author integer
|
|
||||||
|
|
||||||
) type=INNODB;
|
|
||||||
|
|
||||||
@ -26,12 +26,12 @@ create table llx_stock_mouvement
|
|||||||
tms timestamp,
|
tms timestamp,
|
||||||
datem datetime,
|
datem datetime,
|
||||||
fk_product integer NOT NULL,
|
fk_product integer NOT NULL,
|
||||||
fk_stock integer NOT NULL,
|
fk_entrepot integer NOT NULL,
|
||||||
value integer,
|
value integer,
|
||||||
type_mouvement smallint,
|
type_mouvement smallint,
|
||||||
fk_user_author integer,
|
fk_user_author integer,
|
||||||
|
|
||||||
key(fk_product),
|
key(fk_product),
|
||||||
key(fk_stock)
|
key(fk_entrepot)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user