modExpenseReport.class.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <?php
  2. /* Copyright (C) 2011 Dimitri Mouillard <dmouillard@teclib.com>
  3. * Copyright (C) 2015 Laurent Destailleur <eldy@users.sourceforge.net>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. /**
  19. * \defgroup expensereport Module expensereport
  20. * \brief Module to manage expense report. Replace old module Deplacement.
  21. * \file htdocs/core/modules/modExpenseReport.class.php
  22. * \ingroup expensereport
  23. * \brief Description and activation file for the module ExpenseReport
  24. */
  25. include_once DOL_DOCUMENT_ROOT."/core/modules/DolibarrModules.class.php";
  26. /**
  27. * Description and activation class for module ExpenseReport
  28. */
  29. class modExpenseReport extends DolibarrModules
  30. {
  31. /**
  32. * Constructor. Define names, constants, directories, boxes, permissions
  33. *
  34. * @param DoliDb $db Database handler
  35. */
  36. public function __construct($db)
  37. {
  38. global $conf, $user; // Required by some include code
  39. $this->db = $db;
  40. $this->numero = 770;
  41. $this->family = "hr";
  42. $this->module_position = '42';
  43. // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
  44. $this->name = preg_replace('/^mod/i', '', get_class($this));
  45. // Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
  46. $this->description = "Manage and claim expense reports (transportation, meal, ...)";
  47. $this->version = 'dolibarr';
  48. $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
  49. $this->picto = 'trip';
  50. // Data directories to create when module is enabled.
  51. $this->dirs = array("/expensereport/temp");
  52. $r = 0;
  53. // Config pages. Put here list of php page names stored in admmin directory used to setup module.
  54. $this->config_page_url = array('expensereport.php');
  55. // Dependencies
  56. $this->hidden = false; // A condition to hide module
  57. $this->depends = array(); // List of module class names as string that must be enabled if this module is enabled
  58. // $this->conflictwith = array("modDeplacement"); // Deactivate for access on old information
  59. $this->requiredby = array(); // List of modules id to disable if this one is disabled
  60. $this->phpmin = array(5, 6); // Minimum version of PHP required by module
  61. $this->need_dolibarr_version = array(3, 7); // Minimum version of Dolibarr required by module
  62. $this->langfiles = array("companies", "trips");
  63. // Constants
  64. $this->const = array(); // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 0 or 'allentities')
  65. $r = 0;
  66. $this->const[$r][0] = "EXPENSEREPORT_ADDON_PDF";
  67. $this->const[$r][1] = "chaine";
  68. $this->const[$r][2] = "standard";
  69. $this->const[$r][3] = 'Name of manager to build PDF expense reports documents';
  70. $this->const[$r][4] = 0;
  71. $r++;
  72. $this->const[$r][0] = "EXPENSEREPORT_ADDON";
  73. $this->const[$r][1] = "chaine";
  74. $this->const[$r][2] = "mod_expensereport_jade";
  75. $this->const[$r][3] = 'Name of manager to generate expense report ref number';
  76. $this->const[$r][4] = 0;
  77. $r++;
  78. $this->const[$r][0] = "MAIN_DELAY_EXPENSEREPORTS";
  79. $this->const[$r][1] = "chaine";
  80. $this->const[$r][2] = "15";
  81. $this->const[$r][3] = 'Tolerance delay (in days) before alert for expense reports to approve';
  82. $this->const[$r][4] = 0;
  83. $r++;
  84. $this->const[$r][0] = "MAIN_DELAY_EXPENSEREPORTS_TO_PAY";
  85. $this->const[$r][1] = "chaine";
  86. $this->const[$r][2] = "15";
  87. $this->const[$r][3] = 'Tolerance delay (in days) before alert for expense reports to pay';
  88. $this->const[$r][4] = 0;
  89. $r++;
  90. // Array to add new pages in new tabs
  91. $this->tabs[] = array();
  92. // Boxes
  93. $this->boxes = array(); // List of boxes
  94. $r = 0;
  95. // Permissions
  96. $this->rights = array(); // Permission array used by this module
  97. $this->rights_class = 'expensereport';
  98. $this->rights[$r][0] = 771;
  99. $this->rights[$r][1] = 'Read expense reports (yours and your subordinates)';
  100. $this->rights[$r][2] = 'r';
  101. $this->rights[$r][3] = 0;
  102. $this->rights[$r][4] = 'lire';
  103. $r++;
  104. $this->rights[$r][0] = 772;
  105. $this->rights[$r][1] = 'Create/modify expense reports';
  106. $this->rights[$r][2] = 'w';
  107. $this->rights[$r][3] = 0;
  108. $this->rights[$r][4] = 'creer';
  109. $r++;
  110. $this->rights[$r][0] = 773;
  111. $this->rights[$r][1] = 'Delete expense reports';
  112. $this->rights[$r][2] = 'd';
  113. $this->rights[$r][3] = 0;
  114. $this->rights[$r][4] = 'supprimer';
  115. $r++;
  116. $this->rights[$r][0] = 775;
  117. $this->rights[$r][1] = 'Approve expense reports';
  118. $this->rights[$r][2] = 'w';
  119. $this->rights[$r][3] = 0;
  120. $this->rights[$r][4] = 'approve';
  121. $r++;
  122. $this->rights[$r][0] = 776;
  123. $this->rights[$r][1] = 'Pay expense reports';
  124. $this->rights[$r][2] = 'w';
  125. $this->rights[$r][3] = 0;
  126. $this->rights[$r][4] = 'to_paid';
  127. $r++;
  128. $this->rights[$r][0] = 777;
  129. $this->rights[$r][1] = 'Read expense reports of everybody';
  130. $this->rights[$r][2] = 'r';
  131. $this->rights[$r][3] = 0;
  132. $this->rights[$r][4] = 'readall';
  133. $r++;
  134. $this->rights[$r][0] = 778;
  135. $this->rights[$r][1] = 'Create expense reports for everybody';
  136. $this->rights[$r][2] = 'w';
  137. $this->rights[$r][3] = 0;
  138. $this->rights[$r][4] = 'writeall_advance';
  139. $r++;
  140. $this->rights[$r][0] = 779;
  141. $this->rights[$r][1] = 'Export expense reports';
  142. $this->rights[$r][2] = 'r';
  143. $this->rights[$r][3] = 0;
  144. $this->rights[$r][4] = 'export';
  145. $r++;
  146. // Menus
  147. //-------
  148. $this->menu = 1; // This module add menu entries. They are coded into menu manager.
  149. // Exports
  150. $r = 0;
  151. $r++;
  152. $this->export_code[$r] = 'expensereport_'.$r;
  153. $this->export_label[$r] = 'ListTripsAndExpenses';
  154. $this->export_icon[$r] = 'trip';
  155. $this->export_permission[$r] = array(array("expensereport", "export"));
  156. $this->export_fields_array[$r] = array(
  157. 'd.rowid'=>"TripId", 'd.ref'=>'Ref', 'd.date_debut'=>'DateStart', 'd.date_fin'=>'DateEnd', 'd.date_create'=>'DateCreation', 'd.date_approve'=>'DateApprove',
  158. 'd.total_ht'=>"TotalHT", 'd.total_tva'=>'TotalVAT', 'd.total_ttc'=>'TotalTTC',
  159. 'd.fk_statut'=>'Status', 'd.paid'=>'Paid',
  160. 'd.note_private'=>'NotePrivate', 'd.note_public'=>'NotePublic', 'd.detail_cancel'=>'MOTIF_CANCEL', 'd.detail_refuse'=>'MOTIF_REFUS',
  161. 'ed.rowid'=>'LineId', 'tf.code'=>'Type', 'ed.date'=>'Date', 'ed.tva_tx'=>'VATRate',
  162. 'ed.total_ht'=>'TotalHT', 'ed.total_tva'=>'TotalVAT', 'ed.total_ttc'=>'TotalTTC', 'ed.comments'=>'Comment', 'p.rowid'=>'ProjectId', 'p.ref'=>'Ref',
  163. 'u.lastname'=>'Lastname', 'u.firstname'=>'Firstname', 'u.login'=>"Login",
  164. 'user_rib.iban_prefix' => 'IBAN', 'user_rib.bic' => 'BIC', 'user_rib.code_banque' => 'BankCode', 'user_rib.bank' => 'BankName', 'user_rib.proprio' => 'BankAccountOwner',
  165. 'user_rib.owner_address' => 'BankAccountOwnerAddress'
  166. );
  167. $this->export_TypeFields_array[$r] = array(
  168. 'd.rowid'=>"Numeric", 'd.ref'=>'Text', 'd.date_debut'=>'Date', 'd.date_fin'=>'Date', 'd.date_create'=>'Date', 'd.date_approve'=>'Date',
  169. 'd.total_ht'=>"Numeric", 'd.total_tva'=>'Numeric', 'd.total_ttc'=>'Numeric',
  170. 'd.fk_statut'=>"Numeric", 'd.paid'=>'Numeric',
  171. 'd.note_private'=>'Text', 'd.note_public'=>'Text', 'd.detail_cancel'=>'Text', 'd.detail_refuse'=>'Text',
  172. 'ed.rowid'=>'Numeric', 'tf.code'=>'Code', 'ed.date'=>'Date', 'ed.tva_tx'=>'Numeric',
  173. 'ed.total_ht'=>'Numeric', 'ed.total_tva'=>'Numeric', 'ed.total_ttc'=>'Numeric', 'ed.comments'=>'Text', 'p.rowid'=>'Numeric', 'p.ref'=>'Text',
  174. 'u.lastname'=>'Text', 'u.firstname'=>'Text', 'u.login'=>"Text",
  175. 'user_rib.iban_prefix' => 'Text', 'user_rib.bic' => 'Text', 'user_rib.code_banque' => 'Text', 'user_rib.bank' => 'Text', 'user_rib.proprio' => 'Text',
  176. 'user_rib.owner_address' => 'Text'
  177. );
  178. $this->export_entities_array[$r] = array(
  179. 'ed.rowid'=>'expensereport_line', 'ed.date'=>'expensereport_line',
  180. 'ed.tva_tx'=>'expensereport_line', 'ed.total_ht'=>'expensereport_line', 'ed.total_tva'=>'expensereport_line', 'ed.total_ttc'=>'expensereport_line',
  181. 'ed.comments'=>'expensereport_line', 'tf.code'=>'expensereport_line', 'p.project_ref'=>'expensereport_line', 'p.rowid'=>'project', 'p.ref'=>'project',
  182. 'u.lastname'=>'user', 'u.firstname'=>'user', 'u.login'=>'user',
  183. 'user_rib.iban_prefix' => 'user', 'user_rib.bic' => 'user', 'user_rib.code_banque' => 'user', 'user_rib.bank' => 'user', 'user_rib.proprio' => 'user',
  184. 'user_rib.owner_address' => 'user'
  185. );
  186. $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');
  187. $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
  188. $keyforselect = 'expensereport';
  189. $keyforelement = 'expensereport';
  190. $keyforaliasextra = 'extra';
  191. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  192. $keyforselect = 'user'; $keyforelement = 'user'; $keyforaliasextra = 'extrau';
  193. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  194. $this->export_sql_start[$r] = 'SELECT DISTINCT ';
  195. $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'expensereport as d';
  196. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'expensereport_extrafields as extra on d.rowid = extra.fk_object';
  197. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user_rib as user_rib ON user_rib.fk_user = d.fk_user_author,';
  198. $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'user as u';
  199. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user_extrafields as extrau ON u.rowid = extrau.fk_object,';
  200. $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';
  201. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'projet as p ON ed.fk_projet = p.rowid';
  202. $this->export_sql_end[$r] .= ' WHERE ed.fk_expensereport = d.rowid AND d.fk_user_author = u.rowid';
  203. $this->export_sql_end[$r] .= ' AND d.entity IN ('.getEntity('expensereport').')';
  204. }
  205. /**
  206. * Function called when module is enabled.
  207. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  208. * It also creates data directories.
  209. *
  210. * @param string $options Options
  211. * @return int 1 if OK, 0 if KO
  212. */
  213. public function init($options = '')
  214. {
  215. global $conf;
  216. // Remove permissions and default values
  217. $this->remove($options);
  218. $sql = array(
  219. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = 'standard' AND type='expensereport' AND entity = ".$conf->entity,
  220. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('standard','expensereport',".$conf->entity.")"
  221. );
  222. return $this->_init($sql, $options);
  223. }
  224. }