New: Can use decimal values in stock
This commit is contained in:
parent
13e895a59c
commit
f93474f152
@ -41,6 +41,7 @@ For users:
|
||||
- New: Can modify proposal date if status is draft.
|
||||
- New: The help link on some pages now links directly to the wiki web page.
|
||||
- New: Enhancements in barcode module.
|
||||
- New: Can use decimal values in stocks.
|
||||
- Fix: Partial payment on social contributions not shown on main page.
|
||||
- Fix: Handle correctly the comment in status changing of supplier orders.
|
||||
- Fix: Author, title and topic are correctly encoded in PDF.
|
||||
|
||||
@ -38,6 +38,8 @@ insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) v
|
||||
alter table llx_product_stock add column pmp double(24,8) default 0 NOT NULL;
|
||||
alter table llx_product add column pmp double(24,8) default 0 NOT NULL;
|
||||
|
||||
alter table llx_product_stock modify column reel real;
|
||||
|
||||
ALTER TABLE llx_bank ADD INDEX idx_bank_datev(datev);
|
||||
ALTER TABLE llx_bank ADD INDEX idx_bank_dateo(dateo);
|
||||
ALTER TABLE llx_bank ADD INDEX idx_bank_fk_account(fk_account);
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
-- ============================================================================
|
||||
-- Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
-- Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
--
|
||||
-- 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
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
-- ============================================================================
|
||||
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
-- Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
--
|
||||
-- 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
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
-- ============================================================================
|
||||
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
-- Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
--
|
||||
-- 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
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
-- ============================================================================
|
||||
-- Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
-- Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
--
|
||||
-- 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
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
-- ============================================================================
|
||||
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
-- Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
--
|
||||
-- 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
|
||||
@ -24,7 +25,7 @@ create table llx_product_stock
|
||||
tms timestamp,
|
||||
fk_product integer NOT NULL,
|
||||
fk_entrepot integer NOT NULL,
|
||||
reel integer, -- physical stock
|
||||
pmp double(24,8) default 0 NOT NULL -- PMP value for product in this warehous
|
||||
reel real, -- physical stock
|
||||
pmp double(24,8) default 0 NOT NULL -- PMP value for product in this warehous
|
||||
)type=innodb;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user