dolibarr 21.0.0-alpha
modExpenseReport.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2011 Dimitri Mouillard <dmouillard@teclib.com>
3 * Copyright (C) 2015 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2023 Alexandre Spangaro <aspangaro@easya.solutions>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
29include_once DOL_DOCUMENT_ROOT."/core/modules/DolibarrModules.class.php";
30
31
36{
42 public function __construct($db)
43 {
44 global $conf, $user; // Required by some include code
45
46 $this->db = $db;
47 $this->numero = 770;
48
49 $this->family = "hr";
50 $this->module_position = '42';
51 // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
52 $this->name = preg_replace('/^mod/i', '', get_class($this));
53 // Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
54 $this->description = "Manage and claim expense reports (transportation, meal, ...)";
55 $this->version = 'dolibarr';
56 $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
57 $this->picto = 'trip';
58
59 // Data directories to create when module is enabled.
60 $this->dirs = array("/expensereport/temp");
61 $r = 0;
62
63 // Config pages. Put here list of php page names stored in admmin directory used to setup module.
64 $this->config_page_url = array('expensereport.php');
65
66 // Dependencies
67 $this->hidden = false; // A condition to hide module
68 $this->depends = array(); // List of module class names as string that must be enabled if this module is enabled
69 // $this->conflictwith = array("modDeplacement"); // Deactivate for access on old information
70 $this->requiredby = array(); // List of modules id to disable if this one is disabled
71 $this->phpmin = array(7, 0); // Minimum version of PHP required by module
72 $this->need_dolibarr_version = array(3, 7); // Minimum version of Dolibarr required by module
73 $this->langfiles = array("companies", "trips");
74
75 // Constants
76 $this->const = array(); // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 0 or 'allentities')
77 $r = 0;
78
79 $this->const[$r][0] = "EXPENSEREPORT_ADDON_PDF";
80 $this->const[$r][1] = "chaine";
81 $this->const[$r][2] = "standard";
82 $this->const[$r][3] = 'Name of manager to build PDF expense reports documents';
83 $this->const[$r][4] = 0;
84 $r++;
85
86 $this->const[$r][0] = "EXPENSEREPORT_ADDON";
87 $this->const[$r][1] = "chaine";
88 $this->const[$r][2] = "mod_expensereport_jade";
89 $this->const[$r][3] = 'Name of manager to generate expense report ref number';
90 $this->const[$r][4] = 0;
91 $r++;
92
93 $this->const[$r][0] = "MAIN_DELAY_EXPENSEREPORTS";
94 $this->const[$r][1] = "chaine";
95 $this->const[$r][2] = "15";
96 $this->const[$r][3] = 'Tolerance delay (in days) before alert for expense reports to approve';
97 $this->const[$r][4] = 0;
98 $r++;
99
100 $this->const[$r][0] = "MAIN_DELAY_EXPENSEREPORTS_TO_PAY";
101 $this->const[$r][1] = "chaine";
102 $this->const[$r][2] = "15";
103 $this->const[$r][3] = 'Tolerance delay (in days) before alert for expense reports to pay';
104 $this->const[$r][4] = 0;
105 $r++;
106
107 // Array to add new pages in new tabs
108 $this->tabs[] = array();
109
110 // Boxes
111 $this->boxes = array(); // List of boxes
112 $r = 0;
113
114 // Permissions
115 $this->rights = array(); // Permission array used by this module
116 $this->rights_class = 'expensereport';
117
118 $this->rights[$r][0] = 771;
119 $this->rights[$r][1] = 'Read expense reports (yours and your subordinates)';
120 $this->rights[$r][2] = 'r';
121 $this->rights[$r][3] = 0;
122 $this->rights[$r][4] = 'lire';
123 $r++;
124
125 $this->rights[$r][0] = 772;
126 $this->rights[$r][1] = 'Create/modify expense reports';
127 $this->rights[$r][2] = 'w';
128 $this->rights[$r][3] = 0;
129 $this->rights[$r][4] = 'creer';
130 $r++;
131
132 $this->rights[$r][0] = 773;
133 $this->rights[$r][1] = 'Delete expense reports';
134 $this->rights[$r][2] = 'd';
135 $this->rights[$r][3] = 0;
136 $this->rights[$r][4] = 'supprimer';
137 $r++;
138
139 $this->rights[$r][0] = 775;
140 $this->rights[$r][1] = 'Approve expense reports';
141 $this->rights[$r][2] = 'w';
142 $this->rights[$r][3] = 0;
143 $this->rights[$r][4] = 'approve';
144 $r++;
145
146 $this->rights[$r][0] = 776;
147 $this->rights[$r][1] = 'Pay expense reports';
148 $this->rights[$r][2] = 'w';
149 $this->rights[$r][3] = 0;
150 $this->rights[$r][4] = 'to_paid';
151 $r++;
152
153 $this->rights[$r][0] = 777;
154 $this->rights[$r][1] = 'Read expense reports of everybody';
155 $this->rights[$r][2] = 'r';
156 $this->rights[$r][3] = 0;
157 $this->rights[$r][4] = 'readall';
158 $r++;
159
160 $this->rights[$r][0] = 778;
161 $this->rights[$r][1] = 'Create expense reports for everybody';
162 $this->rights[$r][2] = 'w';
163 $this->rights[$r][3] = 0;
164 $this->rights[$r][4] = 'writeall_advance';
165 $r++;
166
167 $this->rights[$r][0] = 779;
168 $this->rights[$r][1] = 'Export expense reports';
169 $this->rights[$r][2] = 'r';
170 $this->rights[$r][3] = 0;
171 $this->rights[$r][4] = 'export';
172 $r++;
173
174 // Menus
175 //-------
176 $this->menu = 1; // This module add menu entries. They are coded into menu manager.
177
178 // Exports
179 $r = 0;
180
181 $r++;
182 $this->export_code[$r] = 'expensereport_'.$r;
183 $this->export_label[$r] = 'ListTripsAndExpenses';
184 $this->export_icon[$r] = 'trip';
185 $this->export_permission[$r] = array(array("expensereport", "export"));
186 $this->export_fields_array[$r] = array(
187 'd.rowid' => "TripId", 'd.ref' => 'Ref', 'd.date_debut' => 'DateStart', 'd.date_fin' => 'DateEnd', 'd.date_create' => 'DateCreation', 'd.date_approve' => 'DateApprove',
188 'd.total_ht' => "TotalHT", 'd.total_tva' => 'TotalVAT', 'd.total_ttc' => 'TotalTTC',
189 'd.fk_statut' => 'Status', 'd.paid' => 'Paid',
190 'd.note_private' => 'NotePrivate', 'd.note_public' => 'NotePublic', 'd.detail_cancel' => 'MOTIF_CANCEL', 'd.detail_refuse' => 'MOTIF_REFUS',
191 'ed.rowid' => 'LineId', 'tf.code' => 'Type', 'ed.date' => 'Date', 'ed.tva_tx' => 'VATRate',
192 'ed.qty' => "Quantity", 'ed.value_unit' => "UnitPriceHT",
193 'ed.total_ht' => 'TotalHT', 'ed.total_tva' => 'TotalVAT', 'ed.total_ttc' => 'TotalTTC', 'ed.comments' => 'Comment', 'p.rowid' => 'ProjectId', 'p.ref' => 'Ref',
194 'u.lastname' => 'Lastname', 'u.firstname' => 'Firstname', 'u.login' => "Login",
195 'user_rib.iban_prefix' => 'IBAN', 'user_rib.bic' => 'BIC', 'user_rib.code_banque' => 'BankCode', 'user_rib.bank' => 'BankName', 'user_rib.proprio' => 'BankAccountOwner',
196 'user_rib.owner_address' => 'BankAccountOwnerAddress'
197 );
198 $this->export_TypeFields_array[$r] = array(
199 'd.rowid' => 'Numeric', 'd.ref' => 'Text', 'd.date_debut' => 'Date', 'd.date_fin' => 'Date', 'd.date_create' => 'Date', 'd.date_approve' => 'Date',
200 'd.total_ht' => "Numeric", 'd.total_tva' => 'Numeric', 'd.total_ttc' => 'Numeric',
201 'd.fk_statut' => "Numeric", 'd.paid' => 'Numeric',
202 'd.note_private' => 'Text', 'd.note_public' => 'Text', 'd.detail_cancel' => 'Text', 'd.detail_refuse' => 'Text',
203 'ed.rowid' => 'Numeric', 'tf.code' => 'Code', 'ed.date' => 'Date', 'ed.tva_tx' => 'Numeric',
204 'ed.qty' => 'Numeric', 'ed.value_unit' => 'Numeric',
205 'ed.total_ht' => 'Numeric', 'ed.total_tva' => 'Numeric', 'ed.total_ttc' => 'Numeric', 'ed.comments' => 'Text', 'p.rowid' => 'Numeric', 'p.ref' => 'Text',
206 'u.lastname' => 'Text', 'u.firstname' => 'Text', 'u.login' => "Text",
207 'user_rib.iban_prefix' => 'Text', 'user_rib.bic' => 'Text', 'user_rib.code_banque' => 'Text', 'user_rib.bank' => 'Text', 'user_rib.proprio' => 'Text',
208 'user_rib.owner_address' => 'Text'
209 );
210 $this->export_entities_array[$r] = array(
211 'ed.rowid' => 'expensereport_line', 'ed.date' => 'expensereport_line',
212 'ed.qty' => 'expensereport_line', 'ed.value_unit' => 'expensereport_line',
213 'ed.tva_tx' => 'expensereport_line', 'ed.total_ht' => 'expensereport_line', 'ed.total_tva' => 'expensereport_line', 'ed.total_ttc' => 'expensereport_line',
214 'ed.comments' => 'expensereport_line', 'tf.code' => 'expensereport_line', 'p.project_ref' => 'expensereport_line', 'p.rowid' => 'project', 'p.ref' => 'project',
215 'u.lastname' => 'user', 'u.firstname' => 'user', 'u.login' => 'user',
216 'user_rib.iban_prefix' => 'user', 'user_rib.bic' => 'user', 'user_rib.code_banque' => 'user', 'user_rib.bank' => 'user', 'user_rib.proprio' => 'user',
217 'user_rib.owner_address' => 'user'
218
219 );
220 //$this->export_alias_array[$r] = array('d.rowid'=>"idtrip", 'd.type'=>"type", 'd.note_private'=>'note_private', 'd.note_public'=>'note_public', 'u.lastname'=>'name', 'u.firstname'=>'firstname', 'u.login'=>'login');
221 $this->export_dependencies_array[$r] = array('expensereport_line' => 'ed.rowid', 'type_fees' => 'tf.rowid'); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
222
223 $keyforselect = 'expensereport';
224 $keyforelement = 'expensereport';
225 $keyforaliasextra = 'extra';
226 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
227 $keyforselect = 'user';
228 $keyforelement = 'user';
229 $keyforaliasextra = 'extrau';
230 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
231
232 $this->export_sql_start[$r] = 'SELECT DISTINCT ';
233 $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'expensereport as d';
234 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'expensereport_extrafields as extra on d.rowid = extra.fk_object';
235 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user_rib as user_rib ON user_rib.fk_user = d.fk_user_author,';
236 $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'user as u';
237 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user_extrafields as extrau ON u.rowid = extrau.fk_object,';
238 $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'expensereport_det as ed LEFT JOIN '.MAIN_DB_PREFIX.'c_type_fees as tf ON ed.fk_c_type_fees = tf.id';
239 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'projet as p ON ed.fk_projet = p.rowid';
240 $this->export_sql_end[$r] .= ' WHERE ed.fk_expensereport = d.rowid AND d.fk_user_author = u.rowid';
241 $this->export_sql_end[$r] .= ' AND d.entity IN ('.getEntity('expensereport').')';
242 }
243
252 public function init($options = '')
253 {
254 global $conf;
255
256 $result = $this->_load_tables('/install/mysql/', 'expensereport');
257 if ($result < 0) {
258 return -1; // Do not activate module if error 'not allowed' returned when loading module SQL queries (the _load_table run sql with run_sql with the error allowed parameter set to 'default')
259 }
260
261 // Remove permissions and default values
262 $this->remove($options);
263
264 $sql = array(
265 "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = 'standard_expensereport' AND type='expensereport' AND entity = ".((int) $conf->entity),
266 "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('standard_expensereport','expensereport',".((int) $conf->entity).")"
267 );
268
269 return $this->_init($sql, $options);
270 }
271}
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_load_tables($reldir, $onlywithsuffix='')
Create tables and keys required by module:
Description and activation class for module ExpenseReport.
__construct($db)
Constructor.
init($options='')
Function called when module is enabled.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:142