NEW Accountancy - Differentiated export

This commit is contained in:
Alexandre SPANGARO
2019-05-14 05:45:36 +02:00
parent d4e2fab983
commit 7c9ccee64d
5 changed files with 80 additions and 17 deletions

View File

@@ -366,4 +366,6 @@ ALTER TABLE llx_reception_extrafields ADD INDEX idx_reception_extrafields (fk_ob
ALTER TABLE llx_commande_fournisseur_dispatch ADD COLUMN fk_projet integer DEFAULT NULL;
ALTER TABLE llx_commande_fournisseur_dispatch ADD COLUMN fk_reception integer DEFAULT NULL;
ALTER TABLE llx_accounting_bookkeeping ADD COLUMN date_export datetime DEFAULT NULL after date_validated;

View File

@@ -1,6 +1,6 @@
-- ============================================================================
-- Copyright (C) 2013-2014 Olivier Geffroy <jeff@jeffinfo.com>
-- Copyright (C) 2013-2017 Alexandre Spangaro <aspangaro@open-dsi.fr>
-- Copyright (C) 2013-2019 Alexandre Spangaro <aspangaro@open-dsi.fr>
--
-- 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
@@ -51,6 +51,7 @@ CREATE TABLE llx_accounting_bookkeeping
piece_num integer NOT NULL, -- FEC:EcritureNum | accounting source document
validated tinyint DEFAULT 0 NOT NULL, -- | 0 line not validated / 1 line validated (No deleting / No modification)
date_validated datetime, -- FEC:ValidDate
import_key varchar(14),
date_export datetime DEFAULT NULL, --
import_key varchar(14), --
extraparams varchar(255) -- for other parameters with json format
) ENGINE=innodb;