PageRenderTime 51ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/htdocs/core/modules/modMultiCurrency.class.php

http://github.com/Dolibarr/dolibarr
PHP | 317 lines | 70 code | 34 blank | 213 comment | 4 complexity | 7e4fb838be37720ab331ff00bd401827 MD5 | raw file
Possible License(s): GPL-2.0, AGPL-3.0, LGPL-2.0, CC-BY-SA-4.0, BSD-3-Clause, MPL-2.0-no-copyleft-exception, LGPL-3.0, GPL-3.0, LGPL-2.1, MIT
  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. /* Example:
  120. if (! isset($conf->multicurrency->enabled)) $conf->multicurrency->enabled=0; // This is to avoid warnings
  121. $this->dictionaries=array(
  122. 'langs'=>'mylangfile@multicurrency',
  123. 'tabname'=>array(MAIN_DB_PREFIX."table1",MAIN_DB_PREFIX."table2",MAIN_DB_PREFIX."table3"), // List of tables we want to see into dictonnary editor
  124. 'tablib'=>array("Table1","Table2","Table3"), // Label of tables
  125. 'tabsql'=>array('SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table1 as f','SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table2 as f','SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table3 as f'), // Request to select fields
  126. // Sort order
  127. 'tabsqlsort'=>array("label ASC","label ASC","label ASC"),
  128. 'tabfield'=>array("code,label","code,label","code,label"), // List of fields (result of select to show dictionary)
  129. 'tabfieldvalue'=>array("code,label","code,label","code,label"), // List of fields (list of fields to edit a record)
  130. 'tabfieldinsert'=>array("code,label","code,label","code,label"), // List of fields (list of fields for insert)
  131. 'tabrowid'=>array("rowid","rowid","rowid"), // Name of columns with primary key (try to always name it 'rowid')
  132. 'tabcond'=>array($conf->multicurrency->enabled,$conf->multicurrency->enabled,$conf->multicurrency->enabled) // Condition to show each dictionary
  133. );
  134. */
  135. // Boxes
  136. // Add here list of php file(s) stored in core/boxes that contains class to show a box.
  137. $this->boxes = array(); // List of boxes
  138. // Example:
  139. //$this->boxes=array(
  140. // 0=>array('file'=>'myboxa.php@multicurrency','note'=>'','enabledbydefaulton'=>'Home'),
  141. // 1=>array('file'=>'myboxb.php@multicurrency','note'=>''),
  142. // 2=>array('file'=>'myboxc.php@multicurrency','note'=>'')
  143. //);
  144. // Permissions
  145. $this->rights = array(); // Permission array used by this module
  146. $r = 0;
  147. // Add here list of permission defined by an id, a label, a boolean and two constant strings.
  148. // Example:
  149. // $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used)
  150. // $this->rights[$r][1] = 'Permision label'; // Permission label
  151. // $this->rights[$r][3] = 0; // Permission by default for new user (0/1)
  152. // $this->rights[$r][4] = 'level1'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
  153. // $this->rights[$r][5] = 'level2'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
  154. // $r++;
  155. // Main menu entries
  156. $this->menu = array(); // List of menus to add
  157. $r = 0;
  158. // Add here entries to declare new menus
  159. //
  160. // Example to declare a new Top Menu entry and its Left menu entry:
  161. // $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
  162. // 'type'=>'top', // This is a Top menu entry
  163. // 'titre'=>'MyModule top menu',
  164. // 'mainmenu'=>'multicurrency',
  165. // 'leftmenu'=>'multicurrency',
  166. // 'url'=>'/multicurrency/pagetop.php',
  167. // 'langs'=>'mylangfile@multicurrency', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
  168. // 'position'=>100,
  169. // '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.
  170. // 'perms'=>'1', // Use 'perms'=>'$user->rights->multicurrency->level1->level2' if you want your menu with a permission rules
  171. // 'target'=>'',
  172. // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
  173. // $r++;
  174. //
  175. // Example to declare a Left Menu entry into an existing Top menu entry:
  176. // $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
  177. // 'type'=>'left', // This is a Left menu entry
  178. // 'titre'=>'MyModule left menu',
  179. // 'mainmenu'=>'xxx',
  180. // 'leftmenu'=>'multicurrency',
  181. // 'url'=>'/multicurrency/pagelevel2.php',
  182. // 'langs'=>'mylangfile@multicurrency', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
  183. // 'position'=>100,
  184. // '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.
  185. // 'perms'=>'1', // Use 'perms'=>'$user->rights->multicurrency->level1->level2' if you want your menu with a permission rules
  186. // 'target'=>'',
  187. // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
  188. // $r++;
  189. // Exports
  190. $r = 1;
  191. // Example:
  192. // $this->export_code[$r]=$this->rights_class.'_'.$r;
  193. // $this->export_label[$r]='MyModule'; // Translation key (used only if key ExportDataset_xxx_z not found)
  194. // $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.
  195. // $this->export_icon[$r]='generic:MyModule';
  196. // $this->export_permission[$r]=array(array("multicurrency","level1","level2"));
  197. // $this->export_fields_array[$r]=array(
  198. // 's.rowid'=>"IdCompany",'s.nom'=>'CompanyName','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town','s.fk_pays'=>'Country','s.phone'=>'Phone',
  199. // 's.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3','s.idprof4'=>'ProfId4','s.code_compta'=>'CustomerAccountancyCode',
  200. // 's.code_compta_fournisseur'=>'SupplierAccountancyCode','f.rowid'=>"InvoiceId",'f.ref'=>"InvoiceRef",'f.datec'=>"InvoiceDateCreation",
  201. // 'f.datef'=>"DateInvoice",'f.total_ht'=>"TotalHT",'f.total_ttc'=>"TotalTTC",'f.total_tva'=>"TotalVAT",'f.paye'=>"InvoicePaid",'f.fk_statut'=>'InvoiceStatus',
  202. // 'f.note'=>"InvoiceNote",'fd.rowid'=>'LineId','fd.description'=>"LineDescription",'fd.price'=>"LineUnitPrice",'fd.tva_tx'=>"LineVATRate",
  203. // 'fd.qty'=>"LineQty",'fd.total_ht'=>"LineTotalHT",'fd.total_tva'=>"LineTotalTVA",'fd.total_ttc'=>"LineTotalTTC",'fd.date_start'=>"DateStart",
  204. // 'fd.date_end'=>"DateEnd",'fd.fk_product'=>'ProductId','p.ref'=>'ProductRef'
  205. //);
  206. // $this->export_TypeFields_array[$r]=array(
  207. // 't.date'=>'Date', 't.qte'=>'Numeric', 't.poids'=>'Numeric', 't.fad'=>'Numeric', 't.paq'=>'Numeric', 't.stockage'=>'Numeric', 't.fadparliv'=>'Numeric',
  208. // 't.livau100'=>'Numeric', 't.forfait'=>'Numeric', 's.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','c.code'=>'Text','s.phone'=>'Text',
  209. // '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',
  210. // '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",
  211. // 'f.paye'=>"Boolean",'f.fk_statut'=>'Status','f.note_private'=>"Text",'f.note_public'=>"Text",'fd.description'=>"Text",'fd.subprice'=>"Numeric",
  212. // 'fd.tva_tx'=>"Numeric",'fd.qty'=>"Numeric",'fd.total_ht'=>"Numeric",'fd.total_tva'=>"Numeric",'fd.total_ttc'=>"Numeric",'fd.date_start'=>"Date",
  213. // 'fd.date_end'=>"Date",'fd.special_code'=>'Numeric','fd.product_type'=>"Numeric",'fd.fk_product'=>'List:product:label','p.ref'=>'Text','p.label'=>'Text',
  214. // 'p.accountancy_code_sell'=>'Text'
  215. //);
  216. // $this->export_entities_array[$r]=array(
  217. // 's.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company','s.fk_pays'=>'company','s.phone'=>'company',
  218. // 's.siren'=>'company','s.siret'=>'company','s.ape'=>'company','s.idprof4'=>'company','s.code_compta'=>'company','s.code_compta_fournisseur'=>'company',
  219. // 'f.rowid'=>"invoice",'f.ref'=>"invoice",'f.datec'=>"invoice",'f.datef'=>"invoice",'f.total_ht'=>"invoice",'f.total_ttc'=>"invoice",
  220. // 'f.total_tva'=>"invoice",'f.paye'=>"invoice",'f.fk_statut'=>'invoice','f.note'=>"invoice",'fd.rowid'=>'invoice_line','fd.description'=>"invoice_line",
  221. // 'fd.price'=>"invoice_line",'fd.total_ht'=>"invoice_line",'fd.total_tva'=>"invoice_line",'fd.total_ttc'=>"invoice_line",'fd.tva_tx'=>"invoice_line",
  222. // 'fd.qty'=>"invoice_line",'fd.date_start'=>"invoice_line",'fd.date_end'=>"invoice_line",'fd.fk_product'=>'product','p.ref'=>'product'
  223. //);
  224. // $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
  225. // $this->export_sql_start[$r]='SELECT DISTINCT ';
  226. // $this->export_sql_end[$r] =' FROM ('.MAIN_DB_PREFIX.'facture as f, '.MAIN_DB_PREFIX.'facturedet as fd, '.MAIN_DB_PREFIX.'societe as s)';
  227. // $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (fd.fk_product = p.rowid)';
  228. // $this->export_sql_end[$r] .=' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_facture';
  229. // $this->export_sql_order[$r] .=' ORDER BY s.nom';
  230. // $r++;
  231. }
  232. /**
  233. * Function called when module is enabled.
  234. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  235. * It also creates data directories
  236. *
  237. * @param string $options Options when enabling module ('', 'noboxes')
  238. * @return int 1 if OK, 0 if KO
  239. */
  240. public function init($options = '')
  241. {
  242. $sql = array();
  243. //$this->_load_tables('/multicurrency/sql/');
  244. $res = $this->_init($sql, $options);
  245. if ($res) {
  246. $this->createFirstCurrency();
  247. }
  248. return $res;
  249. }
  250. /**
  251. * Function called when module is disabled.
  252. * Remove from database constants, boxes and permissions from Dolibarr database.
  253. * Data directories are not deleted
  254. *
  255. * @param string $options Options when enabling module ('', 'noboxes')
  256. * @return int 1 if OK, 0 if KO
  257. */
  258. public function remove($options = '')
  259. {
  260. $sql = array();
  261. return $this->_remove($sql, $options);
  262. }
  263. /**
  264. * Function called when module is enabled
  265. * Create the currency from general setting
  266. *
  267. * @return int 1 if OK, 0 if KO
  268. */
  269. private function createFirstCurrency()
  270. {
  271. global $conf, $user, $langs;
  272. $multicurrency = new MultiCurrency($this->db);
  273. if (!$multicurrency->checkCodeAlreadyExists($conf->currency)) {
  274. $langs->loadCacheCurrencies('');
  275. $multicurrency->code = $conf->currency;
  276. $multicurrency->name = $langs->cache_currencies[$conf->currency]['label'].' ('.$langs->getCurrencySymbol($conf->currency).')';
  277. $r = $multicurrency->create($user);
  278. if ($r > 0) {
  279. $multicurrency->addRate(1);
  280. }
  281. }
  282. }
  283. }