dolibarr 19.0.3
box_graph_nb_ticket_last_x_days.php
Go to the documentation of this file.
1<?php
2/* Module descriptor for ticket system
3 * Copyright (C) 2013-2016 Jean-François FERRY <hello@librethic.io>
4 * 2016 Christophe Battarel <christophe@altairis.fr>
5 * Copyright (C) 2019-2021 Frédéric France <frederic.france@netlogic.fr>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
26require_once DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php";
27
32{
33 public $boxcode = "box_graph_nb_ticket_last_x_days";
34 public $boximg = "ticket";
35 public $boxlabel;
36 public $depends = array("ticket");
37
38 public $param;
39 public $info_box_head = array();
40 public $info_box_contents = array();
41
42 public $widgettype = 'graph';
43
49 public function __construct($db, $param = '')
50 {
51 global $langs;
52 $langs->load("boxes");
53 $this->db = $db;
54
55 $this->boxlabel = $langs->transnoentitiesnoconv("BoxNumberOfTicketByDay");
56 }
57
64 public function loadBox($max = 5)
65 {
66 global $conf, $user, $langs;
67 $dataseries = array();
68 $graphtoshow = "";
69
70 $badgeStatus0 = '#cbd3d3'; // draft
71 $badgeStatus1 = '#bc9526'; // validated
72 $badgeStatus1b = '#bc9526'; // validated
73 $badgeStatus2 = '#9c9c26'; // approved
74 $badgeStatus3 = '#bca52b';
75 $badgeStatus4 = '#25a580'; // Color ok
76 $badgeStatus4b = '#25a580'; // Color ok
77 $badgeStatus5 = '#cad2d2';
78 $badgeStatus6 = '#cad2d2';
79 $badgeStatus7 = '#baa32b';
80 $badgeStatus8 = '#993013';
81 $badgeStatus9 = '#e7f0f0';
82 if (file_exists(DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php')) {
83 include DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php';
84 }
85 $this->max = $max;
86
87
88 $param_day = 'DOLUSERCOOKIE_ticket_last_days';
89 if (GETPOST($param_day)) {
90 if (GETPOST($param_day) >= 15) {
91 $days = 14;
92 } else {
93 $days = GETPOST($param_day);
94 }
95 } else {
96 $days = 7;
97 }
98 require_once DOL_DOCUMENT_ROOT."/ticket/class/ticket.class.php";
99 $text = $langs->trans("BoxTicketLastXDays", $days).'&nbsp;'.img_picto('', 'filter.png', 'id="idsubimgDOLUSERCOOKIE_ticket_last_days" class="linkobject"');
100 $this->info_box_head = array(
101 'text' => $text,
102 'limit' => dol_strlen($text)
103 );
104 $today = dol_now();
105 $intervaltoadd = 1;
106 $minimumdatec = dol_time_plus_duree($today, -1 * ($days - 1), 'd');
107 $minimumdatecformated = dol_print_date($minimumdatec, 'dayrfc');
108
109 if ($user->hasRight('ticket', 'read')) {
110 $sql = "SELECT CAST(t.datec AS DATE) as datec, COUNT(t.datec) as nb";
111 $sql .= " FROM ".MAIN_DB_PREFIX."ticket as t";
112 $sql .= " WHERE CAST(t.datec AS DATE) > '".$this->db->idate($minimumdatec)."'";
113 $sql .= " GROUP BY CAST(t.datec AS DATE)";
114
115 $resql = $this->db->query($sql);
116 if ($resql) {
117 $num = $this->db->num_rows($resql);
118 $i = 0;
119 while ($i < $num) {
120 $objp = $this->db->fetch_object($resql);
121 while ($minimumdatecformated < $objp->datec) {
122 $dataseries[] = array('label' => dol_print_date($minimumdatec, 'day'), 'data' => 0);
123 $minimumdatec = dol_time_plus_duree($minimumdatec, $intervaltoadd, 'd');
124 $minimumdatecformated = dol_print_date($minimumdatec, 'dayrfc');
125 }
126 $dataseries[] = array('label' => dol_print_date($objp->datec, 'day'), 'data' => $objp->nb);
127 $minimumdatec = dol_time_plus_duree($minimumdatec, $intervaltoadd, 'd');
128 $minimumdatecformated = dol_print_date($minimumdatec, 'dayrfc');
129 $i++;
130 }
131 while (count($dataseries) < $days) {
132 $dataseries[] = array('label' => dol_print_date($minimumdatec, 'day'), 'data' => 0);
133 $minimumdatec = dol_time_plus_duree($minimumdatec, $intervaltoadd, 'd');
134 $minimumdatecformated = dol_print_date($minimumdatec, 'dayrfc');
135 $i++;
136 }
137 } else {
138 dol_print_error($this->db);
139 }
140 $stringtoshow = '<div class="div-table-responsive-no-min">';
141 $stringtoshow .= '<script nonce="'.getNonce().'" type="text/javascript">
142 jQuery(document).ready(function() {
143 jQuery("#idsubimgDOLUSERCOOKIE_ticket_last_days").click(function() {
144 jQuery("#idfilterDOLUSERCOOKIE_ticket_last_days").toggle();
145 });
146 });
147 </script>';
148 $stringtoshow .= '<div class="center hideobject" id="idfilterDOLUSERCOOKIE_ticket_last_days">'; // hideobject is to start hidden
149 $stringtoshow .= '<form class="flat formboxfilter" method="POST" action="'.$_SERVER["PHP_SELF"].'">';
150 $stringtoshow .= '<input type="hidden" name="token" value="'.newToken().'">';
151 $stringtoshow .= '<input type="hidden" name="action" value="refresh">';
152 $stringtoshow .= '<input type="hidden" name="DOL_AUTOSET_COOKIE" value="DOLUSERCOOKIE_ticket_last_days:days">';
153 $stringtoshow .= ' <input class="flat" size="4" type="text" name="'.$param_day.'" value="'.$days.'">'.$langs->trans("Days");
154 $stringtoshow .= '<input type="image" alt="'.$langs->trans("Refresh").'" src="'.img_picto($langs->trans("Refresh"), 'refresh.png', '', '', 1).'">';
155 $stringtoshow .= '</form>';
156 $stringtoshow .= '</div>';
157
158 include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
159 $px1 = new DolGraph();
160
161 $mesg = $px1->isGraphKo();
162 $totalnb = 0;
163 if (!$mesg) {
164 $data = array();
165 foreach ($dataseries as $value) {
166 $data[] = array($value['label'], $value['data']);
167 $totalnb += $value['data'];
168 }
169 $px1->SetData($data);
170 //$px1->setShowLegend(2);
171 $px1->setShowLegend(0);
172 $px1->SetType(array('bars'));
173 $px1->SetLegend(array($langs->trans('BoxNumberOfTicketByDay')));
174 $px1->SetMaxValue($px1->GetCeilMaxValue());
175 $px1->SetHeight(192);
176 $px1->SetShading(3);
177 $px1->SetHorizTickIncrement(1);
178 $px1->SetCssPrefix("cssboxes");
179 $px1->mode = 'depth';
180
181 $px1->draw('idgraphticketlastxdays');
182 $graphtoshow = $px1->show($totalnb ? 0 : 1);
183 }
184 if ($totalnb) {
185 $stringtoshow .= $graphtoshow;
186 }
187 $stringtoshow .= '</div>';
188 if ($totalnb) {
189 $this->info_box_contents[][] = array(
190 'td' => 'center',
191 'text' => $stringtoshow
192 );
193 } else {
194 $this->info_box_contents[0][0] = array(
195 'td' => 'class="center"',
196 'text' => '<span class="opacitymedium">'.$stringtoshow.$langs->trans("BoxNoTicketLastXDays", $days).'</span>'
197 );
198 }
199 } else {
200 $this->info_box_contents[0][0] = array(
201 'td' => 'class="left"',
202 'text' => '<span class="opacitymedium">'.$langs->trans("ReadPermissionNotAllowed").'</span>'
203 );
204 }
205 }
206
215 public function showBox($head = null, $contents = null, $nooutput = 0)
216 {
217 return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
218 }
219}
Class to build graphs.
Class ModeleBoxes.
Class to manage the box to show new daily tickets.
loadBox($max=5)
Load data into info_box_contents array to show array later.
showBox($head=null, $contents=null, $nooutput=0)
Method to show box.
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
Definition date.lib.php:124
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.