modMultiCurrency.class.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. <?php
  2. /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
  4. * Copyright (C) 2005-2016 Regis Houssin <regis.houssin@inodbox.com>
  5. * Copyright (C) 2016 Pierre-Henry Favre <phf@atm-consulting.fr>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  19. */
  20. /**
  21. * \defgroup multicurrency Module MultiCurrency
  22. * \brief Handle multiple currencies on company/propal/orders ...
  23. * \file htdocs/core/modules/modMultiCurrency.class.php
  24. * \ingroup multicurrency
  25. * \brief Description and activation file for the module MultiCurrency
  26. */
  27. include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
  28. /**
  29. * Description and activation class for module MyModule
  30. */
  31. class modMultiCurrency extends DolibarrModules
  32. {
  33. /**
  34. * Constructor. Define names, constants, directories, boxes, permissions
  35. *
  36. * @param DoliDB $db Database handler
  37. */
  38. public function __construct($db)
  39. {
  40. global $langs, $conf;
  41. $this->db = $db;
  42. // Id for module (must be unique).
  43. // Use here a free id (See in Home -> System information -> Dolibarr for list of used modules id).
  44. $this->numero = 40000;
  45. // Key text used to identify module (for permissions, menus, etc...)
  46. $this->rights_class = 'multicurrency';
  47. // Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
  48. // It is used to group modules in module setup page
  49. $this->family = "technic";
  50. // Module position in the family
  51. $this->module_position = '40';
  52. // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
  53. $this->name = preg_replace('/^mod/i', '', get_class($this));
  54. // Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
  55. $this->description = "Module to manage several foreign currencies in prices and documents";
  56. // Possible values for version are: 'development', 'experimental', 'dolibarr' or 'dolibarr_deprecated' or version
  57. $this->version = 'dolibarr';
  58. // Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
  59. $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
  60. // Name of image file used for this module.
  61. // If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
  62. // If file is in module/img directory under name object_pictovalue.png, use this->picto='pictovalue@module'
  63. $this->picto = 'multicurrency';
  64. // Defined all module parts (triggers, login, substitutions, menus, css, etc...)
  65. // for default path (eg: /multicurrency/core/xxxxx) (0=disable, 1=enable)
  66. // for specific path of parts (eg: /multicurrency/core/modules/barcode)
  67. // for specific css file (eg: /multicurrency/css/multicurrency.css.php)
  68. $this->module_parts = array();
  69. // Data directories to create when module is enabled.
  70. // Example: this->dirs = array("/multicurrency/temp");
  71. $this->dirs = array();
  72. // Config pages. Put here list of php page, stored into multicurrency/admin directory, to use to setup module.
  73. $this->config_page_url = array("multicurrency.php");
  74. // Dependencies
  75. $this->hidden = false; // A condition to hide module
  76. $this->depends = array(); // List of modules id that must be enabled if this module is enabled
  77. $this->requiredby = array(); // List of modules id to disable if this one is disabled
  78. $this->conflictwith = array(); // List of modules id this module is in conflict with
  79. $this->phpmin = array(5, 6); // Minimum version of PHP required by module
  80. $this->need_dolibarr_version = array(3, 0); // Minimum version of Dolibarr required by module
  81. $this->langfiles = array("multicurrency");
  82. // Constants
  83. // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive)
  84. // Example: $this->const=array(0=>array('MYMODULE_MYNEWCONST1','chaine','myvalue','This is a constant to add',1),
  85. // 1=>array('MYMODULE_MYNEWCONST2','chaine','myvalue','This is another constant to add',0, 'current', 1)
  86. // );
  87. $this->const = array();
  88. // Array to add new pages in new tabs
  89. // Example: $this->tabs = array('objecttype:+tabname1:Title1:mylangfile@multicurrency:$user->rights->multicurrency->read:/multicurrency/mynewtab1.php?id=__ID__', // To add a new tab identified by code tabname1
  90. // 'objecttype:+tabname2:SUBSTITUTION_Title2:mylangfile@multicurrency:$user->rights->othermodule->read:/multicurrency/mynewtab2.php?id=__ID__', // To add another new tab identified by code tabname2. Label will be result of calling all substitution functions on 'Title2' key.
  91. // 'objecttype:-tabname:NU:conditiontoremove'); // To remove an existing tab identified by code tabname
  92. // where objecttype can be
  93. // 'categories_x' to add a tab in category view (replace 'x' by type of category (0=product, 1=supplier, 2=customer, 3=member)
  94. // 'contact' to add a tab in contact view
  95. // 'contract' to add a tab in contract view
  96. // 'group' to add a tab in group view
  97. // 'intervention' to add a tab in intervention view
  98. // 'invoice' to add a tab in customer invoice view
  99. // 'invoice_supplier' to add a tab in supplier invoice view
  100. // 'member' to add a tab in fundation member view
  101. // 'opensurveypoll' to add a tab in opensurvey poll view
  102. // 'order' to add a tab in customer order view
  103. // 'order_supplier' to add a tab in supplier order view
  104. // 'payment' to add a tab in payment view
  105. // 'payment_supplier' to add a tab in supplier payment view
  106. // 'product' to add a tab in product view
  107. // 'propal' to add a tab in propal view
  108. // 'project' to add a tab in project view
  109. // 'stock' to add a tab in stock view
  110. // 'thirdparty' to add a tab in third party view
  111. // 'user' to add a tab in user view
  112. $this->tabs = array();
  113. // Dictionaries
  114. if (!isset($conf->multicurrency->enabled)) {
  115. $conf->multicurrency = new stdClass();
  116. $conf->multicurrency->enabled = 0;
  117. }
  118. $this->dictionaries = array();
  119. // Boxes
  120. // Add here list of php file(s) stored in core/boxes that contains class to show a box.
  121. $this->boxes = array(); // List of boxes
  122. // Example:
  123. //$this->boxes=array(
  124. // 0=>array('file'=>'myboxa.php@multicurrency','note'=>'','enabledbydefaulton'=>'Home'),
  125. // 1=>array('file'=>'myboxb.php@multicurrency','note'=>''),
  126. // 2=>array('file'=>'myboxc.php@multicurrency','note'=>'')
  127. //);
  128. // Permissions
  129. $this->rights = array(); // Permission array used by this module
  130. $r = 0;
  131. // Add here list of permission defined by an id, a label, a boolean and two constant strings.
  132. // Example:
  133. // $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used)
  134. // $this->rights[$r][1] = 'Permision label'; // Permission label
  135. // $this->rights[$r][3] = 0; // Permission by default for new user (0/1)
  136. // $this->rights[$r][4] = 'level1'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
  137. // $this->rights[$r][5] = 'level2'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
  138. // $r++;
  139. // Main menu entries
  140. $this->menu = array(); // List of menus to add
  141. $r = 0;
  142. // Add here entries to declare new menus
  143. //
  144. // Example to declare a new Top Menu entry and its Left menu entry:
  145. // $this->menu[$r]=array( 'fk_menu'=>'', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode
  146. // 'type'=>'top', // This is a Top menu entry
  147. // 'titre'=>'MyModule top menu',
  148. // 'mainmenu'=>'multicurrency',
  149. // 'leftmenu'=>'multicurrency',
  150. // 'url'=>'/multicurrency/pagetop.php',
  151. // 'langs'=>'mylangfile@multicurrency', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
  152. // 'position'=>100,
  153. // 'enabled'=>'$conf->multicurrency->enabled', // Define condition to show or hide menu entry. Use '$conf->multicurrency->enabled' if entry must be visible if module is enabled.
  154. // 'perms'=>'1', // Use 'perms'=>'$user->rights->multicurrency->level1->level2' if you want your menu with a permission rules
  155. // 'target'=>'',
  156. // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
  157. // $r++;
  158. //
  159. // Example to declare a Left Menu entry into an existing Top menu entry:
  160. // $this->menu[$r]=array( 'fk_menu'=>'fk_mainmenu=xxx', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode
  161. // 'type'=>'left', // This is a Left menu entry
  162. // 'titre'=>'MyModule left menu',
  163. // 'mainmenu'=>'xxx',
  164. // 'leftmenu'=>'multicurrency',
  165. // 'url'=>'/multicurrency/pagelevel2.php',
  166. // 'langs'=>'mylangfile@multicurrency', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
  167. // 'position'=>100,
  168. // 'enabled'=>'$conf->multicurrency->enabled', // Define condition to show or hide menu entry. Use '$conf->multicurrency->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected.
  169. // 'perms'=>'1', // Use 'perms'=>'$user->rights->multicurrency->level1->level2' if you want your menu with a permission rules
  170. // 'target'=>'',
  171. // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
  172. // $r++;
  173. // Exports
  174. $r = 1;
  175. // Example:
  176. // $this->export_code[$r]=$this->rights_class.'_'.$r;
  177. // $this->export_label[$r]='MyModule'; // Translation key (used only if key ExportDataset_xxx_z not found)
  178. // $this->export_enabled[$r]='1'; // Condition to show export in list (ie: '$user->id==3'). Set to 1 to always show when module is enabled.
  179. // $this->export_icon[$r]='generic:MyModule';
  180. // $this->export_permission[$r]=array(array("multicurrency","level1","level2"));
  181. // $this->export_fields_array[$r]=array(
  182. // 's.rowid'=>"IdCompany",'s.nom'=>'CompanyName','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town','s.fk_pays'=>'Country','s.phone'=>'Phone',
  183. // 's.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3','s.idprof4'=>'ProfId4','s.code_compta'=>'CustomerAccountancyCode',
  184. // 's.code_compta_fournisseur'=>'SupplierAccountancyCode','f.rowid'=>"InvoiceId",'f.ref'=>"InvoiceRef",'f.datec'=>"InvoiceDateCreation",
  185. // 'f.datef'=>"DateInvoice",'f.total_ht'=>"TotalHT",'f.total_ttc'=>"TotalTTC",'f.total_tva'=>"TotalVAT",'f.paye'=>"InvoicePaid",'f.fk_statut'=>'InvoiceStatus',
  186. // 'f.note'=>"InvoiceNote",'fd.rowid'=>'LineId','fd.description'=>"LineDescription",'fd.price'=>"LineUnitPrice",'fd.tva_tx'=>"LineVATRate",
  187. // 'fd.qty'=>"LineQty",'fd.total_ht'=>"LineTotalHT",'fd.total_tva'=>"LineTotalTVA",'fd.total_ttc'=>"LineTotalTTC",'fd.date_start'=>"DateStart",
  188. // 'fd.date_end'=>"DateEnd",'fd.fk_product'=>'ProductId','p.ref'=>'ProductRef'
  189. //);
  190. // $this->export_TypeFields_array[$r]=array(
  191. // 't.date'=>'Date', 't.qte'=>'Numeric', 't.poids'=>'Numeric', 't.fad'=>'Numeric', 't.paq'=>'Numeric', 't.stockage'=>'Numeric', 't.fadparliv'=>'Numeric',
  192. // 't.livau100'=>'Numeric', 't.forfait'=>'Numeric', 's.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','c.code'=>'Text','s.phone'=>'Text',
  193. // 's.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','s.code_compta'=>'Text','s.code_compta_fournisseur'=>'Text','s.tva_intra'=>'Text',
  194. // 'f.ref'=>"Text",'f.datec'=>"Date",'f.datef'=>"Date",'f.date_lim_reglement'=>"Date",'f.total_ht'=>"Numeric",'f.total_ttc'=>"Numeric",'f.total_tva'=>"Numeric",
  195. // 'f.paye'=>"Boolean",'f.fk_statut'=>'Status','f.note_private'=>"Text",'f.note_public'=>"Text",'fd.description'=>"Text",'fd.subprice'=>"Numeric",
  196. // 'fd.tva_tx'=>"Numeric",'fd.qty'=>"Numeric",'fd.total_ht'=>"Numeric",'fd.total_tva'=>"Numeric",'fd.total_ttc'=>"Numeric",'fd.date_start'=>"Date",
  197. // 'fd.date_end'=>"Date",'fd.special_code'=>'Numeric','fd.product_type'=>"Numeric",'fd.fk_product'=>'List:product:label','p.ref'=>'Text','p.label'=>'Text',
  198. // 'p.accountancy_code_sell'=>'Text'
  199. //);
  200. // $this->export_entities_array[$r]=array(
  201. // 's.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company','s.fk_pays'=>'company','s.phone'=>'company',
  202. // 's.siren'=>'company','s.siret'=>'company','s.ape'=>'company','s.idprof4'=>'company','s.code_compta'=>'company','s.code_compta_fournisseur'=>'company',
  203. // 'f.rowid'=>"invoice",'f.ref'=>"invoice",'f.datec'=>"invoice",'f.datef'=>"invoice",'f.total_ht'=>"invoice",'f.total_ttc'=>"invoice",
  204. // 'f.total_tva'=>"invoice",'f.paye'=>"invoice",'f.fk_statut'=>'invoice','f.note'=>"invoice",'fd.rowid'=>'invoice_line','fd.description'=>"invoice_line",
  205. // 'fd.price'=>"invoice_line",'fd.total_ht'=>"invoice_line",'fd.total_tva'=>"invoice_line",'fd.total_ttc'=>"invoice_line",'fd.tva_tx'=>"invoice_line",
  206. // 'fd.qty'=>"invoice_line",'fd.date_start'=>"invoice_line",'fd.date_end'=>"invoice_line",'fd.fk_product'=>'product','p.ref'=>'product'
  207. //);
  208. // $this->export_dependencies_array[$r]=array('invoice_line'=>'fd.rowid','product'=>'fd.rowid'); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
  209. // $this->export_sql_start[$r]='SELECT DISTINCT ';
  210. // $this->export_sql_end[$r] =' FROM ('.MAIN_DB_PREFIX.'facture as f, '.MAIN_DB_PREFIX.'facturedet as fd, '.MAIN_DB_PREFIX.'societe as s)';
  211. // $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (fd.fk_product = p.rowid)';
  212. // $this->export_sql_end[$r] .=' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_facture';
  213. // $this->export_sql_order[$r] .=' ORDER BY s.nom';
  214. // $r++;
  215. }
  216. /**
  217. * Function called when module is enabled.
  218. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  219. * It also creates data directories
  220. *
  221. * @param string $options Options when enabling module ('', 'noboxes')
  222. * @return int 1 if OK, 0 if KO
  223. */
  224. public function init($options = '')
  225. {
  226. $sql = array();
  227. $res = $this->_init($sql, $options);
  228. if ($res) {
  229. $this->createFirstCurrency();
  230. }
  231. return $res;
  232. }
  233. /**
  234. * Function called when module is disabled.
  235. * Remove from database constants, boxes and permissions from Dolibarr database.
  236. * Data directories are not deleted
  237. *
  238. * @param string $options Options when enabling module ('', 'noboxes')
  239. * @return int 1 if OK, 0 if KO
  240. */
  241. public function remove($options = '')
  242. {
  243. $sql = array();
  244. return $this->_remove($sql, $options);
  245. }
  246. /**
  247. * Function called when module is enabled
  248. * Create the currency from general setting
  249. *
  250. * @return int 1 if OK, 0 if KO
  251. */
  252. private function createFirstCurrency()
  253. {
  254. global $conf, $user, $langs;
  255. $multicurrency = new MultiCurrency($this->db);
  256. if (! $multicurrency->checkCodeAlreadyExists($conf->currency)) {
  257. $langs->loadCacheCurrencies('');
  258. $multicurrency->code = $conf->currency;
  259. $multicurrency->name = $langs->cache_currencies[$conf->currency]['label'].' ('.$langs->getCurrencySymbol($conf->currency).')';
  260. $r = $multicurrency->create($user);
  261. if ($r > 0) {
  262. $multicurrency->addRate(1);
  263. }
  264. }
  265. }
  266. }