dolibarr 21.0.0-beta
agenda.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) - 2013-2016 Jean-François FERRY <hello@librethic.io>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024 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
26// Load Dolibarr environment
27require '../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.'/ticket/class/actions_ticket.class.php';
29require_once DOL_DOCUMENT_ROOT.'/core/class/html.formticket.class.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/ticket.lib.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
33require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
34require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
35if (isModEnabled('project')) {
36 include_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
37 include_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
38 include_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
39}
40
49// Load translation files required by the page
50$langs->loadLangs(array('companies', 'other', 'ticket'));
51
52// Get parameters
53$id = GETPOSTINT('id');
54$ref = GETPOST('ref', 'alpha');
55$track_id = GETPOST('track_id', 'alpha', 3);
56$socid = GETPOSTINT('socid');
57$action = GETPOST('action', 'aZ09');
58
59// Store current page url
60$url_page_current = DOL_URL_ROOT.'/ticket/agenda.php';
61
62$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
63$sortfield = GETPOST('sortfield', 'aZ09comma');
64$sortorder = GETPOST('sortorder', 'aZ09comma');
65$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
66$page = is_numeric($page) ? $page : 0;
67$page = $page == -1 ? 0 : $page;
68if (!$sortfield) {
69 $sortfield = "a.datep,a.id";
70}
71if (!$sortorder) {
72 $sortorder = "DESC";
73}
74$offset = $limit * $page;
75$pageprev = $page - 1;
76$pagenext = $page + 1;
77
78if (GETPOST('actioncode', 'array')) {
79 $actioncode = GETPOST('actioncode', 'array', 3);
80 if (!count($actioncode)) {
81 $actioncode = '0';
82 }
83} else {
84 $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : getDolGlobalString('AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT'));
85}
86
87$search_rowid = GETPOST('search_rowid');
88$search_agenda_label = GETPOST('search_agenda_label');
89
90$hookmanager->initHooks(array('ticketagenda', 'globalcard')); // Note that conf->hooks_modules contains array
91$object = new Ticket($db);
92$object->fetch($id, $ref, $track_id);
93
94$extrafields = new ExtraFields($db);
95
96$extrafields->fetch_name_optionals_label($object->table_element);
97
98if (!$action) {
99 $action = 'view';
100}
101
102
103// Security check
104$id = GETPOSTINT("id");
105if ($user->socid > 0) {
106 $socid = $user->socid;
107}
108$result = restrictedArea($user, 'ticket', $object->id, '');
109
110// restrict access for externals users
111if ($user->socid > 0 && ($object->fk_soc != $user->socid)) {
113}
114// or for unauthorized internals users
115if (!$user->socid && (getDolGlobalString('TICKET_LIMIT_VIEW_ASSIGNED_ONLY') && $object->fk_user_assign != $user->id) && !$user->hasRight('ticket', 'manage')) {
117}
118
119$permissiontoadd = $user->hasRight('ticket', 'write');
120
121
122/*
123 * Actions
124 */
125
126$parameters = array('id' => $socid);
127$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
128if ($reshook < 0) {
129 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
130}
131
132if (empty($reshook)) {
133 // Set view style
134 $_SESSION['ticket-view-type'] = "list";
135}
136
137// Purge search criteria
138if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All test are required to be compatible with all browsers
139 $actioncode = '';
140 $search_agenda_label = '';
141}
142
143// Set parent company
144if ($action == 'set_thirdparty' && $user->hasRight('ticket', 'write')) {
145 if ($object->fetch(GETPOSTINT('id'), '', GETPOST('track_id', 'alpha')) >= 0) {
146 $result = $object->setCustomer(GETPOSTINT('editcustomer'));
147 $url = $_SERVER["PHP_SELF"].'?track_id='.GETPOST('track_id', 'alpha');
148 header("Location: ".$url);
149 exit();
150 }
151}
152
153
154/*
155 * View
156 */
157
158$form = new Form($db);
159$userstat = new User($db);
160$formticket = new FormTicket($db);
161
162$title = $langs->trans("Ticket").' - '.$object->ref.' '.$object->name;
163if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/ticketnameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->name) {
164 $title = $object->ref.' '.$object->name.' - '.$langs->trans("Info");
165}
166$help_url = 'EN:Module_Agenda_En|FR:Module_Agenda|DE:Modul_Terminplanung';
167
168llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-ticket page-card_agenda');
169
170if ($socid > 0) {
171 $object->fetch_thirdparty();
172 $head = societe_prepare_head($object->thirdparty);
173
174 print dol_get_fiche_head($head, 'ticket', $langs->trans("ThirdParty"), 0, 'company');
175
176 dol_banner_tab($object->thirdparty, 'socid', '', ($user->socid ? 0 : 1), 'rowid', 'nom');
177
178 print dol_get_fiche_end();
179}
180
181if (!$user->socid && getDolGlobalString('TICKET_LIMIT_VIEW_ASSIGNED_ONLY')) {
182 $object->next_prev_filter = "te.fk_user_assign:=:".((int) $user->id);
183} elseif ($user->socid > 0) {
184 $object->next_prev_filter = "te.fk_soc:=:".((int) $user->socid);
185}
186$head = ticket_prepare_head($object);
187
188print dol_get_fiche_head($head, 'tabTicketLogs', $langs->trans("Ticket"), 0, 'ticket');
189
190$morehtmlref = '<div class="refidno">';
191$morehtmlref .= $object->subject;
192// Author
193if ($object->fk_user_create > 0) {
194 $morehtmlref .= '<br>'.$langs->trans("CreatedBy").' : ';
195
196 $langs->load("users");
197 $fuser = new User($db);
198 $fuser->fetch($object->fk_user_create);
199 $morehtmlref .= $fuser->getNomUrl(-1);
200} elseif (!empty($object->email_msgid)) {
201 $morehtmlref .= '<br>'.$langs->trans("CreatedBy").' : ';
202 $morehtmlref .= img_picto('', 'email', 'class="paddingrightonly"');
203 $morehtmlref .= dol_escape_htmltag($object->origin_email).' <small class="hideonsmartphone opacitymedium">('.$form->textwithpicto($langs->trans("CreatedByEmailCollector"), $langs->trans("EmailMsgID").': '.$object->email_msgid).')</small>';
204} elseif (!empty($object->origin_email)) {
205 $morehtmlref .= '<br>'.$langs->trans("CreatedBy").' : ';
206 $morehtmlref .= img_picto('', 'email', 'class="paddingrightonly"');
207 $morehtmlref .= dol_escape_htmltag($object->origin_email).' <small class="hideonsmartphone opacitymedium">('.$langs->trans("CreatedByPublicPortal").')</small>';
208}
209
210// Thirdparty
211if (isModEnabled("societe")) {
212 $morehtmlref .= '<br>';
213 $morehtmlref .= img_picto($langs->trans("ThirdParty"), 'company', 'class="pictofixedwidth"');
214 if ($action != 'editcustomer' && $permissiontoadd) {
215 $morehtmlref .= '<a class="editfielda" href="'.$url_page_current.'?action=editcustomer&token='.newToken().'&track_id='.$object->track_id.'">'.img_edit($langs->transnoentitiesnoconv('SetThirdParty'), 0).'</a> ';
216 }
217 $morehtmlref .= $form->form_thirdparty($url_page_current.'?track_id='.$object->track_id, $object->socid, $action == 'editcustomer' ? 'editcustomer' : 'none', '', 1, 0, 0, array(), 1);
218}
219
220// Project
221if (isModEnabled('project')) {
222 $langs->load("projects");
223 if (0) {
224 $morehtmlref .= '<br>';
225 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
226 if ($action != 'classify') {
227 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
228 }
229 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
230 } else {
231 if (!empty($object->fk_project)) {
232 $morehtmlref .= '<br>';
233 $proj = new Project($db);
234 $proj->fetch($object->fk_project);
235 $morehtmlref .= $proj->getNomUrl(1);
236 if ($proj->title) {
237 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
238 }
239 }
240 }
241}
242
243$morehtmlref .= '</div>';
244
245$linkback = '<a href="'.DOL_URL_ROOT.'/ticket/list.php"><strong>'.$langs->trans("BackToList").'</strong></a> ';
246
247dol_banner_tab($object, 'ref', $linkback, ($user->socid ? 0 : 1), 'ref', 'ref', $morehtmlref, '', 0, '', '', 1);
248
249print dol_get_fiche_end();
250
251print '<br>';
252
253
254if (!empty($object->id)) {
255 $param = '&id='.$object->id;
256 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
257 $param .= '&contextpage='.$contextpage;
258 }
259 if ($limit > 0 && $limit != $conf->liste_limit) {
260 $param .= '&limit='.$limit;
261 }
262
263 $morehtmlright = '';
264
265 $messagingUrl = DOL_URL_ROOT.'/ticket/messaging.php?track_id='.$object->track_id;
266 $morehtmlright .= dolGetButtonTitle($langs->trans('ShowAsConversation'), '', 'fa fa-comments imgforviewmode', $messagingUrl, '', 1);
267 $messagingUrl = DOL_URL_ROOT.'/ticket/agenda.php?track_id='.$object->track_id;
268 $morehtmlright .= dolGetButtonTitle($langs->trans('MessageListViewType'), '', 'fa fa-bars imgforviewmode', $messagingUrl, '', 1, array('morecss' => 'btnTitleSelected'));
269
270 // Show link to send an email (if read and not closed)
271 $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
272 $url = 'card.php?track_id='.$object->track_id.'&action=presend_addmessage&mode=init&private_message=0&send_email=1&backtopage='.urlencode($_SERVER["PHP_SELF"].'?track_id='.$object->track_id).'#formmailbeforetitle';
273 $morehtmlright .= dolGetButtonTitle($langs->trans('SendMail'), '', 'fa fa-paper-plane', $url, 'email-title-button', (int) $btnstatus);
274
275 // Show link to add a message (if read and not closed)
276 $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
277 $url = 'card.php?track_id='.$object->track_id.'&action=presend_addmessage&mode=init&backtopage='.urlencode($_SERVER["PHP_SELF"].'?track_id='.$object->track_id).'#formmailbeforetitle';
278 $morehtmlright .= dolGetButtonTitle($langs->trans('TicketAddMessage'), '', 'fa fa-comment-dots', $url, 'add-new-ticket-title-button', (int) $btnstatus);
279
280 // Show link to add event (if read and not closed)
281 $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
282 $url = DOL_URL_ROOT.'/comm/action/card.php?action=create&datep=now&origin=ticket&originid='.$object->id.'&projectid='.$object->fk_project.'&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$object->id);
283 $morehtmlright .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', $url, 'add-new-ticket-even-button', (int) $btnstatus);
284
285 require_once DOL_DOCUMENT_ROOT.'/core/lib/memory.lib.php';
286 $cachekey = 'count_events_ticket_'.$object->id;
287 $nbEvent = dol_getcache($cachekey);
288
289 $titlelist = $langs->trans("ActionsOnTicket").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
290 if (!empty($conf->dol_optimize_smallscreen)) {
291 $titlelist = $langs->trans("Actions").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
292 }
293
294 print_barre_liste($titlelist, 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, '', 0, -1, '', 0, $morehtmlright, '', 0, 1, 0);
295
296 // List of all actions
297 $filters = array();
298 $filters['search_agenda_label'] = $search_agenda_label;
299 $filters['search_rowid'] = $search_rowid;
300
301 show_actions_done($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder);
302}
303
304// End of page
305llxFooter();
306$db->close();
$id
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:71
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
Class to manage Dolibarr users.
show_actions_done($conf, $langs, $db, $filterobj, $objcon=null, $noprint=0, $actioncode='', $donetodo='done', $filters=array(), $sortfield='a.datep, a.id', $sortorder='DESC', $module='')
Show html area with actions (done or not, ignore the name of function).
societe_prepare_head(Societe $object)
Return array of tabs to used on pages for third parties cards.
llxFooter()
Footer empty.
Definition document.php:107
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
dol_getcache($memoryid)
Read a memory area shared by all users, all sessions on server.
Class to generate the form for creating a new ticket.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
ticket_prepare_head($object)
Build tabs for a Ticket object.