123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- <?php
- /* Copyright (C) - 2013-2016 Jean-François FERRY <hello@librethic.io>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/ticket/history.php
- * \ingroup ticket
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT . '/ticket/class/actions_ticket.class.php';
- require_once DOL_DOCUMENT_ROOT . '/ticket/class/ticketstats.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/dolgraph.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array('companies', 'other', 'ticket'));
- $WIDTH = DolGraph::getDefaultGraphSizeForStats('width');
- $HEIGHT = DolGraph::getDefaultGraphSizeForStats('height');
- // Get parameters
- $id = GETPOST('id', 'int');
- $msg_id = GETPOST('msg_id', 'int');
- $action = GETPOST('action', 'aZ09');
- if ($user->societe_id) {
- $socid = $user->societe_id;
- }
- // Security check
- $result = restrictedArea($user, 'ticket', 0, '', '', '', '');
- $nowyear = strftime("%Y", dol_now());
- $year = GETPOST('year') > 0 ? GETPOST('year') : $nowyear;
- //$startyear=$year-2;
- $startyear = $year - 1;
- $endyear = $year;
- $object = new Ticket($db);
- /*
- * Actions
- */
- // None
- /*
- * View
- */
- $form = new Form($db);
- $tickesupstatic = new Ticket($db);
- llxHeader('', $langs->trans('TicketsIndex'), '');
- $linkback='';
- print load_fiche_titre($langs->trans('TicketsIndex'),$linkback,'title_ticket.png');
- $dir = '';
- $filenamenb = $dir . "/" . $prefix . "ticketinyear-" . $endyear . ".png";
- $fileurlnb = DOL_URL_ROOT . '/viewimage.php?modulepart=ticket&file=ticketinyear-' . $endyear . '.png';
- $stats = new TicketStats($db, $socid, $userid);
- $param_year = 'DOLUSERCOOKIE_ticket_by_status_year';
- $param_shownb = 'DOLUSERCOOKIE_ticket_by_status_shownb';
- $param_showtot = 'DOLUSERCOOKIE_ticket_by_status_showtot';
- $autosetarray = preg_split("/[,;:]+/", GETPOST('DOL_AUTOSET_COOKIE'));
- if (in_array('DOLUSERCOOKIE_ticket_by_status', $autosetarray)) {
- $endyear = GETPOST($param_year, 'int');
- $shownb = GETPOST($param_shownb, 'alpha');
- $showtot = GETPOST($param_showtot, 'alpha');
- } else {
- $tmparray = json_decode($_COOKIE['DOLUSERCOOKIE_ticket_by_status'], true);
- $endyear = $tmparray['year'];
- $shownb = $tmparray['shownb'];
- $showtot = $tmparray['showtot'];
- }
- if (empty($shownb) && empty($showtot)) {
- $showtot = 1;
- }
- $nowarray = dol_getdate(dol_now(), true);
- if (empty($endyear)) {
- $endyear = $nowarray['year'];
- }
- $startyear = $endyear - 1;
- $WIDTH = (($shownb && $showtot) || !empty($conf->dol_optimize_smallscreen)) ? '256' : '320';
- $HEIGHT = '192';
- print '<div class="fichecenter"><div class="fichethirdleft">';
- /*
- * Statistics area
- */
- $tick = array(
- 'unread' => 0,
- 'read' => 0,
- 'answered' => 0,
- 'assigned' => 0,
- 'inprogress' => 0,
- 'waiting' => 0,
- 'closed' => 0,
- 'deleted' => 0,
- );
- $total = 0;
- $sql = "SELECT t.fk_statut, COUNT(t.fk_statut) as nb";
- $sql .= " FROM " . MAIN_DB_PREFIX . "ticket as t";
- if (!$user->rights->societe->client->voir && !$socid) {
- $sql .= ", " . MAIN_DB_PREFIX . "societe_commerciaux as sc";
- }
- $sql .= ' WHERE t.entity IN (' . getEntity('ticket', 1) . ')';
- $sql .= " AND t.fk_statut IS NOT NULL";
- $sql .= " AND date_format(datec,'%Y') = '" . $endyear . "'";
- if (!$user->rights->societe->client->voir && !$socid) {
- $sql .= " AND t.fk_soc = sc.fk_soc AND sc.fk_user = " . $user->id;
- }
- // External users restriction
- if ($user->societe_id > 0) {
- $sql .= " AND t.fk_soc='" . $user->societe_id . "'";
- } else {
- // For internals users,
- if (!empty($conf->global->TICKET_LIMIT_VIEW_ASSIGNED_ONLY) && !$user->rights->ticket->manage) {
- $sql .= " AND t.fk_user_assign=" . $user->id;
- }
- }
- $sql .= " GROUP BY t.fk_statut";
- $result = $db->query($sql);
- if ($result) {
- while ($objp = $db->fetch_object($result)) {
- $found = 0;
- if ($objp->fk_statut == 0) {
- $tick['unread'] = $objp->nb;
- }
- if ($objp->fk_statut == 1) {
- $tick['read'] = $objp->nb;
- }
- if ($objp->fk_statut == 3) {
- $tick['answered'] = $objp->nb;
- }
- if ($objp->fk_statut == 4) {
- $tick['assigned'] = $objp->nb;
- }
- if ($objp->fk_statut == 5) {
- $tick['inprogress'] = $objp->nb;
- }
- if ($objp->fk_statut == 6) {
- $tick['waiting'] = $objp->nb;
- }
- if ($objp->fk_statut == 8) {
- $tick['closed'] = $objp->nb;
- }
- if ($objp->fk_statut == 9) {
- $tick['deleted'] = $objp->nb;
- }
- }
- if ((round($tick['unread']) ? 1 : 0) +(round($tick['read']) ? 1 : 0) +(round($tick['answered']) ? 1 : 0) +(round($tick['assigned']) ? 1 : 0) +(round($tick['inprogress']) ? 1 : 0) +(round($tick['waiting']) ? 1 : 0) +(round($tick['closed']) ? 1 : 0) +(round($tick['deleted']) ? 1 : 0) >= 2
- ) {
- $dataseries = array();
- $dataseries[] = array('label' => $langs->trans("Unread"), 'data' => round($tick['unread']));
- $dataseries[] = array('label' => $langs->trans("Read"), 'data' => round($tick['read']));
- $dataseries[] = array('label' => $langs->trans("Answered"), 'data' => round($tick['answered']));
- $dataseries[] = array('label' => $langs->trans("Assigned"), 'data' => round($tick['assigned']));
- $dataseries[] = array('label' => $langs->trans("InProgress"), 'data' => round($tick['inprogress']));
- $dataseries[] = array('label' => $langs->trans("Waiting"), 'data' => round($tick['waiting']));
- $dataseries[] = array('label' => $langs->trans("Closed"), 'data' => round($tick['closed']));
- $dataseries[] = array('label' => $langs->trans("Deleted"), 'data' => round($tick['deleted']));
- }
- } else {
- dol_print_error($db);
- }
- $stringtoshow = '<script type="text/javascript" language="javascript">
- jQuery(document).ready(function() {
- jQuery("#idsubimgDOLUSERCOOKIE_ticket_by_status").click(function() {
- jQuery("#idfilterDOLUSERCOOKIE_ticket_by_status").toggle();
- });
- });
- </script>';
- $stringtoshow .= '<div class="center hideobject" id="idfilterDOLUSERCOOKIE_ticket_by_status">'; // hideobject is to start hidden
- $stringtoshow .= '<form class="flat formboxfilter" method="POST" action="' . $_SERVER["PHP_SELF"] . '">';
- $stringtoshow .= '<input type="hidden" name="action" value="' . $refreshaction . '">';
- $stringtoshow .= '<input type="hidden" name="DOL_AUTOSET_COOKIE" value="DOLUSERCOOKIE_ticket_by_status:year,shownb,showtot">';
- $stringtoshow .= $langs->trans("Year") . ' <input class="flat" size="4" type="text" name="' . $param_year . '" value="' . $endyear . '">';
- $stringtoshow .= '<input type="image" alt="' . $langs->trans("Refresh") . '" src="' . img_picto($langs->trans("Refresh"), 'refresh.png', '', '', 1) . '">';
- $stringtoshow .= '</form>';
- $stringtoshow .= '</div>';
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre"><th >' . $langs->trans("Statistics") . ' ' . img_picto('', 'filter.png', 'id="idsubimgDOLUSERCOOKIE_ticket_by_status" class="linkobject"') . '</th></tr>';
- print '<tr><td>';
- // don't display graph if no series
- if (! empty($dataseries) && count($dataseries) > 1) {
- $data = array();
- foreach ($dataseries as $key => $value) {
- $data[] = array($value['label'], $value['data']);
- }
- $px1 = new DolGraph();
- $mesg = $px1->isGraphKo();
- if (!$mesg) {
- $px1->SetData($data);
- unset($data1);
- $px1->SetPrecisionY(0);
- $i = $startyear;
- $legend = array();
- while ($i <= $endyear) {
- $legend[] = $i;
- $i++;
- }
- $px1->SetType(array('pie'));
- $px1->SetLegend($legend);
- $px1->SetMaxValue($px1->GetCeilMaxValue());
- $px1->SetWidth($WIDTH);
- $px1->SetHeight($HEIGHT);
- $px1->SetYLabel($langs->trans("TicketStatByStatus"));
- $px1->SetShading(3);
- $px1->SetHorizTickIncrement(1);
- $px1->SetPrecisionY(0);
- $px1->SetCssPrefix("cssboxes");
- $px1->mode = 'depth';
- //$px1->SetTitle($langs->trans("TicketStatByStatus"));
- $px1->draw($filenamenb, $fileurlnb);
- print $px1->show();
- }
- }
- print $stringtoshow;
- print '</td></tr>';
- print '</table>';
- // Build graphic number of object
- $data = $stats->getNbByMonth($endyear, $startyear);
- print '</div><div class="fichetwothirdright"><div class="ficheaddleft">';
- /*
- * Last tickets
- */
- $max = 15;
- $sql = "SELECT t.rowid, t.ref, t.track_id, t.datec, t.subject, t.type_code, t.category_code, t.severity_code, t.fk_statut, t.progress,";
- $sql .= " type.label as type_label, category.label as category_label, severity.label as severity_label";
- $sql .= " FROM " . MAIN_DB_PREFIX . "ticket as t";
- $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "c_ticket_type as type ON type.code=t.type_code";
- $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "c_ticket_category as category ON category.code=t.category_code";
- $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "c_ticket_severity as severity ON severity.code=t.severity_code";
- if (!$user->rights->societe->client->voir && !$socid) {
- $sql .= ", " . MAIN_DB_PREFIX . "societe_commerciaux as sc";
- }
- $sql .= ' WHERE t.entity IN (' . getEntity('ticket', 1) . ')';
- $sql .= " AND t.fk_statut=0";
- if (!$user->rights->societe->client->voir && !$socid) {
- $sql .= " AND t.fk_soc = sc.fk_soc AND sc.fk_user = " . $user->id;
- }
- if ($user->societe_id > 0) {
- $sql .= " AND t.fk_soc='" . $user->societe_id . "'";
- } else {
- // Restricted to assigned user only
- if ($conf->global->TICKET_LIMIT_VIEW_ASSIGNED_ONLY && !$user->rights->ticket->manage) {
- $sql .= " AND t.fk_user_assign=" . $user->id;
- }
- }
- $sql .= $db->order("t.datec", "DESC");
- $sql .= $db->plimit($max, 0);
- //print $sql;
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0;
- $transRecordedType = $langs->trans("LatestNewTickets", $max);
- print '<div class="div-table-responsive-no-min">';
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre"><th>' . $transRecordedType . '</th>';
- print '<th>' . $langs->trans('Date') . '</th>';
- print '<th>' . $langs->trans('Subject') . '</th>';
- print '<th>' . $langs->trans('Type') . '</th>';
- print '<th>' . $langs->trans('Category') . '</th>';
- print '<th>' . $langs->trans('Severity') . '</th>';
- print '<th></th>';
- print '</tr>';
- if ($num > 0) {
- while ($i < $num) {
- $objp = $db->fetch_object($result);
- $tickesupstatic->id = $objp->rowid;
- $tickesupstatic->ref = $objp->ref;
- $tickesupstatic->track_id = $objp->track_id;
- $tickesupstatic->fk_statut = $objp->fk_statut;
- $tickesupstatic->progress = $objp->progress;
- $tickesupstatic->subject = $objp->subject;
- print '<tr class="oddeven">';
- // Ref
- print '<td class="nowrap">';
- print $tickesupstatic->getNomUrl(1);
- print "</td>\n";
- // Creation date
- print '<td align="left">';
- print dol_print_date($db->jdate($objp->datec), 'dayhour');
- print "</td>";
- // Subject
- print '<td class="nowrap">';
- print '<a href="card.php?track_id=' . $objp->track_id . '">' . dol_trunc($objp->subject, 30) . '</a>';
- print "</td>\n";
- // Type
- print '<td class="nowrap">';
- print $objp->type_label;
- print '</td>';
- // Category
- print '<td class="nowrap">';
- print $objp->category_label;
- print "</td>";
- // Severity
- print '<td class="nowrap">';
- print $objp->severity_label;
- print "</td>";
- print '<td class="nowrap">';
- print $tickesupstatic->getLibStatut(3);
- print "</td>";
- print "</tr>\n";
- $i++;
- }
- $db->free();
- } else {
- print '<tr><td colspan="6" class="opacitymedium">' . $langs->trans('NoTicketsFound') . '</td></tr>';
- }
- print "</table>";
- print '</div>';
- } else {
- dol_print_error($db);
- }
- print '</div></div></div>';
- print '<div style="clear:both"></div>';
- print '<div class="tabsAction">';
- print '<div class="inline-block divButAction"><a class="butAction" href="new.php?action=create_ticket">' . $langs->trans('CreateTicket') . '</a></div>';
- print '<div class="inline-block divButAction"><a class="butAction" href="list.php">' . $langs->trans('TicketList') . '</a></div>';
- print '</div>';
- // End of page
- llxFooter('');
- $db->close();
|