forked from Wavyzz/dolibarr
58 lines
2.3 KiB
SQL
Executable File
58 lines
2.3 KiB
SQL
Executable File
-- ============================================================================
|
|
-- Copyright (C) 2015 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
|
|
-- the Free Software Foundation; either version 3 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, see <http://www.gnu.org/licenses/>.
|
|
--
|
|
-- ============================================================================
|
|
|
|
CREATE TABLE llx_expensereport (
|
|
rowid integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
ref varchar(50) NOT NULL,
|
|
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
|
ref_number_int integer DEFAULT NULL,
|
|
ref_ext integer,
|
|
total_ht double(24,8) DEFAULT 0,
|
|
total_tva double(24,8) DEFAULT 0,
|
|
localtax1 double(24,8) DEFAULT 0, -- amount total localtax1
|
|
localtax2 double(24,8) DEFAULT 0, -- amount total localtax2
|
|
total_ttc double(24,8) DEFAULT 0,
|
|
date_debut date NOT NULL,
|
|
date_fin date NOT NULL,
|
|
date_create datetime NOT NULL,
|
|
date_valid datetime,
|
|
date_approve datetime,
|
|
date_refuse datetime,
|
|
date_cancel datetime,
|
|
date_paiement datetime,
|
|
tms timestamp,
|
|
fk_user_author integer NOT NULL,
|
|
fk_user_modif integer DEFAULT NULL,
|
|
fk_user_valid integer DEFAULT NULL,
|
|
fk_user_validator integer DEFAULT NULL,
|
|
fk_user_approve integer DEFAULT NULL,
|
|
fk_user_refuse integer DEFAULT NULL,
|
|
fk_user_cancel integer DEFAULT NULL,
|
|
fk_user_paid integer DEFAULT NULL,
|
|
fk_statut integer NOT NULL, -- 1=brouillon, 2=validé (attente approb), 4=annulé, 5=approuvé, 6=payed, 99=refusé
|
|
fk_c_paiement integer DEFAULT NULL,
|
|
note_public text,
|
|
note_private text,
|
|
detail_refuse varchar(255) DEFAULT NULL,
|
|
detail_cancel varchar(255) DEFAULT NULL,
|
|
integration_compta integer DEFAULT NULL, -- not used
|
|
fk_bank_account integer DEFAULT NULL,
|
|
model_pdf varchar(50) DEFAULT NULL
|
|
) ENGINE=innodb;
|
|
|