dolibarr 21.0.0-alpha
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
28include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
29
30
35{
41 public function __construct($db)
42 {
43 global $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 foundation 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 // Cronjobs (List of cron jobs entries to add when module is enabled)
147 // unit_frequency must be 60 for minute, 3600 for hour, 86400 for day, 604800 for week
148 $statusatinstall=1;
149 $arraydate=dol_getdate(dol_now());
150 $datestart=dol_mktime(21, 15, 0, $arraydate['mon'], $arraydate['mday'], $arraydate['year']);
151
152 $this->cronjobs = array(
153 0 => array(
154 'priority'=>61,
155 'label'=>'MutltiCurrencyAutoUpdateCurrencies',
156 'jobtype'=>'method',
157 'class'=>'multicurrency/class/multicurrency.class.php',
158 'objectname'=>'MultiCurrency',
159 'method'=>'syncRates',
160 'parameters'=>'0,0,cron',
161 'comment'=>'Update all the currencies using the currencylayer API. An API key needs to be given in the multi-currency module config page',
162 'frequency'=>1,
163 'unitfrequency'=>2678400,
164 'status'=>$statusatinstall,
165 'test'=>'isModEnabled("cron")',
166 'datestart'=>$datestart
167 ),
168 );
169
170 // Permissions
171 $this->rights = array(); // Permission array used by this module
172 $r = 0;
173
174 // Add here list of permission defined by an id, a label, a boolean and two constant strings.
175 // Example:
176 // $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used)
177 // $this->rights[$r][1] = 'Permision label'; // Permission label
178 // $this->rights[$r][3] = 0; // Permission by default for new user (0/1)
179 // $this->rights[$r][4] = 'level1'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
180 // $this->rights[$r][5] = 'level2'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
181 // $r++;
182
183 $this->rights[$r][0] = 40001;
184 $this->rights[$r][1] = 'Read currencies and their rates';
185 $this->rights[$r][2] = 'r';
186 $this->rights[$r][3] = 1;
187 $this->rights[$r][4] = 'currency';
188 $this->rights[$r][5] = 'read';
189 $r++;
190
191 $this->rights[$r][0] = 40002;
192 $this->rights[$r][1] = 'Create/Update currencies and their rates';
193 $this->rights[$r][2] = 'w';
194 $this->rights[$r][3] = 0;
195 $this->rights[$r][4] = 'currency';
196 $this->rights[$r][5] = 'write';
197 $r++;
198
199 $this->rights[$r][0] = 40003;
200 $this->rights[$r][1] = 'Delete currencies and their rates';
201 $this->rights[$r][2] = 'w';
202 $this->rights[$r][3] = 0;
203 $this->rights[$r][4] = 'currency';
204 $this->rights[$r][5] = 'delete';
205 $r++;
206
207 // Main menu entries
208 $this->menu = array(); // List of menus to add
209 $r = 0;
210
211 // Add here entries to declare new menus
212 //
213 // Example to declare a new Top Menu entry and its Left menu entry:
214 // $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
215 // 'type'=>'top', // This is a Top menu entry
216 // 'titre'=>'MyModule top menu',
217 // 'mainmenu'=>'multicurrency',
218 // 'leftmenu'=>'multicurrency',
219 // 'url'=>'/multicurrency/pagetop.php',
220 // 'langs'=>'mylangfile@multicurrency', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
221 // 'position'=>100,
222 // '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.
223 // 'perms'=>'1', // Use 'perms'=>'$user->rights->multicurrency->level1->level2' if you want your menu with a permission rules
224 // 'target'=>'',
225 // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
226 // $r++;
227 //
228 // Example to declare a Left Menu entry into an existing Top menu entry:
229 // $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
230 // 'type'=>'left', // This is a Left menu entry
231 // 'titre'=>'MyModule left menu',
232 // 'mainmenu'=>'xxx',
233 // 'leftmenu'=>'multicurrency',
234 // 'url'=>'/multicurrency/pagelevel2.php',
235 // 'langs'=>'mylangfile@multicurrency', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
236 // 'position'=>100,
237 // '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.
238 // 'perms'=>'1', // Use 'perms'=>'$user->rights->multicurrency->level1->level2' if you want your menu with a permission rules
239 // 'target'=>'',
240 // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
241 // $r++;
242
243
244 // Exports
245 $r = 1;
246
247 // Example:
248 // $this->export_code[$r]=$this->rights_class.'_'.$r;
249 // $this->export_label[$r]='MyModule'; // Translation key (used only if key ExportDataset_xxx_z not found)
250 // $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.
251 // $this->export_icon[$r]='generic:MyModule';
252 // $this->export_permission[$r]=array(array("multicurrency","level1","level2"));
253 // $this->export_fields_array[$r]=array(
254 // 's.rowid'=>"IdCompany",'s.nom'=>'CompanyName','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town','s.fk_pays'=>'Country','s.phone'=>'Phone',
255 // 's.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3','s.idprof4'=>'ProfId4','s.code_compta'=>'CustomerAccountancyCode',
256 // 's.code_compta_fournisseur'=>'SupplierAccountancyCode','f.rowid'=>"InvoiceId",'f.ref'=>"InvoiceRef",'f.datec'=>"InvoiceDateCreation",
257 // 'f.datef'=>"DateInvoice",'f.total_ht'=>"TotalHT",'f.total_ttc'=>"TotalTTC",'f.total_tva'=>"TotalVAT",'f.paye'=>"InvoicePaid",'f.fk_statut'=>'InvoiceStatus',
258 // 'f.note'=>"InvoiceNote",'fd.rowid'=>'LineId','fd.description'=>"LineDescription",'fd.price'=>"LineUnitPrice",'fd.tva_tx'=>"LineVATRate",
259 // 'fd.qty'=>"LineQty",'fd.total_ht'=>"LineTotalHT",'fd.total_tva'=>"LineTotalTVA",'fd.total_ttc'=>"LineTotalTTC",'fd.date_start'=>"DateStart",
260 // 'fd.date_end'=>"DateEnd",'fd.fk_product'=>'ProductId','p.ref'=>'ProductRef'
261 //);
262 // $this->export_TypeFields_array[$r]=array(
263 // 't.date'=>'Date', 't.qte'=>'Numeric', 't.poids'=>'Numeric', 't.fad'=>'Numeric', 't.paq'=>'Numeric', 't.stockage'=>'Numeric', 't.fadparliv'=>'Numeric',
264 // 't.livau100'=>'Numeric', 't.forfait'=>'Numeric', 's.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','c.code'=>'Text','s.phone'=>'Text',
265 // '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',
266 // '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",
267 // 'f.paye'=>"Boolean",'f.fk_statut'=>'Status','f.note_private'=>"Text",'f.note_public'=>"Text",'fd.description'=>"Text",'fd.subprice'=>"Numeric",
268 // 'fd.tva_tx'=>"Numeric",'fd.qty'=>"Numeric",'fd.total_ht'=>"Numeric",'fd.total_tva'=>"Numeric",'fd.total_ttc'=>"Numeric",'fd.date_start'=>"Date",
269 // 'fd.date_end'=>"Date",'fd.special_code'=>'Numeric','fd.product_type'=>"Numeric",'fd.fk_product'=>'List:product:label','p.ref'=>'Text','p.label'=>'Text',
270 // 'p.accountancy_code_sell'=>'Text'
271 //);
272 // $this->export_entities_array[$r]=array(
273 // 's.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company','s.fk_pays'=>'company','s.phone'=>'company',
274 // 's.siren'=>'company','s.siret'=>'company','s.ape'=>'company','s.idprof4'=>'company','s.code_compta'=>'company','s.code_compta_fournisseur'=>'company',
275 // 'f.rowid'=>"invoice",'f.ref'=>"invoice",'f.datec'=>"invoice",'f.datef'=>"invoice",'f.total_ht'=>"invoice",'f.total_ttc'=>"invoice",
276 // 'f.total_tva'=>"invoice",'f.paye'=>"invoice",'f.fk_statut'=>'invoice','f.note'=>"invoice",'fd.rowid'=>'invoice_line','fd.description'=>"invoice_line",
277 // 'fd.price'=>"invoice_line",'fd.total_ht'=>"invoice_line",'fd.total_tva'=>"invoice_line",'fd.total_ttc'=>"invoice_line",'fd.tva_tx'=>"invoice_line",
278 // 'fd.qty'=>"invoice_line",'fd.date_start'=>"invoice_line",'fd.date_end'=>"invoice_line",'fd.fk_product'=>'product','p.ref'=>'product'
279 //);
280 // $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
281 // $this->export_sql_start[$r]='SELECT DISTINCT ';
282 // $this->export_sql_end[$r] =' FROM ('.MAIN_DB_PREFIX.'facture as f, '.MAIN_DB_PREFIX.'facturedet as fd, '.MAIN_DB_PREFIX.'societe as s)';
283 // $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (fd.fk_product = p.rowid)';
284 // $this->export_sql_end[$r] .=' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_facture';
285 // $this->export_sql_order[$r] .=' ORDER BY s.nom';
286 // $r++;
287 }
288
297 public function init($options = '')
298 {
299 $sql = array();
300
301 $res = $this->_init($sql, $options);
302
303 if ($res) {
304 $this->createFirstCurrency();
305 }
306
307 return $res;
308 }
309
318 public function remove($options = '')
319 {
320 $sql = array();
321
322 return $this->_remove($sql, $options);
323 }
324
331 private function createFirstCurrency()
332 {
333 global $conf, $user, $langs;
334
335 $multicurrency = new MultiCurrency($this->db);
336
337 if (! $multicurrency->checkCodeAlreadyExists($conf->currency)) {
338 $langs->loadCacheCurrencies('');
339
340 $multicurrency->code = $conf->currency;
341 $multicurrency->name = $langs->cache_currencies[$conf->currency]['label'].' ('.$langs->getCurrencySymbol($conf->currency).')';
342 $r = $multicurrency->create($user);
343
344 if ($r > 0) {
345 $multicurrency->addRate(1);
346 } else {
347 return 0;
348 }
349 }
350 return 1;
351 }
352}
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.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
dol_now($mode='auto')
Return date for now.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:142