modTax.class.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <?php
  2. /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
  4. * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
  5. * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
  6. * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
  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. * or see https://www.gnu.org/
  21. */
  22. /**
  23. * \defgroup tax Module taxes
  24. * \brief Module pour inclure des fonctions de saisies des taxes (tva) et charges sociales
  25. * \file htdocs/core/modules/modTax.class.php
  26. * \ingroup tax
  27. * \brief Description and activation file for the module taxes
  28. */
  29. include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
  30. /**
  31. * Class to describe and enable module Tax
  32. */
  33. class modTax extends DolibarrModules
  34. {
  35. /**
  36. * Constructor. Define names, constants, directories, boxes, permissions
  37. *
  38. * @param DoliDB $db Database handler
  39. */
  40. public function __construct($db)
  41. {
  42. global $conf;
  43. $this->db = $db;
  44. $this->numero = 500;
  45. $this->family = "financial";
  46. // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
  47. $this->name = preg_replace('/^mod/i', '', get_class($this));
  48. // Module description used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
  49. $this->description = "Gestion des taxes, charges sociales et dividendes";
  50. // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
  51. $this->version = 'dolibarr';
  52. $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
  53. $this->picto = 'bill';
  54. // Data directories to create when module is enabled
  55. $this->dirs = array("/tax/temp");
  56. // Config pages
  57. $this->config_page_url = array("taxes.php");
  58. // Dependencies
  59. $this->hidden = false; // A condition to hide module
  60. $this->depends = array(); // List of module class names as string that must be enabled if this module is enabled
  61. $this->requiredby = array(); // List of module ids to disable if this one is disabled
  62. $this->conflictwith = array(); // List of module class names as string this module is in conflict with
  63. $this->phpmin = array(5, 6); // Minimum version of PHP required by module
  64. $this->langfiles = array("compta", "bills");
  65. // Constants
  66. $this->const = array();
  67. // Boxes
  68. $this->boxes = array();
  69. // Permissions
  70. $this->rights = array();
  71. $this->rights_class = 'tax';
  72. $r = 0;
  73. $r++;
  74. $this->rights[$r][0] = 91;
  75. $this->rights[$r][1] = 'Lire les charges';
  76. $this->rights[$r][2] = 'r';
  77. $this->rights[$r][3] = 0;
  78. $this->rights[$r][4] = 'charges';
  79. $this->rights[$r][5] = 'lire';
  80. $r++;
  81. $this->rights[$r][0] = 92;
  82. $this->rights[$r][1] = 'Creer/modifier les charges';
  83. $this->rights[$r][2] = 'w';
  84. $this->rights[$r][3] = 0;
  85. $this->rights[$r][4] = 'charges';
  86. $this->rights[$r][5] = 'creer';
  87. $r++;
  88. $this->rights[$r][0] = 93;
  89. $this->rights[$r][1] = 'Supprimer les charges';
  90. $this->rights[$r][2] = 'd';
  91. $this->rights[$r][3] = 0;
  92. $this->rights[$r][4] = 'charges';
  93. $this->rights[$r][5] = 'supprimer';
  94. $r++;
  95. $this->rights[$r][0] = 94;
  96. $this->rights[$r][1] = 'Exporter les charges';
  97. $this->rights[$r][2] = 'r';
  98. $this->rights[$r][3] = 0;
  99. $this->rights[$r][4] = 'charges';
  100. $this->rights[$r][5] = 'export';
  101. // Menus
  102. $this->menu = 1; // This module add menu entries. They are coded into menu manager.
  103. // Exports
  104. $r = 0;
  105. $r++;
  106. $this->export_code[$r] = $this->rights_class.'_'.$r;
  107. $this->export_label[$r] = 'Taxes et charges sociales, et leurs reglements';
  108. $this->export_permission[$r] = array(array("tax", "charges", "export"));
  109. $this->export_fields_array[$r] = array('cc.libelle'=>"Type", 'c.rowid'=>"IdSocialContribution", 'c.libelle'=>"Label", 'c.date_ech'=>'DateDue', 'c.periode'=>'Period', 'c.amount'=>"AmountExpected", "c.paye"=>"Status", 'p.rowid'=>'PaymentId', 'p.datep'=>'DatePayment', 'p.amount'=>'AmountPayment', 'p.num_paiement'=>'Numero');
  110. $this->export_TypeFields_array[$r] = array('cc.libelle'=>"List:c_chargesociales:libelle:id", 'c.libelle'=>"Text", 'c.date_ech'=>'Date', 'c.periode'=>'Period', 'c.amount'=>"Numeric", "c.paye"=>"Boolean", 'p.datep'=>'Date', 'p.amount'=>'Numeric', 'p.num_paiement'=>'Numeric');
  111. $this->export_entities_array[$r] = array('cc.libelle'=>"tax_type", 'c.rowid'=>"tax", 'c.libelle'=>'tax', 'c.date_ech'=>'tax', 'c.periode'=>'tax', 'c.amount'=>"tax", "c.paye"=>"tax", 'p.rowid'=>'payment', 'p.datep'=>'payment', 'p.amount'=>'payment', 'p.num_paiement'=>'payment');
  112. $this->export_sql_start[$r] = 'SELECT DISTINCT ';
  113. $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'c_chargesociales as cc, '.MAIN_DB_PREFIX.'chargesociales as c';
  114. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'paiementcharge as p ON p.fk_charge = c.rowid';
  115. $this->export_sql_end[$r] .= ' WHERE c.fk_type = cc.id';
  116. $this->export_sql_end[$r] .= ' AND c.entity IN ('.getEntity('tax').')';
  117. // Import social contributions
  118. $r++;
  119. $this->import_code[$r] = $this->rights_class.'_'.$r;
  120. $this->import_label[$r] = "ImportDataset_tax_contrib"; // Translation key
  121. $this->import_icon[$r] = 'tax';
  122. $this->import_entities_array[$r] = array(); // We define here only fields that use another icon that the one defined into import_icon
  123. $this->import_tables_array[$r] = array('t'=>MAIN_DB_PREFIX.'chargesociales');
  124. $this->import_fields_array[$r] = array('t.libelle'=>"Label*", 't.fk_type'=>"Type",
  125. 't.amount'=>"Amount*", 't.date_ech'=>"DateDue*", 't.periode'=>"PeriodEndDate*"
  126. );
  127. $this->import_convertvalue_array[$r] = array(
  128. 't.fk_type'=>array('rule'=>'fetchidfromref', 'classfile'=>'/compta/sociales/class/cchargesociales.class.php', 'class'=>'Cchargesociales', 'method'=>'fetch', 'element'=>'Cchargesociales')
  129. );
  130. $this->import_examplevalues_array[$r] = array('t.libelle'=>"Social/fiscal contribution", 't.fk_type'=>"TAXPRO (must be id or code found into dictionary)",
  131. 't.date_ech'=>"2016-01-01", 't.periode'=>"2016-01-01"
  132. );
  133. // Import Taxes
  134. $r++;
  135. $this->import_code[$r] = $this->rights_class.'_'.$r;
  136. $this->import_label[$r] = "ImportDataset_tax_vat"; // Translation key
  137. $this->import_icon[$r] = 'tax';
  138. $this->import_entities_array[$r] = array(); // We define here only fields that use another icon that the one defined into import_icon
  139. $this->import_tables_array[$r] = array('t'=>MAIN_DB_PREFIX.'tva');
  140. $this->import_fields_array[$r] = array('t.datep'=>"DatePayment*", 't.datev'=>"DateValue*", 't.label'=>"Label*", 't.fk_typepayment'=>"PaymentMode*",
  141. 't.amount'=>"Amount*", 't.num_payment'=>'Numero'
  142. );
  143. $this->import_convertvalue_array[$r] = array(
  144. 't.fk_typepayment'=>array('rule'=>'fetchidfromref', 'classfile'=>'/compta/paiement/class/cpaiement.class.php', 'class'=>'Cpaiement', 'method'=>'fetch', 'element'=>'Cpaiement')
  145. );
  146. $this->import_examplevalues_array[$r] = array('t.label'=>"VAT Payment 1st quarter 2016", 't.fk_typepayment'=>"CHQ (must be id or code found into dictionary)",
  147. 't.datep'=>"2016-04-02", 't.datev'=>"2016-03-31", 't.amount'=>1000, 't.num_payment'=>'123456'
  148. );
  149. }
  150. /**
  151. * Function called when module is enabled.
  152. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  153. * It also creates data directories
  154. *
  155. * @param string $options Options when enabling module ('', 'noboxes')
  156. * @return int 1 if OK, 0 if KO
  157. */
  158. public function init($options = '')
  159. {
  160. global $conf;
  161. // Nettoyage avant activation
  162. $this->remove($options);
  163. $sql = array();
  164. return $this->_init($sql, $options);
  165. }
  166. }