dolibarr  19.0.0-dev
modMultiCurrency.class.php
Go to the documentation of this file.
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 
28 include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
29 
30 
35 {
41  public function __construct($db)
42  {
43  global $langs, $conf;
44 
45  $this->db = $db;
46 
47  // Id for module (must be unique).
48  // Use here a free id (See in Home -> System information -> Dolibarr for list of used modules id).
49  $this->numero = 40000;
50  // Key text used to identify module (for permissions, menus, etc...)
51  $this->rights_class = 'multicurrency';
52 
53  // Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
54  // It is used to group modules in module setup page
55  $this->family = "technic";
56  // Module position in the family
57  $this->module_position = '40';
58 
59  // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
60  $this->name = preg_replace('/^mod/i', '', get_class($this));
61  // Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
62  $this->description = "Module to manage several foreign currencies in prices and documents";
63 
64  // Possible values for version are: 'development', 'experimental', 'dolibarr' or 'dolibarr_deprecated' or version
65  $this->version = 'dolibarr';
66  // Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
67  $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
68  // Name of image file used for this module.
69  // If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
70  // If file is in module/img directory under name object_pictovalue.png, use this->picto='pictovalue@module'
71  $this->picto = 'multicurrency';
72 
73  // Defined all module parts (triggers, login, substitutions, menus, css, etc...)
74  // for default path (eg: /multicurrency/core/xxxxx) (0=disable, 1=enable)
75  // for specific path of parts (eg: /multicurrency/core/modules/barcode)
76  // for specific css file (eg: /multicurrency/css/multicurrency.css.php)
77  $this->module_parts = array();
78 
79  // Data directories to create when module is enabled.
80  // Example: this->dirs = array("/multicurrency/temp");
81  $this->dirs = array();
82 
83  // Config pages. Put here list of php page, stored into multicurrency/admin directory, to use to setup module.
84  $this->config_page_url = array("multicurrency.php");
85 
86  // Dependencies
87  $this->hidden = false; // A condition to hide module
88  $this->depends = array(); // List of modules id that must be enabled if this module is enabled
89  $this->requiredby = array(); // List of modules id to disable if this one is disabled
90  $this->conflictwith = array(); // List of modules id this module is in conflict with
91  $this->phpmin = array(7, 0); // Minimum version of PHP required by module
92  $this->need_dolibarr_version = array(3, 0); // Minimum version of Dolibarr required by module
93  $this->langfiles = array("multicurrency");
94 
95  // Constants
96  // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive)
97  // Example: $this->const=array(0=>array('MYMODULE_MYNEWCONST1','chaine','myvalue','This is a constant to add',1),
98  // 1=>array('MYMODULE_MYNEWCONST2','chaine','myvalue','This is another constant to add',0, 'current', 1)
99  // );
100  $this->const = array();
101 
102  // Array to add new pages in new tabs
103  // 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
104  // '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.
105  // 'objecttype:-tabname:NU:conditiontoremove'); // To remove an existing tab identified by code tabname
106  // where objecttype can be
107  // 'categories_x' to add a tab in category view (replace 'x' by type of category (0=product, 1=supplier, 2=customer, 3=member)
108  // 'contact' to add a tab in contact view
109  // 'contract' to add a tab in contract view
110  // 'group' to add a tab in group view
111  // 'intervention' to add a tab in intervention view
112  // 'invoice' to add a tab in customer invoice view
113  // 'invoice_supplier' to add a tab in supplier invoice view
114  // 'member' to add a tab in fundation member view
115  // 'opensurveypoll' to add a tab in opensurvey poll view
116  // 'order' to add a tab in sales order view
117  // 'order_supplier' to add a tab in supplier order view
118  // 'payment' to add a tab in payment view
119  // 'payment_supplier' to add a tab in supplier payment view
120  // 'product' to add a tab in product view
121  // 'propal' to add a tab in propal view
122  // 'project' to add a tab in project view
123  // 'stock' to add a tab in stock view
124  // 'thirdparty' to add a tab in third party view
125  // 'user' to add a tab in user view
126  $this->tabs = array();
127 
128  // Dictionaries
129  if (!isset($conf->multicurrency->enabled)) {
130  $conf->multicurrency = new stdClass();
131  $conf->multicurrency->enabled = 0;
132  }
133  $this->dictionaries = array();
134 
135 
136  // Boxes
137  // Add here list of php file(s) stored in core/boxes that contains class to show a box.
138  $this->boxes = array(); // List of boxes
139  // Example:
140  //$this->boxes=array(
141  // 0=>array('file'=>'myboxa.php@multicurrency','note'=>'','enabledbydefaulton'=>'Home'),
142  // 1=>array('file'=>'myboxb.php@multicurrency','note'=>''),
143  // 2=>array('file'=>'myboxc.php@multicurrency','note'=>'')
144  //);
145 
146  // Permissions
147  $this->rights = array(); // Permission array used by this module
148  $r = 0;
149 
150  // Add here list of permission defined by an id, a label, a boolean and two constant strings.
151  // Example:
152  // $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used)
153  // $this->rights[$r][1] = 'Permision label'; // Permission label
154  // $this->rights[$r][3] = 0; // Permission by default for new user (0/1)
155  // $this->rights[$r][4] = 'level1'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
156  // $this->rights[$r][5] = 'level2'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
157  // $r++;
158 
159  $this->rights[$r][0] = 40001;
160  $this->rights[$r][1] = 'Read currencies and their rates';
161  $this->rights[$r][2] = 'r';
162  $this->rights[$r][3] = 1;
163  $this->rights[$r][4] = 'currency';
164  $this->rights[$r][5] = 'read';
165  $r++;
166 
167  $this->rights[$r][0] = 40002;
168  $this->rights[$r][1] = 'Create/Update currencies and their rates';
169  $this->rights[$r][2] = 'w';
170  $this->rights[$r][3] = 0;
171  $this->rights[$r][4] = 'currency';
172  $this->rights[$r][5] = 'write';
173  $r++;
174 
175  $this->rights[$r][0] = 40003;
176  $this->rights[$r][1] = 'Delete currencies and their rates';
177  $this->rights[$r][2] = 'w';
178  $this->rights[$r][3] = 0;
179  $this->rights[$r][4] = 'currency';
180  $this->rights[$r][5] = 'delete';
181  $r++;
182 
183  // Main menu entries
184  $this->menu = array(); // List of menus to add
185  $r = 0;
186 
187  // Add here entries to declare new menus
188  //
189  // Example to declare a new Top Menu entry and its Left menu entry:
190  // $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
191  // 'type'=>'top', // This is a Top menu entry
192  // 'titre'=>'MyModule top menu',
193  // 'mainmenu'=>'multicurrency',
194  // 'leftmenu'=>'multicurrency',
195  // 'url'=>'/multicurrency/pagetop.php',
196  // 'langs'=>'mylangfile@multicurrency', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
197  // 'position'=>100,
198  // '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.
199  // 'perms'=>'1', // Use 'perms'=>'$user->rights->multicurrency->level1->level2' if you want your menu with a permission rules
200  // 'target'=>'',
201  // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
202  // $r++;
203  //
204  // Example to declare a Left Menu entry into an existing Top menu entry:
205  // $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
206  // 'type'=>'left', // This is a Left menu entry
207  // 'titre'=>'MyModule left menu',
208  // 'mainmenu'=>'xxx',
209  // 'leftmenu'=>'multicurrency',
210  // 'url'=>'/multicurrency/pagelevel2.php',
211  // 'langs'=>'mylangfile@multicurrency', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
212  // 'position'=>100,
213  // '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.
214  // 'perms'=>'1', // Use 'perms'=>'$user->rights->multicurrency->level1->level2' if you want your menu with a permission rules
215  // 'target'=>'',
216  // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
217  // $r++;
218 
219 
220  // Exports
221  $r = 1;
222 
223  // Example:
224  // $this->export_code[$r]=$this->rights_class.'_'.$r;
225  // $this->export_label[$r]='MyModule'; // Translation key (used only if key ExportDataset_xxx_z not found)
226  // $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.
227  // $this->export_icon[$r]='generic:MyModule';
228  // $this->export_permission[$r]=array(array("multicurrency","level1","level2"));
229  // $this->export_fields_array[$r]=array(
230  // 's.rowid'=>"IdCompany",'s.nom'=>'CompanyName','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town','s.fk_pays'=>'Country','s.phone'=>'Phone',
231  // 's.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3','s.idprof4'=>'ProfId4','s.code_compta'=>'CustomerAccountancyCode',
232  // 's.code_compta_fournisseur'=>'SupplierAccountancyCode','f.rowid'=>"InvoiceId",'f.ref'=>"InvoiceRef",'f.datec'=>"InvoiceDateCreation",
233  // 'f.datef'=>"DateInvoice",'f.total_ht'=>"TotalHT",'f.total_ttc'=>"TotalTTC",'f.total_tva'=>"TotalVAT",'f.paye'=>"InvoicePaid",'f.fk_statut'=>'InvoiceStatus',
234  // 'f.note'=>"InvoiceNote",'fd.rowid'=>'LineId','fd.description'=>"LineDescription",'fd.price'=>"LineUnitPrice",'fd.tva_tx'=>"LineVATRate",
235  // 'fd.qty'=>"LineQty",'fd.total_ht'=>"LineTotalHT",'fd.total_tva'=>"LineTotalTVA",'fd.total_ttc'=>"LineTotalTTC",'fd.date_start'=>"DateStart",
236  // 'fd.date_end'=>"DateEnd",'fd.fk_product'=>'ProductId','p.ref'=>'ProductRef'
237  //);
238  // $this->export_TypeFields_array[$r]=array(
239  // 't.date'=>'Date', 't.qte'=>'Numeric', 't.poids'=>'Numeric', 't.fad'=>'Numeric', 't.paq'=>'Numeric', 't.stockage'=>'Numeric', 't.fadparliv'=>'Numeric',
240  // 't.livau100'=>'Numeric', 't.forfait'=>'Numeric', 's.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','c.code'=>'Text','s.phone'=>'Text',
241  // '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',
242  // '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",
243  // 'f.paye'=>"Boolean",'f.fk_statut'=>'Status','f.note_private'=>"Text",'f.note_public'=>"Text",'fd.description'=>"Text",'fd.subprice'=>"Numeric",
244  // 'fd.tva_tx'=>"Numeric",'fd.qty'=>"Numeric",'fd.total_ht'=>"Numeric",'fd.total_tva'=>"Numeric",'fd.total_ttc'=>"Numeric",'fd.date_start'=>"Date",
245  // 'fd.date_end'=>"Date",'fd.special_code'=>'Numeric','fd.product_type'=>"Numeric",'fd.fk_product'=>'List:product:label','p.ref'=>'Text','p.label'=>'Text',
246  // 'p.accountancy_code_sell'=>'Text'
247  //);
248  // $this->export_entities_array[$r]=array(
249  // 's.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company','s.fk_pays'=>'company','s.phone'=>'company',
250  // 's.siren'=>'company','s.siret'=>'company','s.ape'=>'company','s.idprof4'=>'company','s.code_compta'=>'company','s.code_compta_fournisseur'=>'company',
251  // 'f.rowid'=>"invoice",'f.ref'=>"invoice",'f.datec'=>"invoice",'f.datef'=>"invoice",'f.total_ht'=>"invoice",'f.total_ttc'=>"invoice",
252  // 'f.total_tva'=>"invoice",'f.paye'=>"invoice",'f.fk_statut'=>'invoice','f.note'=>"invoice",'fd.rowid'=>'invoice_line','fd.description'=>"invoice_line",
253  // 'fd.price'=>"invoice_line",'fd.total_ht'=>"invoice_line",'fd.total_tva'=>"invoice_line",'fd.total_ttc'=>"invoice_line",'fd.tva_tx'=>"invoice_line",
254  // 'fd.qty'=>"invoice_line",'fd.date_start'=>"invoice_line",'fd.date_end'=>"invoice_line",'fd.fk_product'=>'product','p.ref'=>'product'
255  //);
256  // $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
257  // $this->export_sql_start[$r]='SELECT DISTINCT ';
258  // $this->export_sql_end[$r] =' FROM ('.MAIN_DB_PREFIX.'facture as f, '.MAIN_DB_PREFIX.'facturedet as fd, '.MAIN_DB_PREFIX.'societe as s)';
259  // $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (fd.fk_product = p.rowid)';
260  // $this->export_sql_end[$r] .=' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_facture';
261  // $this->export_sql_order[$r] .=' ORDER BY s.nom';
262  // $r++;
263  }
264 
273  public function init($options = '')
274  {
275  $sql = array();
276 
277  $res = $this->_init($sql, $options);
278 
279  if ($res) {
280  $this->createFirstCurrency();
281  }
282 
283  return $res;
284  }
285 
294  public function remove($options = '')
295  {
296  $sql = array();
297 
298  return $this->_remove($sql, $options);
299  }
300 
307  private function createFirstCurrency()
308  {
309  global $conf, $user, $langs;
310 
311  $multicurrency = new MultiCurrency($this->db);
312 
313  if (! $multicurrency->checkCodeAlreadyExists($conf->currency)) {
314  $langs->loadCacheCurrencies('');
315 
316  $multicurrency->code = $conf->currency;
317  $multicurrency->name = $langs->cache_currencies[$conf->currency]['label'].' ('.$langs->getCurrencySymbol($conf->currency).')';
318  $r = $multicurrency->create($user);
319 
320  if ($r > 0) {
321  $multicurrency->addRate(1);
322  } else {
323  return 0;
324  }
325  }
326  return 1;
327  }
328 }
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_remove($array_sql, $options='')
Disable function.
Class Currency.
Description and activation class for module MyModule.
init($options='')
Function called when module is enabled.
createFirstCurrency()
Function called when module is enabled Create the currency from general setting.
__construct($db)
Constructor.
if(isModEnabled('facture') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $sql
Social contributions to pay.
Definition: index.php:746
print *****$script_file(".$version.") pid 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:123