dolibarr 24.0.0-beta
modTicket.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2013-2018 Jean-François FERRY <hello@librethic.io>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024-2026 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 *
19 * Module descriptor for ticket system
20 */
21
29require_once DOL_DOCUMENT_ROOT."/core/modules/DolibarrModules.class.php";
30
31
36{
42 public function __construct($db)
43 {
44 global $langs, $conf;
45 $langs->load("ticket");
46
47 $this->db = $db;
48
49 // Id for module (must be unique).
50 // Use a free id here
51 // (See in Home -> System information -> Dolibarr for list of used modules id).
52 $this->numero = 56000;
53 // Key text used to identify module (for permissions, menus, etc...)
54 $this->rights_class = 'ticket';
55
56 // Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
57 // It is used to group modules in module setup page
58 $this->family = "crm";
59 // Module position in the family
60 $this->module_position = '60';
61 // Module label (no space allowed)
62 // used if translation string 'ModuleXXXName' not found
63 // (where XXX is value of numeric property 'numero' of module)
64 $this->name = preg_replace('/^mod/i', '', get_class($this));
65 // Module description
66 // used if translation string 'ModuleXXXDesc' not found
67 // (where XXX is value of numeric property 'numero' of module)
68 $this->description = "Incident/support ticket management";
69 // Possible values for version are: 'development', 'experimental' or version
70 $this->version = 'dolibarr';
71 // Key used in llx_const table to save module status enabled/disabled
72 // (where MYMODULE is value of property name of module in uppercase)
73 $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
74 // Name of image file used for this module.
75 // If file is in theme/yourtheme/img directory under name object_pictovalue.png
76 // use this->picto='pictovalue'
77 // If file is in module/img directory under name object_pictovalue.png
78 // use this->picto='pictovalue@module'
79 $this->picto = 'ticket'; // mypicto@ticket
80 // Defined all module parts (triggers, login, substitutions, menus, css, etc...)
81 // for default path (eg: /ticket/core/xxxxx) (0=disable, 1=enable)
82 // for specific path of parts (eg: /ticket/core/modules/barcode)
83 // for specific css file (eg: /ticket/css/ticket.css.php)
84 $this->module_parts = [
85 // Set this to 1 if module has its own trigger directory
86 'triggers' => 1,
87 ];
88
89 // Data directories to create when module is enabled.
90 // Example: this->dirs = ["/ticket/temp"];
91 $this->dirs = [];
92
93 // Config pages. Put here list of php pages
94 // stored into ticket/admin directory, used to setup module.
95 $this->config_page_url = ["ticket.php"];
96
97 // Dependencies
98 $this->hidden = false; // A condition to hide module
99 $this->depends = ['modAgenda']; // List of module class names as string that must be enabled if this module is enabled
100 $this->requiredby = []; // List of module ids to disable if this one is disabled
101 $this->conflictwith = []; // List of module class names as string this module is in conflict with
102 $this->langfiles = ["ticket"];
103
104 // Constants
105 // List of particular constants to add when module is enabled
106 // (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive)
107 // Example:
108 $default_footer = $langs->trans('TicketMessageMailFooterText', getDolGlobalString('MAIN_INFO_SOCIETE_NOM'));
109 $this->const = [
110 ['TICKET_ENABLE_PUBLIC_INTERFACE', 'chaine', '0', 'Enable ticket public interface', 0],
111 ['TICKET_ADDON', 'chaine', 'mod_ticket_simple', 'Ticket ref module', 0],
112 ['TICKET_ADDON_PDF_ODT_PATH', 'chaine', 'DOL_DATA_ROOT'.($conf->entity > 1 ? '/'.$conf->entity : '').'/doctemplates/tickets', 'Ticket templates ODT/ODS directory for templates', 0],
113 ['TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND', 'chaine', 0, 'Automatically mark ticket as read when created from backend', 0],
114 ['TICKET_DELAY_BEFORE_FIRST_RESPONSE', 'chaine', '0', 'Maximum wanted elapsed time before a first answer to a ticket (in hours). Display a warning in tickets list if not respected.', 0],
115 ['TICKET_DELAY_SINCE_LAST_RESPONSE', 'chaine', '0', 'Maximum wanted elapsed time between two answers on the same ticket (in hours). Display a warning in tickets list if not respected.', 0],
116 ['TICKET_NOTIFY_AT_CLOSING', 'chaine', '0', 'Default notify contacts when closing a module', 0],
117 ['TICKET_PRODUCT_CATEGORY', 'chaine', 0, 'The category of product that is being used to find contract to link to created ticket', 0],
118 ['TICKET_NOTIFICATION_EMAIL_FROM', 'chaine', getDolGlobalString('MAIN_MAIL_EMAIL_FROM'), 'Email to use by default as sender for messages sent from Dolibarr', 0],
119 ['TICKET_MESSAGE_MAIL_INTRO', 'chaine', $langs->trans('TicketMessageMailIntroText'), 'Introduction text of ticket replies sent from Dolibarr', 0],
120 ['TICKET_MESSAGE_MAIL_SIGNATURE', 'chaine', $default_footer, 'Signature to use by default for messages sent from Dolibarr', 0],
121 ['MAIN_EMAILCOLLECTOR_MAIL_WITHOUT_HEADER', 'chaine', "1", 'Disable the rendering of headers in tickets', 0],
122 ['MAIN_SECURITY_ENABLECAPTCHA_TICKET', 'chaine', getDolGlobalInt('MAIN_SECURITY_ENABLECAPTCHA_TICKET'), 'Enable captcha code by default', 0],
123 ['TICKET_SHOW_COMPANY_LOGO', 'chaine', getDolGlobalInt('TICKET_SHOW_COMPANY_LOGO', 1), 'Enable logo header on ticket public page', 0],
124 ['TICKET_SHOW_COMPANY_FOOTER', 'chaine', getDolGlobalInt('TICKET_SHOW_COMPANY_FOOTER', 1), 'Enable footer on ticket public page', 0],
125 ];
126
127 /*
128 $this->tabs = [
129 'thirdparty:+ticket:Tickets:ticket:$user->hasRight("ticket","read"):/ticket/list.php?socid=__ID__',
130 ];
131 */
132
133 // Dictionaries
134 if (!isset($conf->ticket->enabled)) {
135 $conf->ticket = new stdClass();
136 $conf->ticket->enabled = 0;
137 }
138
139 // Dictionary of ticket types
141 [
142 'name' => 'c_ticket_type',
143 'lib' => 'TicketDictType',
144 'sql' => 'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.entity FROM '.$this->db->prefix().'c_ticket_type as f WHERE f.entity IN ('.getEntity('c_ticket_type').')',
145 'sqlsort' => 'pos ASC',
146 'field' => 'code,label,pos,use_default',
147 'fieldvalue' => 'code,label,pos,use_default',
148 'fieldinsert' => 'code,label,pos,use_default,entity',
149 'rowid' => 'rowid',
150 'cond' => isModEnabled('ticket'),
151 'help' => ['code' => $langs->trans('EnterAnyCode'), 'use_default' => $langs->trans('EnterYesOrNo')],
152 ]
153 );
154
155 // Dictionary of ticket severities
157 [
158 'name' => 'c_ticket_severity',
159 'lib' => 'TicketDictSeverity',
160 'sql' => 'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.entity FROM '.$this->db->prefix().'c_ticket_severity as f WHERE f.entity IN ('.getEntity('c_ticket_severity').')',
161 'sqlsort' => 'pos ASC',
162 'field' => 'code,label,pos,use_default',
163 'fieldvalue' => 'code,label,pos,use_default',
164 'fieldinsert' => 'code,label,pos,use_default,entity',
165 'rowid' => 'rowid',
166 'cond' => isModEnabled('ticket'),
167 'help' => [
168 'code' => $langs->trans('EnterAnyCode'),
169 'use_default' => $langs->trans('EnterYesOrNo'),
170 ],
171 ]
172 );
173
174 // Dictionary of ticket categories
176 [
177 'name' => 'c_ticket_category',
178 'lib' => 'TicketDictCategory',
179 'sql' => 'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.public, f.fk_parent, f.entity FROM '.$this->db->prefix().'c_ticket_category as f WHERE f.entity IN ('.getEntity('c_ticket_category').')',
180 'sqlsort' => 'pos ASC',
181 'field' => 'code,label,pos,use_default,public,fk_parent',
182 'fieldvalue' => 'code,label,pos,use_default,public,fk_parent',
183 'fieldinsert' => 'code,label,pos,use_default,public,fk_parent,entity',
184 'rowid' => 'rowid',
185 'cond' => isModEnabled('ticket'),
186 'help' => [
187 'code' => $langs->trans('EnterAnyCode'),
188 'use_default' => $langs->trans('EnterYesOrNo'),
189 'public' => $langs->trans('Enter0or1').'<br>'.$langs->trans('TicketGroupIsPublicDesc'),
190 'fk_parent' => $langs->trans('IfThisCategoryIsChildOfAnother'),
191 ],
192 ]
193 );
194
195 // Dictionary of ticket resolutions (apparently unused except if TICKET_ENABLE_RESOLUTION is on)
197 [
198 'name' => 'c_ticket_resolution',
199 'lib' => 'TicketDictResolution',
200 'sql' => 'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.entity FROM '.$this->db->prefix().'c_ticket_resolution as f WHERE f.entity IN ('.getEntity('c_ticket_resolution').')',
201 'sqlsort' => 'pos ASC',
202 'field' => 'code,label,pos,use_default',
203 'fieldvalue' => 'code,label,pos,use_default',
204 'fieldinsert' => 'code,label,pos,use_default,entity',
205 'rowid' => 'rowid',
206 'cond' => isModEnabled('ticket') && getDolGlobalString('TICKET_ENABLE_RESOLUTION'),
207 'help' => [
208 'code' => $langs->trans('EnterAnyCode'),
209 'use_default' => $langs->trans('Enter0or1'),
210 ],
211 ]
212 );
213
214 // Boxes
215 // Add here list of php file(s) stored in core/boxes that contains class to show a box.
216 $this->boxes = [
217 ['file' => 'box_last_ticket.php', 'enabledbydefaulton' => 'Home'],
218 ['file' => 'box_last_modified_ticket.php', 'enabledbydefaulton' => 'Home'],
219 ['file' => 'box_graph_ticket_by_severity.php', 'enabledbydefaulton' => 'ticketindex'],
220 ['file' => 'box_graph_nb_ticket_last_x_days.php', 'enabledbydefaulton' => 'ticketindex'],
221 ['file' => 'box_graph_nb_tickets_type.php', 'enabledbydefaulton' => 'ticketindex'],
222 ['file' => 'box_new_vs_close_ticket.php', 'enabledbydefaulton' => 'ticketindex'],
223 ];
224
225 // Permissions
226 $this->rights = []; // Permission array used by this module
227
228 $r = 0;
229 $this->rights[$r][0] = 56001; // id de la permission
230 $this->rights[$r][1] = "Read ticket"; // libelle de la permission
231 $this->rights[$r][2] = 'r'; // type de la permission (deprecated)
232 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
233 $this->rights[$r][4] = 'read';
234
235 $r++;
236 $this->rights[$r][0] = 56002; // id de la permission
237 $this->rights[$r][1] = "Create les tickets"; // libelle de la permission
238 $this->rights[$r][2] = 'w'; // type de la permission (deprecated)
239 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
240 $this->rights[$r][4] = 'write';
241
242 $r++;
243 $this->rights[$r][0] = 56003; // id de la permission
244 $this->rights[$r][1] = "Delete les tickets"; // libelle de la permission
245 $this->rights[$r][2] = 'd'; // type de la permission (deprecated)
246 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
247 $this->rights[$r][4] = 'delete';
248
249 $r++;
250 $this->rights[$r][0] = 56004; // id de la permission
251 $this->rights[$r][1] = "Manage tickets"; // libelle de la permission
252 //$this->rights[$r][2] = 'd'; // type de la permission (deprecated)
253 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
254 $this->rights[$r][4] = 'manage_advance';
255
256 $r++;
257 $this->rights[$r][0] = 56006; // id de la permission
258 $this->rights[$r][1] = "Export ticket"; // libelle de la permission
259 //$this->rights[$r][2] = 'd'; // type de la permission (deprecated)
260 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
261 $this->rights[$r][4] = 'export';
262
263 /* Seems not used and in conflict with societe->client->voir (see all thirdparties)
264 $r++;
265 $this->rights[$r][0] = 56005; // id de la permission
266 $this->rights[$r][1] = 'See all tickets, even if not assigned to (not effective for external users, always restricted to the thirdpardy they depends on)'; // libelle de la permission
267 $this->rights[$r][2] = 'r'; // type de la permission (deprecated)
268 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
269 $this->rights[$r][4] = 'view';
270 $this->rights[$r][5] = 'all';
271 */
272
273 // Main menu entries
274 $this->menu = []; // List of menus to add
275 $r = 0;
276
277 $this->menu[$r] = [
278 'fk_menu' => 'fk_mainmenu=ticket',
279 'type' => 'left',
280 'titre' => 'Ticket',
281 'prefix' => img_picto('', $this->picto, 'class="paddingright pictofixedwidth em092"'),
282 'mainmenu' => 'ticket',
283 'leftmenu' => 'ticket',
284 'url' => '/ticket/index.php',
285 'langs' => 'ticket',
286 'position' => 101,
287 'enabled' => 'isModEnabled("ticket")',
288 'perms' => '$user->hasRight("ticket","read")',
289 'target' => '',
290 'user' => 2,
291 ];
292 $r++;
293
294 $this->menu[$r] = [
295 'fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
296 'type' => 'left',
297 'titre' => 'NewTicket',
298 'mainmenu' => 'ticket',
299 'url' => '/ticket/card.php?action=create&mode=init',
300 'langs' => 'ticket',
301 'position' => 102,
302 'enabled' => 'isModEnabled("ticket")',
303 'perms' => '$user->hasRight("ticket", "write")',
304 'target' => '',
305 'user' => 2,
306 ];
307 $r++;
308
309 $this->menu[$r] = [
310 'fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
311 'type' => 'left',
312 'titre' => 'List',
313 'mainmenu' => 'ticket',
314 'leftmenu' => 'ticketlist',
315 'url' => '/ticket/list.php?search_fk_statut=openall',
316 'langs' => 'ticket',
317 'position' => 103,
318 'enabled' => 'isModEnabled("ticket")',
319 'perms' => '$user->hasRight("ticket","read")',
320 'target' => '',
321 'user' => 2,
322 ];
323 $r++;
324
325 $this->menu[$r] = [
326 'fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
327 'type' => 'left',
328 'titre' => 'MenuTicketMyAssign',
329 'mainmenu' => 'ticket',
330 'leftmenu' => 'ticketmy',
331 'url' => '/ticket/list.php?mode=mine&search_fk_statut=openall',
332 'langs' => 'ticket',
333 'position' => 105,
334 'enabled' => 'isModEnabled("ticket")',
335 'perms' => '$user->hasRight("ticket","read")',
336 'target' => '',
337 'user' => 0,
338 ];
339 $r++;
340
341 $this->menu[$r] = [
342 'fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
343 'type' => 'left',
344 'titre' => 'Statistics',
345 'mainmenu' => 'ticket',
346 'url' => '/ticket/stats/index.php',
347 'langs' => 'ticket',
348 'position' => 107,
349 'enabled' => 'isModEnabled("ticket")',
350 'perms' => '$user->hasRight("ticket","read")',
351 'target' => '',
352 'user' => 0,
353 ];
354 $r++;
355
356 $this->menu[$r] = [
357 'fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
358 'type' => 'left',
359 'titre' => 'Categories',
360 'mainmenu' => 'ticket',
361 'url' => '/categories/categorie_list.php?type=12',
362 'langs' => 'ticket',
363 'position' => 107,
364 'enabled' => 'isModEnabled("ticket") && isModEnabled("categorie") && getDolGlobalString("CATEGORY_EDIT_IN_MENU_NOT_IN_POPUP")',
365 'perms' => '$user->hasRight("ticket","read")',
366 'target' => '',
367 'user' => 0,
368 ];
369 $r++;
370
371 // Exports
372 //--------
373 $r = 1;
374
375 // Export list of tickets and attributes
376 $langs->load("ticket");
377 $this->export_code[$r] = $this->rights_class.'_'.$r;
378 $this->export_label[$r] = 'ExportDataset_ticket_1'; // Translation key (used only if key ExportDataset_xxx_z not found)
379 $this->export_permission[$r] = [["ticket", "export"]];
380 $this->export_icon[$r] = 'ticket';
381 $keyforclass = 'Ticket';
382 $keyforclassfile = '/ticket/class/ticket.class.php';
383 $keyforelement = 'ticket';
384 include DOL_DOCUMENT_ROOT.'/core/commonfieldsinexport.inc.php';
385 $keyforselect = 'ticket';
386 $keyforaliasextra = 'extra';
387 $keyforelement = 'ticket';
388 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
389 $this->export_sql_start[$r] = 'SELECT DISTINCT ';
390 $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'ticket as t';
391 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'ticket_extrafields as extra on (t.rowid = extra.fk_object)';
392 $this->export_sql_end[$r] .= ' WHERE 1 = 1';
393 $this->export_sql_end[$r] .= ' AND t.entity IN ('.getEntity('ticket').')';
394 $r++;
395 }
396
405 public function init($options = '')
406 {
407 global $conf, $langs;
408
409 $result = $this->_load_tables('/install/mysql/', 'ticket');
410 if ($result < 0) {
411 return -1; // Do not activate module if error 'not allowed' returned when loading module SQL queries (the _load_table run sql with run_sql with the error allowed parameter set to 'default')
412 }
413
414 // Permissions
415 $this->remove($options);
416
417 // ODT template
418 $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/tickets/template_ticket.odt';
419 $dirodt = DOL_DATA_ROOT.($conf->entity > 1 ? '/'.$conf->entity : '').'/doctemplates/tickets';
420 $dest = $dirodt.'/template_ticket.odt';
421
422 if (file_exists($src) && !file_exists($dest)) {
423 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
424 dol_mkdir($dirodt);
425 $result = dol_copy($src, $dest, '0', 0);
426 if ($result < 0) {
427 $langs->load("errors");
428 $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
429 return 0;
430 }
431 }
432
433 $sql = [
434 ["sql" => "INSERT INTO ".$this->db->prefix()."c_type_contact(rowid, element, source, code, libelle, active ) values (110120, 'ticket', 'internal', 'SUPPORTTEC', 'Utilisateur assigné au ticket', 1);", "ignoreerror" => 1],
435 ["sql" => "INSERT INTO ".$this->db->prefix()."c_type_contact(rowid, element, source, code, libelle, active ) values (110121, 'ticket', 'internal', 'CONTRIBUTOR', 'Intervenant', 1);", "ignoreerror" => 1],
436 ["sql" => "INSERT INTO ".$this->db->prefix()."c_type_contact(rowid, element, source, code, libelle, active ) values (110122, 'ticket', 'external', 'SUPPORTCLI', 'Contact client suivi incident', 1);", "ignoreerror" => 1],
437 ["sql" => "INSERT INTO ".$this->db->prefix()."c_type_contact(rowid, element, source, code, libelle, active ) values (110123, 'ticket', 'external', 'CONTRIBUTOR', 'Intervenant', 1);", "ignoreerror" => 1],
438 // remove old settings
439 "DELETE FROM ".$this->db->prefix()."document_model WHERE nom = 'TICKET_ADDON_PDF_ODT_PATH' AND type = 'ticket' AND entity = ".((int) $conf->entity),
440 // activate default odt templates
441 ["sql" => "INSERT INTO ".$this->db->prefix()."document_model (nom, type, libelle, entity, description) VALUES('generic_ticket_odt','ticket','ODT templates',".((int) $conf->entity).",'TICKET_ADDON_PDF_ODT_PATH');", "ignoreerror" => 1],
442 ];
443
444 return $this->_init($sql, $options);
445 }
446}
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_load_tables($reldir, $onlywithsuffix='')
Create tables and keys required by module:
declareNewDictionary($dictionaryArray, $langs='')
Helper method to declare dictionaries one at a time (rather than declaring dictionaries property by p...
Description and activation class for module Ticket.
init($options='')
Function called when module is enabled.
__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.
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.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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