dolibarr 24.0.0-beta
modCommande.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2013 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) 2004 Eric Seigne <eric.seigne@ryxeo.com>
7 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
8 * Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
9 * Copyright (C) 2020 Ahmad Jamaly Rabub <rabib@metroworks.co.jp>
10 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
11 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
12 * Copyright (C) 2025 Ferran Marcet <fmarcet@2byte.es>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program. If not, see <https://www.gnu.org/licenses/>.
26 */
27
36include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
37
38
43{
49 public function __construct($db)
50 {
51 global $conf, $user, $hookmanager;
52
53 $this->db = $db;
54 $this->numero = 25;
55
56 $this->family = "crm";
57 $this->module_position = '11';
58 // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
59 $this->name = preg_replace('/^mod/i', '', get_class($this));
60 $this->description = "Gestion des commandes clients";
61 // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
62 $this->version = 'dolibarr';
63
64 $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
65 $this->picto = 'order';
66
67 // Data directories to create when module is enabled
68 $this->dirs = array("/commande/temp");
69
70 // Config pages
71 $this->config_page_url = array("order.php");
72
73 // Dependencies
74 $this->depends = array("modSociete");
75 $this->requiredby = array("modExpedition");
76 $this->conflictwith = array();
77 $this->langfiles = array('orders', 'bills', 'companies', 'products', 'sendings');
78
79 // Constants
80 $this->const = [
81 [
82 "COMMANDE_ADDON_PDF",
83 "chaine",
84 "eratosthene",
85 "Name of PDF model of order",
86 0,
87 ],
88 [
89 "COMMANDE_ADDON",
90 "chaine",
91 "mod_commande_marbre",
92 "Name of numbering numerotation rules of order",
93 0,
94 ],
95 [
96 "COMMANDE_ADDON_PDF_ODT_PATH",
97 "chaine",
98 "DOL_DATA_ROOT".($conf->entity > 1 ? '/'.$conf->entity : '')."/doctemplates/orders",
99 "",
100 0,
101 ],
102 ];
103
104 /*$r++;
105 $this->const[$r][0] = "COMMANDE_DRAFT_WATERMARK";
106 $this->const[$r][1] = "chaine";
107 $this->const[$r][2] = "__(Draft)__";
108 $this->const[$r][3] = 'Watermark to show on draft orders';
109 $this->const[$r][4] = 0;*/
110
111 // Boxes
112 $this->boxes = array(
113 0 => array('file' => 'box_commandes.php', 'enabledbydefaulton' => 'Home'),
114 2 => array('file' => 'box_graph_orders_permonth.php', 'enabledbydefaulton' => 'Home')
115 );
116
117 // Permissions
118 $this->rights = array();
119 $this->rights_class = 'commande';
120
121 $r = 0;
122
123 $r++;
124 $this->rights[$r][0] = 81;
125 $this->rights[$r][1] = 'Read sales orders';
126 $this->rights[$r][2] = 'r';
127 $this->rights[$r][3] = 0;
128 $this->rights[$r][4] = 'lire';
129
130 $r++;
131 $this->rights[$r][0] = 82;
132 $this->rights[$r][1] = 'Creeat/modify sales orders';
133 $this->rights[$r][2] = 'w';
134 $this->rights[$r][3] = 0;
135 $this->rights[$r][4] = 'creer';
136
137 $r++;
138 $this->rights[$r][0] = 84;
139 $this->rights[$r][1] = 'Validate sales orders';
140 $this->rights[$r][2] = 'd';
141 $this->rights[$r][3] = 0;
142 $this->rights[$r][4] = 'order_advance';
143 $this->rights[$r][5] = 'validate';
144
145 $r++;
146 $this->rights[$r][0] = 85;
147 $this->rights[$r][1] = 'Generate the documents sales orders';
148 $this->rights[$r][2] = 'd';
149 $this->rights[$r][3] = 0;
150 $this->rights[$r][4] = 'order_advance';
151 $this->rights[$r][5] = 'generetedoc';
152
153 $r++;
154 $this->rights[$r][0] = 86;
155 $this->rights[$r][1] = 'Send sales orders by email';
156 $this->rights[$r][2] = 'd';
157 $this->rights[$r][3] = 0;
158 $this->rights[$r][4] = 'order_advance';
159 $this->rights[$r][5] = 'send';
160
161 $r++;
162 $this->rights[$r][0] = 87;
163 $this->rights[$r][1] = 'Close sale orders';
164 $this->rights[$r][2] = 'd';
165 $this->rights[$r][3] = 0;
166 $this->rights[$r][4] = 'order_advance';
167 $this->rights[$r][5] = 'close';
168
169 $r++;
170 $this->rights[$r][0] = 88;
171 $this->rights[$r][1] = 'Cancel sale orders';
172 $this->rights[$r][2] = 'd';
173 $this->rights[$r][3] = 0;
174 $this->rights[$r][4] = 'order_advance';
175 $this->rights[$r][5] = 'annuler';
176
177 $r++;
178 $this->rights[$r][0] = 89;
179 $this->rights[$r][1] = 'Delete sales orders';
180 $this->rights[$r][2] = 'd';
181 $this->rights[$r][3] = 0;
182 $this->rights[$r][4] = 'supprimer';
183
184 $r++;
185 $this->rights[$r][0] = 1421;
186 $this->rights[$r][1] = 'Export sales orders and attributes';
187 $this->rights[$r][2] = 'r';
188 $this->rights[$r][3] = 0;
189 $this->rights[$r][4] = 'commande';
190 $this->rights[$r][5] = 'export';
191
192
193 // Menus
194 //-------
195 $this->menu = 1; // This module add menu entries. They are coded into menu manager.
196
197
198 // Exports
199 //--------
200 $r = 0;
201
202 $r++;
203 $this->export_code[$r] = $this->rights_class.'_'.$r;
204 $this->export_label[$r] = 'CustomersOrdersAndOrdersLines'; // Translation key (used only if key ExportDataset_xxx_z not found)
205 $this->export_permission[$r] = array(array("commande", "commande", "export"));
206 $this->export_fields_array[$r] = array(
207 's.rowid' => "IdCompany", 's.nom' => 'CompanyName', 's.name_alias' => 'AliasNameShort', 'ps.nom' => 'ParentCompany', 's.code_client' => 'CustomerCode', 's.address' => 'Address', 's.zip' => 'Zip', 's.town' => 'Town', 'd.nom' => 'State', 'co.label' => 'Country',
208 'co.code' => "CountryCode", 's.phone' => 'Phone', 's.siren' => 'ProfId1', 's.siret' => 'ProfId2', 's.ape' => 'ProfId3', 's.idprof4' => 'ProfId4', 'c.rowid' => "Id",
209 'c.ref' => "Ref", 'c.ref_client' => "RefCustomer", 'c.fk_soc' => "IdCompany", 'c.date_creation' => "DateCreation", 'c.date_commande' => "OrderDate",
210 'c.date_livraison' => "DateDeliveryPlanned", 'c.amount_ht' => "Amount", 'c.total_ht' => "TotalHT",
211 'c.total_ttc' => "TotalTTC", 'c.facture' => "Billed", 'c.fk_statut' => 'Status', 'c.note_public' => "NotePublic", 'c.note_private' => "NotePrivate", 'sm.code' => 'SendingMethod',
212 'c.fk_user_author' => 'CreatedById', 'uc.login' => 'CreatedByLogin', 'c.fk_user_valid' => 'ValidatedById', 'uv.login' => 'ValidatedByLogin',
213 'pj.ref' => 'ProjectRef', 'cd.rowid' => 'LineId', 'cd.description' => "LineDescription", 'cd.product_type' => 'TypeOfLineServiceOrProduct',
214 'cd.tva_tx' => "LineVATRate", 'cd.qty' => "LineQty", 'cd.total_ht' => "LineTotalHT", 'cd.total_tva' => "LineTotalVAT", 'cd.total_ttc' => "LineTotalTTC",
215 'p.rowid' => 'ProductId', 'p.ref' => 'ProductRef', 'p.label' => 'ProductLabel',
216 'cir.label'=>'Source',
217 );
218 if (isModEnabled("multicurrency")) {
219 $this->export_fields_array[$r]['c.multicurrency_code'] = 'Currency';
220 $this->export_fields_array[$r]['c.multicurrency_tx'] = 'CurrencyRate';
221 $this->export_fields_array[$r]['c.multicurrency_total_ht'] = 'MulticurrencyAmountHT';
222 $this->export_fields_array[$r]['c.multicurrency_total_tva'] = 'MulticurrencyAmountVAT';
223 $this->export_fields_array[$r]['c.multicurrency_total_ttc'] = 'MulticurrencyAmountTTC';
224 }
225 // Add multicompany field
226 if (getDolGlobalString('MULTICOMPANY_ENTITY_IN_EXPORT_IF_SHARED')) {
227 $nbofallowedentities = count(explode(',', getEntity('commande')));
228 if (isModEnabled('multicompany') && $nbofallowedentities > 1) {
229 $this->export_fields_array[$r]['c.entity'] = 'Entity';
230 }
231 }
232 //$this->export_TypeFields_array[$r]=array(
233 // 's.rowid'=>"Numeric",'s.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','co.label'=>'List:c_country:label:label',
234 // 'co.code'=>'Text','s.phone'=>'Text','s.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','c.ref'=>"Text",'c.ref_client'=>"Text",
235 // 'c.date_creation'=>"Date",'c.date_commande'=>"Date",'c.amount_ht'=>"Numeric",'c.total_ht'=>"Numeric",
236 // 'c.total_ttc'=>"Numeric",'c.facture'=>"Boolean",'c.fk_statut'=>'Status','c.note_public'=>"Text",'c.date_livraison'=>'Date','cd.description'=>"Text",
237 // 'cd.product_type'=>'Boolean','cd.tva_tx'=>"Numeric",'cd.qty'=>"Numeric",'cd.total_ht'=>"Numeric",'cd.total_tva'=>"Numeric",'cd.total_ttc'=>"Numeric",
238 // 'p.rowid'=>'List:product:ref','p.ref'=>'Text','p.label'=>'Text'
239 //);
240 $this->export_TypeFields_array[$r] = array(
241 's.nom' => 'Text', 'ps.nom' => 'Text', 's.name_alias' => 'Text', 's.code_client' => 'Text', 's.address' => 'Text', 's.zip' => 'Text', 's.town' => 'Text', 'co.label' => 'List:c_country:label:label', 'co.code' => 'Text', 's.phone' => 'Text',
242 's.siren' => 'Text', 's.siret' => 'Text', 's.ape' => 'Text', 's.idprof4' => 'Text', 'c.ref' => "Text", 'c.ref_client' => "Text", 'c.date_creation' => "Date",
243 'c.date_commande' => "Date", 'c.date_livraison' => "Date", 'sm.code' => "Text", 'c.amount_ht' => "Numeric", 'c.total_ht' => "Numeric",
244 'c.total_ttc' => "Numeric", 'c.facture' => "Boolean", 'c.fk_statut' => 'Status', 'c.note_public' => "Text", 'c.note_private' => "Text", 'pj.ref' => 'Text',
245 'cd.description' => "Text", 'cd.product_type' => 'Boolean', 'cd.tva_tx' => "Numeric", 'cd.qty' => "Numeric", 'cd.total_ht' => "Numeric", 'cd.total_tva' => "Numeric",
246 'cd.total_ttc' => "Numeric", 'p.rowid' => 'List:product:ref::product', 'p.ref' => 'Text', 'p.label' => 'Text', 'd.nom' => 'Text',
247 'c.entity' => 'List:entity:label:rowid',
248 'cir.label'=>'Text',
249 );
250 $this->export_entities_array[$r] = array(
251 's.rowid' => "company", 's.nom' => 'company', 's.name_alias' => 'company', 'ps.nom' => 'company', 's.code_client' => 'company', 's.address' => 'company', 's.zip' => 'company', 's.town' => 'company', 'd.nom' => 'company', 'co.label' => 'company',
252 'co.code' => 'company', 's.phone' => 'company', 's.siren' => 'company', 's.ape' => 'company', 's.idprof4' => 'company', 's.siret' => 'company', 'c.rowid' => "order",
253 'c.ref' => "order", 'c.ref_client' => "order", 'c.fk_soc' => "order", 'c.date_creation' => "order", 'c.date_commande' => "order", 'c.amount_ht' => "order",
254 'c.total_ht' => "order", 'c.total_ttc' => "order", 'c.facture' => "order", 'c.fk_statut' => "order", 'c.note' => "order",
255 'c.date_livraison' => "order", 'sm.code' => "order", 'pj.ref' => 'project', 'cd.rowid' => 'order_line', 'cd.description' => "order_line",
256 'cd.product_type' => 'order_line', 'cd.tva_tx' => "order_line", 'cd.qty' => "order_line", 'cd.total_ht' => "order_line", 'cd.total_tva' => "order_line",
257 'cd.total_ttc' => "order_line", 'p.rowid' => 'product', 'p.ref' => 'product', 'p.label' => 'product'
258 );
259 $this->export_dependencies_array[$r] = array('order_line' => 'cd.rowid', 'product' => 'cd.rowid'); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
260 $keyforselect = 'commande';
261 $keyforelement = 'order';
262 $keyforaliasextra = 'extra';
263 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
264 $keyforselect = 'commandedet';
265 $keyforelement = 'order_line';
266 $keyforaliasextra = 'extra2';
267 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
268 $keyforselect = 'product';
269 $keyforelement = 'product';
270 $keyforaliasextra = 'extra3';
271 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
272 $keyforselect = 'societe';
273 $keyforelement = 'company';
274 $keyforaliasextra = 'extra4';
275 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
276 $this->export_sql_start[$r] = 'SELECT DISTINCT ';
277 $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'societe as s';
278 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe_extrafields as extra4 ON s.rowid = extra4.fk_object';
279 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe as ps ON ps.rowid = s.parent';
280 if (!empty($user) && !$user->hasRight('societe', 'client', 'voir')) {
281 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe_commerciaux as sc ON sc.fk_soc = s.rowid';
282 }
283 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_departements as d ON s.fk_departement = d.rowid';
284 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_country as co ON s.fk_pays = co.rowid,';
285 $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'commande as c';
286 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_shipment_mode as sm ON c.fk_shipping_method = sm.rowid';
287 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_input_reason as cir ON cir.rowid = c.fk_input_reason';
288 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'projet as pj ON c.fk_projet = pj.rowid';
289 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user as uc ON c.fk_user_author = uc.rowid';
290 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user as uv ON c.fk_user_valid = uv.rowid';
291 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'commande_extrafields as extra ON c.rowid = extra.fk_object';
292 $this->export_sql_end[$r] .= ' , '.MAIN_DB_PREFIX.'commandedet as cd';
293 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'commandedet_extrafields as extra2 on cd.rowid = extra2.fk_object';
294 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on cd.fk_product = p.rowid';
295 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product_extrafields as extra3 on p.rowid = extra3.fk_object';
296 $this->export_sql_end[$r] .= ' WHERE c.fk_soc = s.rowid AND c.rowid = cd.fk_commande';
297 $this->export_sql_end[$r] .= ' AND c.entity IN ('.getEntity('commande').')';
298 if (!empty($user) && !$user->hasRight('societe', 'client', 'voir')) {
299 $this->export_sql_end[$r] .= ' AND sc.fk_user = '.(empty($user) ? 0 : $user->id);
300 }
301 $parameters = array();
302 $hookmanager->executeHooks('printExportWhere', $parameters, $this); // Note that $action and $object may have been modified by hook
303 $this->export_sql_end[$r] .= $hookmanager->resPrint;
304
305 // Imports
306 //--------
307 $r = 0;
308 //Import Order Header
309
310 $r++;
311 $this->import_code[$r] = 'commande_'.$r;
312 $this->import_label[$r] = 'CustomersOrders';
313 $this->import_icon[$r] = $this->picto;
314 $this->import_entities_array[$r] = array();
315 $this->import_tables_array[$r] = array('c' => MAIN_DB_PREFIX.'commande', 'extra' => MAIN_DB_PREFIX.'commande_extrafields');
316 $this->import_tables_creator_array[$r] = array('c' => 'fk_user_author'); // Fields to store import user id
317 $import_sample = array('c.facture' => '0 or 1');
318 $this->import_fields_array[$r] = array(
319 'c.ref' => 'Ref*',
320 'c.ref_client' => 'RefCustomer',
321 'c.fk_soc' => 'ThirdPartyName*',
322 'c.fk_projet' => 'ProjectId',
323 'c.date_creation' => 'DateCreation',
324 'c.date_valid' => 'DateValidation',
325 'c.date_commande' => 'OrderDate*',
326 'c.fk_user_modif' => 'ModifiedById',
327 'c.fk_user_valid' => 'ValidatedById',
328 'c.total_tva' => 'TotalTVA',
329 'c.total_ht' => 'TotalHT',
330 'c.total_ttc' => 'TotalTTC',
331 'c.note_private' => 'NotePrivate',
332 'c.note_public' => 'Note',
333 'c.facture' => 'Billed',
334 'c.date_livraison' => 'DeliveryDate',
335 'c.fk_cond_reglement' => 'Payment Condition',
336 'c.fk_mode_reglement' => 'Payment Mode',
337 'c.model_pdf' => 'Model',
338 'c.fk_statut' => 'Status*'
339 );
340
341 if (isModEnabled("multicurrency")) {
342 $this->import_fields_array[$r]['c.multicurrency_code'] = 'Currency';
343 $this->import_fields_array[$r]['c.multicurrency_tx'] = 'CurrencyRate';
344 $this->import_fields_array[$r]['c.multicurrency_total_ht'] = 'MulticurrencyAmountHT';
345 $this->import_fields_array[$r]['c.multicurrency_total_tva'] = 'MulticurrencyAmountVAT';
346 $this->import_fields_array[$r]['c.multicurrency_total_ttc'] = 'MulticurrencyAmountTTC';
347 }
348 $import_extrafield_sample = array();
349 $keyforselect = 'commande';
350 $keyforelement = 'order';
351 $keyforaliasextra = 'extra';
352 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinimport.inc.php';
353
354 $this->import_fieldshidden_array[$r] = array('extra.fk_object' => 'lastrowid-'.MAIN_DB_PREFIX.'commande');
355 $this->import_regex_array[$r] = array(
356 'c.multicurrency_code' => 'code@'.MAIN_DB_PREFIX.'multicurrency'
357 );
358 $this->import_examplevalues_array[$r] = array_merge($import_sample, $import_extrafield_sample);
359 $this->import_updatekeys_array[$r] = array('c.ref' => 'Ref');
360 $this->import_convertvalue_array[$r] = array(
361 'c.ref' => array(
362 'rule' => 'getrefifauto',
363 'class' => getDolGlobalString('COMMANDE_ADDON', 'mod_commande_marbre'),
364 'path' => "/core/modules/commande/".getDolGlobalString('COMMANDE_ADDON', 'mod_commande_marbre').'.php',
365 'classobject' => 'Commande',
366 'pathobject' => '/commande/class/commande.class.php',
367 ),
368 'c.fk_soc' => array(
369 'rule' => 'fetchidfromref',
370 'file' => '/societe/class/societe.class.php',
371 'class' => 'Societe',
372 'method' => 'fetch',
373 'element' => 'ThirdParty'
374 ),
375 'c.fk_user_valid' => array(
376 'rule' => 'fetchidfromref',
377 'file' => '/user/class/user.class.php',
378 'class' => 'User',
379 'method' => 'fetch',
380 'element' => 'user'
381 ),
382 'c.fk_mode_reglement' => array(
383 'rule' => 'fetchidfromcodeorlabel',
384 'file' => '/compta/paiement/class/cpaiement.class.php',
385 'class' => 'Cpaiement',
386 'method' => 'fetch',
387 'element' => 'cpayment'
388 ),
389 );
390
391 //Import Order Lines
392 $r++;
393 $this->import_code[$r] = 'commande_lines_'.$r;
394 $this->import_label[$r] = 'SaleOrderLines';
395 $this->import_icon[$r] = $this->picto;
396 $this->import_entities_array[$r] = array();
397 $this->import_tables_array[$r] = array('cd' => MAIN_DB_PREFIX.'commandedet', 'extra' => MAIN_DB_PREFIX.'commandedet_extrafields');
398 $this->import_fields_array[$r] = array(
399 'cd.fk_commande' => 'CustomerOrder*',
400 'cd.fk_parent_line' => 'ParentLine',
401 'cd.fk_product' => 'IdProduct',
402 'cd.description' => 'LineDescription',
403 'cd.tva_tx' => 'LineVATRate',
404 'cd.qty' => 'LineQty',
405 'cd.remise_percent' => 'Reduc. Percent',
406 'cd.price' => 'Price',
407 'cd.subprice' => 'Sub Price',
408 'cd.total_ht' => 'LineTotalHT',
409 'cd.total_tva' => 'LineTotalVAT',
410 'cd.total_ttc' => 'LineTotalTTC',
411 'cd.product_type' => 'TypeOfLineServiceOrProduct',
412 'cd.date_start' => 'Start Date',
413 'cd.date_end' => 'End Date',
414 'cd.buy_price_ht' => 'LineBuyPriceHT',
415 'cd.rang' => 'LinePosition'
416 );
417
418 if (isModEnabled("multicurrency")) {
419 $this->import_fields_array[$r]['cd.multicurrency_code'] = 'Currency';
420 $this->import_fields_array[$r]['cd.multicurrency_subprice'] = 'CurrencyRate';
421 $this->import_fields_array[$r]['cd.multicurrency_total_ht'] = 'MulticurrencyAmountHT';
422 $this->import_fields_array[$r]['cd.multicurrency_total_tva'] = 'MulticurrencyAmountVAT';
423 $this->import_fields_array[$r]['cd.multicurrency_total_ttc'] = 'MulticurrencyAmountTTC';
424 }
425
426 $import_extrafield_sample = array();
427 $keyforselect = 'commandedet';
428 $keyforelement = 'orderline';
429 $keyforaliasextra = 'extra';
430 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinimport.inc.php';
431
432 $this->import_fieldshidden_array[$r] = ['extra.fk_object' => 'lastrowid-'.MAIN_DB_PREFIX.'commandedet'];
433 $this->import_regex_array[$r] = [
434 'cd.product_type' => '[0|1]$',
435 'cd.fk_product' => 'rowid@'.MAIN_DB_PREFIX.'product',
436 'cd.multicurrency_code' => 'code@'.MAIN_DB_PREFIX.'multicurrency'
437 ];
438 $this->import_updatekeys_array[$r] = ['cd.fk_commande' => 'Sales Order Id', 'cd.fk_product' => 'Product Id'];
439 $this->import_convertvalue_array[$r] = [
440 'cd.fk_commande' => [
441 'rule' => 'fetchidfromref',
442 'file' => '/commande/class/commande.class.php',
443 'class' => 'Commande',
444 'method' => 'fetch',
445 'element' => 'commande'
446 ],
447 ];
448 }
449
450
459 public function init($options = '')
460 {
461 global $conf, $langs;
462
463 $this->_load_tables('/install/mysql/', 'commande');
464
465 // Permissions
466 $this->remove($options);
467
468 //ODT template
469 $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/orders/template_order.odt';
470 $dirodt = DOL_DATA_ROOT.($conf->entity > 1 ? '/'.$conf->entity : '').'/doctemplates/orders';
471 $dest = $dirodt.'/template_order.odt';
472
473 if (file_exists($src) && !file_exists($dest)) {
474 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
475 dol_mkdir($dirodt);
476 $result = dol_copy($src, $dest, '0', 0);
477 if ($result < 0) {
478 $langs->load("errors");
479 $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
480 return 0;
481 }
482 }
483
484 $sql = array(
485 "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[0][2])."' AND type = 'order' AND entity = ".((int) $conf->entity),
486 "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."', 'order', ".((int) $conf->entity).")"
487 );
488
489 return $this->_init($sql, $options);
490 }
491}
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_load_tables($reldir, $onlywithsuffix='')
Create tables and keys required by module:
Class to describe module Sales Orders.
__construct($db)
Constructor.
init($options='')
Function called when module is enabled.
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.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
dol_copy($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=0)
Copy a file to another file.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:133