29require_once DOL_DOCUMENT_ROOT.
"/core/modules/DolibarrModules.class.php";
45 $langs->load(
"ticket");
52 $this->numero = 56000;
54 $this->rights_class =
'ticket';
58 $this->family =
"crm";
60 $this->module_position =
'60';
64 $this->
name = preg_replace(
'/^mod/i',
'', get_class($this));
68 $this->
description =
"Incident/support ticket management";
70 $this->version =
'dolibarr';
73 $this->const_name =
'MAIN_MODULE_'.strtoupper($this->
name);
79 $this->picto =
'ticket';
84 $this->module_parts = [
95 $this->config_page_url = [
"ticket.php"];
98 $this->hidden =
false;
99 $this->depends = [
'modAgenda'];
100 $this->requiredby = [];
101 $this->conflictwith = [];
102 $this->langfiles = [
"ticket"];
108 $default_footer = $langs->trans(
'TicketMessageMailFooterText',
getDolGlobalString(
'MAIN_INFO_SOCIETE_NOM'));
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],
134 if (!isset(
$conf->ticket->enabled)) {
136 $conf->ticket->enabled = 0;
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',
151 'help' => [
'code' => $langs->trans(
'EnterAnyCode'),
'use_default' => $langs->trans(
'EnterYesOrNo')],
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',
168 'code' => $langs->trans(
'EnterAnyCode'),
169 'use_default' => $langs->trans(
'EnterYesOrNo'),
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',
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'),
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',
208 'code' => $langs->trans(
'EnterAnyCode'),
209 'use_default' => $langs->trans(
'Enter0or1'),
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'],
229 $this->rights[$r][0] = 56001;
230 $this->rights[$r][1] =
"Read ticket";
231 $this->rights[$r][2] =
'r';
232 $this->rights[$r][3] = 0;
233 $this->rights[$r][4] =
'read';
236 $this->rights[$r][0] = 56002;
237 $this->rights[$r][1] =
"Create les tickets";
238 $this->rights[$r][2] =
'w';
239 $this->rights[$r][3] = 0;
240 $this->rights[$r][4] =
'write';
243 $this->rights[$r][0] = 56003;
244 $this->rights[$r][1] =
"Delete les tickets";
245 $this->rights[$r][2] =
'd';
246 $this->rights[$r][3] = 0;
247 $this->rights[$r][4] =
'delete';
250 $this->rights[$r][0] = 56004;
251 $this->rights[$r][1] =
"Manage tickets";
253 $this->rights[$r][3] = 0;
254 $this->rights[$r][4] =
'manage_advance';
257 $this->rights[$r][0] = 56006;
258 $this->rights[$r][1] =
"Export ticket";
260 $this->rights[$r][3] = 0;
261 $this->rights[$r][4] =
'export';
278 'fk_menu' =>
'fk_mainmenu=ticket',
281 'prefix' =>
img_picto(
'', $this->picto,
'class="paddingright pictofixedwidth em092"'),
282 'mainmenu' =>
'ticket',
283 'leftmenu' =>
'ticket',
284 'url' =>
'/ticket/index.php',
287 'enabled' =>
'isModEnabled("ticket")',
288 'perms' =>
'$user->hasRight("ticket","read")',
295 'fk_menu' =>
'fk_mainmenu=ticket,fk_leftmenu=ticket',
297 'titre' =>
'NewTicket',
298 'mainmenu' =>
'ticket',
299 'url' =>
'/ticket/card.php?action=create&mode=init',
302 'enabled' =>
'isModEnabled("ticket")',
303 'perms' =>
'$user->hasRight("ticket", "write")',
310 'fk_menu' =>
'fk_mainmenu=ticket,fk_leftmenu=ticket',
313 'mainmenu' =>
'ticket',
314 'leftmenu' =>
'ticketlist',
315 'url' =>
'/ticket/list.php?search_fk_statut=openall',
318 'enabled' =>
'isModEnabled("ticket")',
319 'perms' =>
'$user->hasRight("ticket","read")',
326 'fk_menu' =>
'fk_mainmenu=ticket,fk_leftmenu=ticket',
328 'titre' =>
'MenuTicketMyAssign',
329 'mainmenu' =>
'ticket',
330 'leftmenu' =>
'ticketmy',
331 'url' =>
'/ticket/list.php?mode=mine&search_fk_statut=openall',
334 'enabled' =>
'isModEnabled("ticket")',
335 'perms' =>
'$user->hasRight("ticket","read")',
342 'fk_menu' =>
'fk_mainmenu=ticket,fk_leftmenu=ticket',
344 'titre' =>
'Statistics',
345 'mainmenu' =>
'ticket',
346 'url' =>
'/ticket/stats/index.php',
349 'enabled' =>
'isModEnabled("ticket")',
350 'perms' =>
'$user->hasRight("ticket","read")',
357 'fk_menu' =>
'fk_mainmenu=ticket,fk_leftmenu=ticket',
359 'titre' =>
'Categories',
360 'mainmenu' =>
'ticket',
361 'url' =>
'/categories/categorie_list.php?type=12',
364 'enabled' =>
'isModEnabled("ticket") && isModEnabled("categorie") && getDolGlobalString("CATEGORY_EDIT_IN_MENU_NOT_IN_POPUP")',
365 'perms' =>
'$user->hasRight("ticket","read")',
376 $langs->load(
"ticket");
377 $this->export_code[$r] = $this->rights_class.
'_'.$r;
378 $this->export_label[$r] =
'ExportDataset_ticket_1';
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').
')';
405 public function init($options =
'')
407 global
$conf, $langs;
409 $result = $this->
_load_tables(
'/install/mysql/',
'ticket');
415 $this->
remove($options);
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';
422 if (file_exists($src) && !file_exists($dest)) {
423 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
425 $result =
dol_copy($src, $dest,
'0', 0);
427 $langs->load(
"errors");
428 $this->error = $langs->trans(
'ErrorFailToCopyFile', $src, $dest);
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],
439 "DELETE FROM ".$this->db->prefix().
"document_model WHERE nom = 'TICKET_ADDON_PDF_ODT_PATH' AND type = 'ticket' AND entity = ".((int)
$conf->entity),
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],
444 return $this->
_init($sql, $options);
_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.
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.