commit
2b33bb2d04
@ -318,8 +318,8 @@ print "</table></div>";
|
|||||||
|
|
||||||
print "<br>\n";
|
print "<br>\n";
|
||||||
|
|
||||||
|
|
||||||
print $resultboxes['boxlista'];
|
print $resultboxes['boxlista'];
|
||||||
|
|
||||||
print '</div>'."\n";
|
print '</div>'."\n";
|
||||||
|
|
||||||
print '<div class="secondcolumn fichehalfright boxhalfright" id="boxhalfright">';
|
print '<div class="secondcolumn fichehalfright boxhalfright" id="boxhalfright">';
|
||||||
|
|||||||
@ -40,7 +40,7 @@ $action = GETPOST('action', 'aZ09');
|
|||||||
|
|
||||||
|
|
||||||
// Define possible position of boxes
|
// Define possible position of boxes
|
||||||
$pos_name = InfoBox::getListOfPagesForBoxes();
|
$arrayofhomepages = InfoBox::getListOfPagesForBoxes();
|
||||||
$boxes = array();
|
$boxes = array();
|
||||||
|
|
||||||
|
|
||||||
@ -348,7 +348,7 @@ foreach ($boxtoadd as $box) {
|
|||||||
|
|
||||||
// For each possible position, an activation link is displayed if the box is not already active for that position
|
// For each possible position, an activation link is displayed if the box is not already active for that position
|
||||||
print '<td class="center">';
|
print '<td class="center">';
|
||||||
print $form->selectarray("boxid[".$box->box_id."][pos]", $pos_name, -1, 1, 0, 0, '', 1)."\n";
|
print $form->selectarray("boxid[".$box->box_id."][pos]", $arrayofhomepages, -1, 1, 0, 0, '', 1)."\n";
|
||||||
print '<input type="hidden" name="boxid['.$box->box_id.'][value]" value="'.$box->box_id.'">'."\n";
|
print '<input type="hidden" name="boxid['.$box->box_id.'][value]" value="'.$box->box_id.'">'."\n";
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
@ -406,7 +406,7 @@ foreach ($boxactivated as $key => $box) {
|
|||||||
print ($box->note ? $box->note : ' ');
|
print ($box->note ? $box->note : ' ');
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print '<td class="center">'.(empty($pos_name[$box->position]) ? '' : $langs->trans($pos_name[$box->position])).'</td>';
|
print '<td class="center">'.(empty($arrayofhomepages[$box->position]) ? '' : $langs->trans($arrayofhomepages[$box->position])).'</td>';
|
||||||
$hasnext = ($key < (count($boxactivated) - 1));
|
$hasnext = ($key < (count($boxactivated) - 1));
|
||||||
$hasprevious = ($key != 0);
|
$hasprevious = ($key != 0);
|
||||||
print '<td class="center">'.($key + 1).'</td>';
|
print '<td class="center">'.($key + 1).'</td>';
|
||||||
|
|||||||
221
htdocs/core/boxes/box_graph_nb_ticket_last_x_days.php
Normal file
221
htdocs/core/boxes/box_graph_nb_ticket_last_x_days.php
Normal file
@ -0,0 +1,221 @@
|
|||||||
|
<?php
|
||||||
|
/* Module descriptor for ticket system
|
||||||
|
* Copyright (C) 2013-2016 Jean-François FERRY <hello@librethic.io>
|
||||||
|
* 2016 Christophe Battarel <christophe@altairis.fr>
|
||||||
|
* Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
|
||||||
|
*
|
||||||
|
* 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 <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file core/boxes/box_nb_ticket_last_x_days.php
|
||||||
|
* \ingroup ticket
|
||||||
|
* \brief This box shows the number of new daily tickets the last X days
|
||||||
|
*/
|
||||||
|
require_once DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage the box
|
||||||
|
*/
|
||||||
|
class box_nb_ticket_last_x_days extends ModeleBoxes
|
||||||
|
{
|
||||||
|
|
||||||
|
public $boxcode = "box_nb_ticket_last_x_days";
|
||||||
|
public $boximg = "ticket";
|
||||||
|
public $boxlabel;
|
||||||
|
public $depends = array("ticket");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var DoliDB Database handler.
|
||||||
|
*/
|
||||||
|
|
||||||
|
public $param;
|
||||||
|
public $info_box_head = array();
|
||||||
|
public $info_box_contents = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
* @param DoliDB $db Database handler
|
||||||
|
* @param string $param More parameters
|
||||||
|
*/
|
||||||
|
public function __construct($db, $param = '')
|
||||||
|
{
|
||||||
|
global $langs;
|
||||||
|
$langs->load("boxes");
|
||||||
|
$this->db = $db;
|
||||||
|
|
||||||
|
$this->boxlabel = $langs->transnoentitiesnoconv("BoxNumberOfTicketByDay");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load data into info_box_contents array to show array later.
|
||||||
|
*
|
||||||
|
* @param int $max Maximum number of records to load
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function loadBox($max = 5)
|
||||||
|
{
|
||||||
|
global $conf, $user, $langs;
|
||||||
|
|
||||||
|
$badgeStatus0 = '#cbd3d3'; // draft
|
||||||
|
$badgeStatus1 = '#bc9526'; // validated
|
||||||
|
$badgeStatus1b = '#bc9526'; // validated
|
||||||
|
$badgeStatus2 = '#9c9c26'; // approved
|
||||||
|
$badgeStatus3 = '#bca52b';
|
||||||
|
$badgeStatus4 = '#25a580'; // Color ok
|
||||||
|
$badgeStatus4b = '#25a580'; // Color ok
|
||||||
|
$badgeStatus5 = '#cad2d2';
|
||||||
|
$badgeStatus6 = '#cad2d2';
|
||||||
|
$badgeStatus7 = '#baa32b';
|
||||||
|
$badgeStatus8 = '#993013';
|
||||||
|
$badgeStatus9 = '#e7f0f0';
|
||||||
|
if (file_exists(DOL_DOCUMENT_ROOT . '/theme/' . $conf->theme . '/theme_vars.inc.php')) {
|
||||||
|
include DOL_DOCUMENT_ROOT . '/theme/' . $conf->theme . '/theme_vars.inc.php';
|
||||||
|
}
|
||||||
|
$this->max = $max;
|
||||||
|
|
||||||
|
|
||||||
|
$param_day = 'DOLUSERCOOKIE_ticket_last_days';
|
||||||
|
if ($_POST[$param_day]) {
|
||||||
|
if ($_POST[$param_day] >= 15) {
|
||||||
|
$days = 14;
|
||||||
|
} else {
|
||||||
|
$days = $_POST[$param_day];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$days = 7;
|
||||||
|
}
|
||||||
|
require_once DOL_DOCUMENT_ROOT."/ticket/class/ticket.class.php";
|
||||||
|
$text = $langs->trans("BoxTicketLastXDays", $days).' ' . img_picto('', 'filter.png', 'id="idsubimgDOLUSERCOOKIE_ticket_last_days" class="linkobject"');
|
||||||
|
$this->info_box_head = array(
|
||||||
|
'text' => $text,
|
||||||
|
'limit' => dol_strlen($text)
|
||||||
|
);
|
||||||
|
$today = date_time_set(date_create(), 0, 0);
|
||||||
|
$todayformat = date('Y-m-d', date_timestamp_get($today));
|
||||||
|
$intervaltosub = new DateInterval('P' . dol_escape_htmltag($days - 1) . 'D');
|
||||||
|
$intervaltoadd = new DateInterval('P1D');
|
||||||
|
$minimumdatec = date_sub($today, $intervaltosub);
|
||||||
|
$minimumdatecformated = date('Y-m-d', date_timestamp_get($minimumdatec));
|
||||||
|
|
||||||
|
if ($user->rights->ticket->read) {
|
||||||
|
$sql = "SELECT CAST(t.datec AS DATE) as datec, COUNT(t.datec) as nb";
|
||||||
|
$sql .= " FROM " . MAIN_DB_PREFIX . "ticket as t";
|
||||||
|
$sql .= " WHERE CAST(t.datec AS DATE) > DATE_SUB(CURRENT_DATE, INTERVAL " . $days . " DAY)";
|
||||||
|
$sql .= " GROUP BY CAST(t.datec AS DATE)";
|
||||||
|
$resql = $this->db->query($sql);
|
||||||
|
if ($resql) {
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
$i = 0;
|
||||||
|
$dataseries = array();
|
||||||
|
while ($i < $num) {
|
||||||
|
$objp = $this->db->fetch_object($resql);
|
||||||
|
while ($minimumdatecformated < $objp->datec) {
|
||||||
|
$dataseries[] = array('label' => dol_print_date($minimumdatecformated, 'day'), 'data' => 0);
|
||||||
|
$minimumdatec = date_add($minimumdatec, $intervaltoadd);
|
||||||
|
$minimumdatecformated = date('Y-m-d', date_timestamp_get($minimumdatec));
|
||||||
|
}
|
||||||
|
$dataseries[] = array('label' => dol_print_date($objp->datec, 'day'), 'data' => $objp->nb);
|
||||||
|
$minimumdatec = date_add($minimumdatec, $intervaltoadd);
|
||||||
|
$minimumdatecformated = date('Y-m-d', date_timestamp_get($minimumdatec));
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
while (count($dataseries) < $days) {
|
||||||
|
$dataseries[] = array('label' => dol_print_date($minimumdatecformated, 'day'), 'data' => 0);
|
||||||
|
$minimumdatec = date_add($minimumdatec, $intervaltoadd);
|
||||||
|
$minimumdatecformated = date('Y-m-d', date_timestamp_get($minimumdatec));
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dol_print_error($this->db);
|
||||||
|
}
|
||||||
|
$stringtoshow = '<div class="div-table-responsive-no-min">';
|
||||||
|
$stringtoshow .= '<script type="text/javascript" language="javascript">
|
||||||
|
jQuery(document).ready(function() {
|
||||||
|
jQuery("#idsubimgDOLUSERCOOKIE_ticket_last_days").click(function() {
|
||||||
|
jQuery("#idfilterDOLUSERCOOKIE_ticket_last_days").toggle();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>';
|
||||||
|
$stringtoshow .= '<div class="center hideobject" id="idfilterDOLUSERCOOKIE_ticket_last_days">'; // hideobject is to start hidden
|
||||||
|
$stringtoshow .= '<form class="flat formboxfilter" method="POST" action="' . $_SERVER["PHP_SELF"] . '">';
|
||||||
|
$stringtoshow .= '<input type="hidden" name="token" value="' . newToken() . '">';
|
||||||
|
$stringtoshow .= '<input type="hidden" name="action" value="refresh">';
|
||||||
|
$stringtoshow .= '<input type="hidden" name="DOL_AUTOSET_COOKIE" value="DOLUSERCOOKIE_ticket_last_days:days">';
|
||||||
|
$stringtoshow .= ' <input class="flat" size="4" type="text" name="' . $param_day . '" value="' . $days . '">' . $langs->trans("Days");
|
||||||
|
$stringtoshow .= '<input type="image" alt="' . $langs->trans("Refresh") . '" src="' . img_picto($langs->trans("Refresh"), 'refresh.png', '', '', 1) . '">';
|
||||||
|
$stringtoshow .= '</form>';
|
||||||
|
$stringtoshow .= '</div>';
|
||||||
|
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
||||||
|
$px1 = new DolGraph();
|
||||||
|
|
||||||
|
$mesg = $px1->isGraphKo();
|
||||||
|
$totalnb = 0;
|
||||||
|
if (!$mesg) {
|
||||||
|
$data = array();
|
||||||
|
foreach ($dataseries as $value) {
|
||||||
|
$data[] = array($value['label'], $value['data']);
|
||||||
|
$totalnb += $value['data'];
|
||||||
|
}
|
||||||
|
$px1->SetData($data);
|
||||||
|
$px1->setShowLegend(2);
|
||||||
|
$px1->SetType(array('bar'));
|
||||||
|
$px1->SetLegend(array($langs->trans('BoxNumberOfTicketByDay')));
|
||||||
|
$px1->SetMaxValue($px1->GetCeilMaxValue());
|
||||||
|
$px1->SetHeight(192);
|
||||||
|
$px1->SetShading(3);
|
||||||
|
$px1->SetHorizTickIncrement(1);
|
||||||
|
$px1->SetCssPrefix("cssboxes");
|
||||||
|
$px1->mode = 'depth';
|
||||||
|
|
||||||
|
$px1->draw('idgraphticketlastxdays');
|
||||||
|
$graphtoshow= $px1->show($totalnb ? 0 : 1);
|
||||||
|
}
|
||||||
|
if ($totalnb) {
|
||||||
|
$stringtoshow .= $graphtoshow;
|
||||||
|
}
|
||||||
|
$stringtoshow .= '</div>';
|
||||||
|
if ($totalnb) {
|
||||||
|
$this->info_box_contents[][]=array(
|
||||||
|
'td' => 'center',
|
||||||
|
'text' => $stringtoshow
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
$this->info_box_contents[0][0] = array(
|
||||||
|
'td' => 'class="center opacitymedium"',
|
||||||
|
'text' => $stringtoshow . $langs->trans("BoxNoTicketLastXDays", $days)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$this->info_box_contents[0][0] = array(
|
||||||
|
'td' => 'class="left"',
|
||||||
|
'text' => $langs->trans("ReadPermissionNotAllowed"),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to show box
|
||||||
|
*
|
||||||
|
* @param array $head Array with properties of box title
|
||||||
|
* @param array $contents Array with properties of box lines
|
||||||
|
* @param int $nooutput No print, only return string
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function showBox($head = null, $contents = null, $nooutput = 0)
|
||||||
|
{
|
||||||
|
return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
|
||||||
|
}
|
||||||
|
}
|
||||||
210
htdocs/core/boxes/box_graph_nb_tickets_type.php
Normal file
210
htdocs/core/boxes/box_graph_nb_tickets_type.php
Normal file
@ -0,0 +1,210 @@
|
|||||||
|
<?php
|
||||||
|
/* Module descriptor for ticket system
|
||||||
|
* Copyright (C) 2013-2016 Jean-François FERRY <hello@librethic.io>
|
||||||
|
* 2016 Christophe Battarel <christophe@altairis.fr>
|
||||||
|
* Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
|
||||||
|
*
|
||||||
|
* 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 <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file core/boxes/box_nb_ticket_last_x_days.php
|
||||||
|
* \ingroup ticket
|
||||||
|
* \brief This box shows the number of new daily tickets the last X days
|
||||||
|
*/
|
||||||
|
require_once DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage the box
|
||||||
|
*/
|
||||||
|
class box_nb_tickets_type extends ModeleBoxes
|
||||||
|
{
|
||||||
|
|
||||||
|
public $boxcode = "box_nb_tickets_type";
|
||||||
|
public $boximg = "ticket";
|
||||||
|
public $boxlabel;
|
||||||
|
public $depends = array("ticket");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var DoliDB Database handler.
|
||||||
|
*/
|
||||||
|
|
||||||
|
public $param;
|
||||||
|
public $info_box_head = array();
|
||||||
|
public $info_box_contents = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
* @param DoliDB $db Database handler
|
||||||
|
* @param string $param More parameters
|
||||||
|
*/
|
||||||
|
public function __construct($db, $param = '')
|
||||||
|
{
|
||||||
|
global $langs;
|
||||||
|
$langs->load("boxes");
|
||||||
|
$this->db = $db;
|
||||||
|
|
||||||
|
$this->boxlabel = $langs->transnoentitiesnoconv("BoxTicketType");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load data into info_box_contents array to show array later.
|
||||||
|
*
|
||||||
|
* @param int $max Maximum number of records to load
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function loadBox($max = 5)
|
||||||
|
{
|
||||||
|
global $conf, $user, $langs;
|
||||||
|
|
||||||
|
$badgeStatus0 = '#cbd3d3'; // draft
|
||||||
|
$badgeStatus1 = '#bc9526'; // validated
|
||||||
|
$badgeStatus1b = '#bc9526'; // validated
|
||||||
|
$badgeStatus2 = '#9c9c26'; // approved
|
||||||
|
$badgeStatus3 = '#bca52b';
|
||||||
|
$badgeStatus4 = '#25a580'; // Color ok
|
||||||
|
$badgeStatus4b = '#25a580'; // Color ok
|
||||||
|
$badgeStatus5 = '#cad2d2';
|
||||||
|
$badgeStatus6 = '#cad2d2';
|
||||||
|
$badgeStatus7 = '#baa32b';
|
||||||
|
$badgeStatus8 = '#993013';
|
||||||
|
$badgeStatus9 = '#e7f0f0';
|
||||||
|
$text = $langs->trans("BoxTicketType");
|
||||||
|
$this->info_box_head = array(
|
||||||
|
'text' => $text,
|
||||||
|
'limit' => dol_strlen($text)
|
||||||
|
);
|
||||||
|
|
||||||
|
$listofopplabel = array();
|
||||||
|
$listofoppcode = array();
|
||||||
|
$colorseriesstat = array();
|
||||||
|
if ($user->rights->ticket->read) {
|
||||||
|
$sql = "SELECT ctt.rowid, ctt.label, ctt.code";
|
||||||
|
$sql .= " FROM " . MAIN_DB_PREFIX . "c_ticket_type as ctt";
|
||||||
|
$sql .= " WHERE ctt.active = 1";
|
||||||
|
$sql .= $this->db->order('ctt.rowid', 'ASC');
|
||||||
|
$resql = $this->db->query($sql);
|
||||||
|
|
||||||
|
if ($resql) {
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
$i = 0;
|
||||||
|
while ($i < $num) {
|
||||||
|
$objp = $this->db->fetch_object($resql);
|
||||||
|
$listofoppcode[$objp->rowid] = $objp->code;
|
||||||
|
$listofopplabel[$objp->rowid] = $objp->label;
|
||||||
|
switch ($objp->code) {
|
||||||
|
case 'COM':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus1;
|
||||||
|
break;
|
||||||
|
case 'HELP':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus2;
|
||||||
|
break;
|
||||||
|
case 'ISSUE':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus3;
|
||||||
|
break;
|
||||||
|
case 'REQUEST':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus4;
|
||||||
|
break;
|
||||||
|
case 'OTHER':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus5;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dol_print_error($this->db);
|
||||||
|
}
|
||||||
|
$dataseries = array();
|
||||||
|
$data = array();
|
||||||
|
$sql = "SELECT t.type_code, COUNT(t.type_code) as nb";
|
||||||
|
$sql .= " FROM " . MAIN_DB_PREFIX . "ticket as t";
|
||||||
|
$sql .= " WHERE t.fk_statut <> 8";
|
||||||
|
$sql .= " GROUP BY t.type_code";
|
||||||
|
$resql = $this->db->query($sql);
|
||||||
|
if ($resql) {
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
$i = 0;
|
||||||
|
while ($i < $num) {
|
||||||
|
$objp = $this->db->fetch_object($resql);
|
||||||
|
$data[$objp->type_code] = $objp->nb;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
foreach ($listofoppcode as $rowid => $code) {
|
||||||
|
$dataseries[] = array('label' => $langs->getLabelFromKey($this->db, 'TicketTypeShort' . $code, 'c_ticket_category', 'code', 'label', $code), 'data' => $data[$code]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dol_print_error($this->db);
|
||||||
|
}
|
||||||
|
$stringtoprint = '';
|
||||||
|
$stringtoprint .= '<div class="div-table-responsive-no-min ">';
|
||||||
|
if (!empty($dataseries) && count($dataseries) > 0) {
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
||||||
|
$px1 = new DolGraph();
|
||||||
|
|
||||||
|
$mesg = $px1->isGraphKo();
|
||||||
|
$totalnb = 0;
|
||||||
|
if (!$mesg) {
|
||||||
|
$px1->SetDataColor(array_values($colorseriesstat));
|
||||||
|
$data = array();
|
||||||
|
$legend = array();
|
||||||
|
foreach ($dataseries as $value) {
|
||||||
|
$data[] = array($value['label'], $value['data']);
|
||||||
|
$totalnb += $value['data'];
|
||||||
|
}
|
||||||
|
$px1->SetData($data);
|
||||||
|
$px1->setShowLegend(2);
|
||||||
|
$px1->SetType(array('pie'));
|
||||||
|
$px1->SetLegend($legend);
|
||||||
|
$px1->SetMaxValue($px1->GetCeilMaxValue());
|
||||||
|
$px1->SetShading(3);
|
||||||
|
$px1->SetHorizTickIncrement(1);
|
||||||
|
$px1->SetCssPrefix("cssboxes");
|
||||||
|
$px1->mode = 'depth';
|
||||||
|
$px1->draw('idgraphtickettype');
|
||||||
|
$stringtoprint .= $px1->show($totalnb ? 0 : 1);
|
||||||
|
}
|
||||||
|
$stringtoprint .= '</div>';
|
||||||
|
$this->info_box_contents[][]=array(
|
||||||
|
'td' => 'center',
|
||||||
|
'text' => $stringtoprint
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
$this->info_box_contents[0][0] = array(
|
||||||
|
'td' => 'class="center opacitymedium"',
|
||||||
|
'text' => $langs->trans("BoxNoTicketSeverity"),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$this->info_box_contents[0][0] = array(
|
||||||
|
'td' => 'class="left"',
|
||||||
|
'text' => $langs->trans("ReadPermissionNotAllowed"),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to show box
|
||||||
|
*
|
||||||
|
* @param array $head Array with properties of box title
|
||||||
|
* @param array $contents Array with properties of box lines
|
||||||
|
* @param int $nooutput No print, only return string
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function showBox($head = null, $contents = null, $nooutput = 0)
|
||||||
|
{
|
||||||
|
return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
|
||||||
|
}
|
||||||
|
}
|
||||||
182
htdocs/core/boxes/box_graph_new_vs_close_ticket.php
Normal file
182
htdocs/core/boxes/box_graph_new_vs_close_ticket.php
Normal file
@ -0,0 +1,182 @@
|
|||||||
|
<?php
|
||||||
|
/* Module descriptor for ticket system
|
||||||
|
* Copyright (C) 2013-2016 Jean-François FERRY <hello@librethic.io>
|
||||||
|
* 2016 Christophe Battarel <christophe@altairis.fr>
|
||||||
|
* Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
|
||||||
|
*
|
||||||
|
* 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 <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file core/boxes/box_nb_ticket_last_x_days.php
|
||||||
|
* \ingroup ticket
|
||||||
|
* \brief This box shows the number of new daily tickets the last X days
|
||||||
|
*/
|
||||||
|
require_once DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage the box
|
||||||
|
*/
|
||||||
|
class box_new_vs_close_ticket extends ModeleBoxes
|
||||||
|
{
|
||||||
|
|
||||||
|
public $boxcode = "box_nb_tickets_type";
|
||||||
|
public $boximg = "ticket";
|
||||||
|
public $boxlabel;
|
||||||
|
public $depends = array("ticket");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var DoliDB Database handler.
|
||||||
|
*/
|
||||||
|
|
||||||
|
public $param;
|
||||||
|
public $info_box_head = array();
|
||||||
|
public $info_box_contents = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
* @param DoliDB $db Database handler
|
||||||
|
* @param string $param More parameters
|
||||||
|
*/
|
||||||
|
public function __construct($db, $param = '')
|
||||||
|
{
|
||||||
|
global $langs;
|
||||||
|
$langs->load("boxes");
|
||||||
|
$this->db = $db;
|
||||||
|
|
||||||
|
$this->boxlabel = $langs->transnoentitiesnoconv("BoxNewTicketVSClose");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load data into info_box_contents array to show array later.
|
||||||
|
*
|
||||||
|
* @param int $max Maximum number of records to load
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function loadBox($max = 5)
|
||||||
|
{
|
||||||
|
global $conf, $user, $langs;
|
||||||
|
|
||||||
|
$badgeStatus0 = '#cbd3d3'; // draft
|
||||||
|
$badgeStatus1 = '#bc9526'; // validated
|
||||||
|
$badgeStatus1b = '#bc9526'; // validated
|
||||||
|
$badgeStatus2 = '#9c9c26'; // approved
|
||||||
|
$badgeStatus3 = '#bca52b';
|
||||||
|
$badgeStatus4 = '#25a580'; // Color ok
|
||||||
|
$badgeStatus4b = '#25a580'; // Color ok
|
||||||
|
$badgeStatus5 = '#cad2d2';
|
||||||
|
$badgeStatus6 = '#cad2d2';
|
||||||
|
$badgeStatus7 = '#baa32b';
|
||||||
|
$badgeStatus8 = '#993013';
|
||||||
|
$badgeStatus9 = '#e7f0f0';
|
||||||
|
$text = $langs->trans("BoxNewTicketVSClose");
|
||||||
|
$this->info_box_head = array(
|
||||||
|
'text' => $text,
|
||||||
|
'limit' => dol_strlen($text)
|
||||||
|
);
|
||||||
|
|
||||||
|
if ($user->rights->ticket->read) {
|
||||||
|
$data = array();
|
||||||
|
$totalnb = 0;
|
||||||
|
$sql = "SELECT COUNT(t.datec) as nb";
|
||||||
|
$sql .= " FROM " . MAIN_DB_PREFIX . "ticket as t";
|
||||||
|
$sql .= " WHERE CAST(t.datec AS DATE) = CURRENT_DATE";
|
||||||
|
$sql .= " AND t.fk_statut <> 8";
|
||||||
|
$sql .= " GROUP BY CAST(t.datec AS DATE)";
|
||||||
|
$resql = $this->db->query($sql);
|
||||||
|
if ($resql) {
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
if ($num > 0) {
|
||||||
|
$objp = $this->db->fetch_object($resql);
|
||||||
|
$data[] = array($langs->trans('TicketCreatedToday'), $objp->nb);
|
||||||
|
$totalnb += $objp->nb;
|
||||||
|
} else {
|
||||||
|
$data[] = array($langs->trans('TicketCreatedToday'), 0);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dol_print_error($this->db);
|
||||||
|
}
|
||||||
|
$sql = "SELECT COUNT(t.date_close) as nb";
|
||||||
|
$sql .= " FROM " . MAIN_DB_PREFIX . "ticket as t";
|
||||||
|
$sql .= " WHERE CAST(t.date_close AS DATE) = CURRENT_DATE";
|
||||||
|
$sql .= " AND t.fk_statut = 8";
|
||||||
|
$sql .= " GROUP BY CAST(t.date_close AS DATE)";
|
||||||
|
$resql = $this->db->query($sql);
|
||||||
|
if ($resql) {
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
if ($num > 0) {
|
||||||
|
$objp = $this->db->fetch_object($resql);
|
||||||
|
$data[] = array($langs->trans('TicketClosedToday'), $objp->nb);
|
||||||
|
$totalnb += $objp->nb;
|
||||||
|
} else {
|
||||||
|
$data[] = array($langs->trans('TicketClosedToday'), 0);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dol_print_error($this->db);
|
||||||
|
}
|
||||||
|
$colorseries = array();
|
||||||
|
$colorseries[] = $badgeStatus8;
|
||||||
|
$colorseries[] = $badgeStatus2;
|
||||||
|
$stringtoprint = '';
|
||||||
|
$stringtoprint .= '<div class="div-table-responsive-no-min ">';
|
||||||
|
if (!empty($data) && count($data) > 0) {
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
||||||
|
$px1 = new DolGraph();
|
||||||
|
$mesg = $px1->isGraphKo();
|
||||||
|
if (!$mesg) {
|
||||||
|
$px1->SetDataColor(array_values($colorseries));
|
||||||
|
$px1->SetData($data);
|
||||||
|
$px1->setShowLegend(2);
|
||||||
|
$px1->SetType(array('pie'));
|
||||||
|
$px1->SetMaxValue($px1->GetCeilMaxValue());
|
||||||
|
$px1->SetShading(3);
|
||||||
|
$px1->SetHorizTickIncrement(1);
|
||||||
|
$px1->SetCssPrefix("cssboxes");
|
||||||
|
$px1->mode = 'depth';
|
||||||
|
|
||||||
|
$px1->draw('idgraphticketnewvsclosetoday');
|
||||||
|
$stringtoprint .= $px1->show($totalnb ? 0 : 1);
|
||||||
|
}
|
||||||
|
$stringtoprint .= '</div>';
|
||||||
|
$this->info_box_contents[][]=array(
|
||||||
|
'td' => 'center',
|
||||||
|
'text' => $stringtoprint
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
$this->info_box_contents[0][0] = array(
|
||||||
|
'td' => 'class="center opacitymedium"',
|
||||||
|
'text' => $langs->trans("BoxNoTicketSeverity"),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$this->info_box_contents[0][0] = array(
|
||||||
|
'td' => 'class="left"',
|
||||||
|
'text' => $langs->trans("ReadPermissionNotAllowed"),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to show box
|
||||||
|
*
|
||||||
|
* @param array $head Array with properties of box title
|
||||||
|
* @param array $contents Array with properties of box lines
|
||||||
|
* @param int $nooutput No print, only return string
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function showBox($head = null, $contents = null, $nooutput = 0)
|
||||||
|
{
|
||||||
|
return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
|
||||||
|
}
|
||||||
|
}
|
||||||
217
htdocs/core/boxes/box_graph_ticket_by_severity.php
Normal file
217
htdocs/core/boxes/box_graph_ticket_by_severity.php
Normal file
@ -0,0 +1,217 @@
|
|||||||
|
<?php
|
||||||
|
/* Module descriptor for ticket system
|
||||||
|
* Copyright (C) 2013-2016 Jean-François FERRY <hello@librethic.io>
|
||||||
|
* 2016 Christophe Battarel <christophe@altairis.fr>
|
||||||
|
* Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
|
||||||
|
*
|
||||||
|
* 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 <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file core/boxes/box_ticket_by_severity.php
|
||||||
|
* \ingroup ticket
|
||||||
|
* \brief This box shows open tickets by severity
|
||||||
|
*/
|
||||||
|
require_once DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage the box
|
||||||
|
*/
|
||||||
|
class box_ticket_by_severity extends ModeleBoxes
|
||||||
|
{
|
||||||
|
|
||||||
|
public $boxcode = "box_ticket_by_severity";
|
||||||
|
public $boximg = "ticket";
|
||||||
|
public $boxlabel;
|
||||||
|
public $depends = array("ticket");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var DoliDB Database handler.
|
||||||
|
*/
|
||||||
|
public $db;
|
||||||
|
|
||||||
|
public $param;
|
||||||
|
public $info_box_head = array();
|
||||||
|
public $info_box_contents = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
* @param DoliDB $db Database handler
|
||||||
|
* @param string $param More parameters
|
||||||
|
*/
|
||||||
|
public function __construct($db, $param = '')
|
||||||
|
{
|
||||||
|
global $langs;
|
||||||
|
$langs->load("boxes");
|
||||||
|
$this->db = $db;
|
||||||
|
|
||||||
|
$this->boxlabel = $langs->transnoentitiesnoconv("BoxTicketSeverity");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load data into info_box_contents array to show array later.
|
||||||
|
*
|
||||||
|
* @param int $max Maximum number of records to load
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function loadBox($max = 5)
|
||||||
|
{
|
||||||
|
global $conf, $user, $langs;
|
||||||
|
|
||||||
|
$badgeStatus0 = '#cbd3d3'; // draft
|
||||||
|
$badgeStatus1 = '#bc9526'; // validated
|
||||||
|
$badgeStatus1b = '#bc9526'; // validated
|
||||||
|
$badgeStatus2 = '#9c9c26'; // approved
|
||||||
|
$badgeStatus3 = '#bca52b';
|
||||||
|
$badgeStatus4 = '#25a580'; // Color ok
|
||||||
|
$badgeStatus4b = '#25a580'; // Color ok
|
||||||
|
$badgeStatus5 = '#cad2d2';
|
||||||
|
$badgeStatus6 = '#cad2d2';
|
||||||
|
$badgeStatus7 = '#baa32b';
|
||||||
|
$badgeStatus8 = '#993013';
|
||||||
|
$badgeStatus9 = '#e7f0f0';
|
||||||
|
if (file_exists(DOL_DOCUMENT_ROOT . '/theme/' . $conf->theme . '/theme_vars.inc.php')) {
|
||||||
|
include DOL_DOCUMENT_ROOT . '/theme/' . $conf->theme . '/theme_vars.inc.php';
|
||||||
|
}
|
||||||
|
$this->max = $max;
|
||||||
|
|
||||||
|
require_once DOL_DOCUMENT_ROOT."/ticket/class/ticket.class.php";
|
||||||
|
|
||||||
|
$text = $langs->trans("BoxTicketSeverity", $max);
|
||||||
|
$this->info_box_head = array(
|
||||||
|
'text' => $text,
|
||||||
|
'limit' => dol_strlen($text)
|
||||||
|
);
|
||||||
|
|
||||||
|
$listofopplabel = array();
|
||||||
|
$listofoppcode = array();
|
||||||
|
$colorseriesstat = array();
|
||||||
|
if ($user->rights->ticket->read) {
|
||||||
|
$sql = "SELECT cts.rowid, cts.label, cts.code";
|
||||||
|
$sql .= " FROM " . MAIN_DB_PREFIX . "c_ticket_severity as cts";
|
||||||
|
$sql .= " WHERE cts.active = 1";
|
||||||
|
$sql .= $this->db->order('cts.rowid', 'ASC');
|
||||||
|
$resql = $this->db->query($sql);
|
||||||
|
|
||||||
|
if ($resql) {
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
$i = 0;
|
||||||
|
while ($i < $num) {
|
||||||
|
$objp = $this->db->fetch_object($resql);
|
||||||
|
$listofoppcode[$objp->rowid] = $objp->code;
|
||||||
|
$listofopplabel[$objp->rowid] = $objp->label;
|
||||||
|
switch ($objp->code) {
|
||||||
|
case 'LOW':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus4;
|
||||||
|
break;
|
||||||
|
case 'NORMAL':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus2;
|
||||||
|
break;
|
||||||
|
case 'HIGH':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus1;
|
||||||
|
break;
|
||||||
|
case 'BLOCKING':
|
||||||
|
$colorseriesstat[$objp->rowid] = $badgeStatus8;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dol_print_error($this->db);
|
||||||
|
}
|
||||||
|
|
||||||
|
$dataseries = array();
|
||||||
|
$data = array();
|
||||||
|
$sql = "SELECT t.severity_code, COUNT(t.severity_code) as nb";
|
||||||
|
$sql .= " FROM " . MAIN_DB_PREFIX . "ticket as t";
|
||||||
|
$sql .= " WHERE t.fk_statut <> 8";
|
||||||
|
$sql .= " GROUP BY t.severity_code";
|
||||||
|
$resql = $this->db->query($sql);
|
||||||
|
if ($resql) {
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
$i = 0;
|
||||||
|
while ($i < $num) {
|
||||||
|
$objp = $this->db->fetch_object($resql);
|
||||||
|
$data[$objp->severity_code] = $objp->nb;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
foreach ($listofoppcode as $rowid => $code) {
|
||||||
|
$dataseries[] = array('label' => $langs->getLabelFromKey($this->db, 'TicketSeverityShort' . $code, 'c_ticket_category', 'code', 'label', $code), 'data' => $data[$code]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dol_print_error($this->db);
|
||||||
|
}
|
||||||
|
$stringtoprint = '';
|
||||||
|
$stringtoprint .= '<div class="div-table-responsive-no-min ">';
|
||||||
|
if (!empty($dataseries) && count($dataseries) > 0) {
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
||||||
|
$px1 = new DolGraph();
|
||||||
|
$mesg = $px1->isGraphKo();
|
||||||
|
$totalnb = 0;
|
||||||
|
if (!$mesg) {
|
||||||
|
$px1->SetDataColor(array_values($colorseriesstat));
|
||||||
|
$data = array();
|
||||||
|
$legend = array();
|
||||||
|
foreach ($dataseries as $value) {
|
||||||
|
$data[] = array($value['label'], $value['data']);
|
||||||
|
$totalnb += $value['data'];
|
||||||
|
}
|
||||||
|
$px1->SetData($data);
|
||||||
|
$px1->setShowLegend(2);
|
||||||
|
$px1->SetType(array('pie'));
|
||||||
|
$px1->SetLegend($legend);
|
||||||
|
$px1->SetMaxValue($px1->GetCeilMaxValue());
|
||||||
|
//$px1->SetHeight($HEIGHT);
|
||||||
|
$px1->SetShading(3);
|
||||||
|
$px1->SetHorizTickIncrement(1);
|
||||||
|
$px1->SetCssPrefix("cssboxes");
|
||||||
|
$px1->mode = 'depth';
|
||||||
|
|
||||||
|
$px1->draw('idgraphticketseverity');
|
||||||
|
$stringtoprint .= $px1->show($totalnb ? 0 : 1);
|
||||||
|
}
|
||||||
|
$stringtoprint .= '</div>';
|
||||||
|
$this->info_box_contents[][]=array(
|
||||||
|
'td' => 'center',
|
||||||
|
'text' => $stringtoprint
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
$this->info_box_contents[0][0] = array(
|
||||||
|
'td' => 'class="center opacitymedium"',
|
||||||
|
'text' => $langs->trans("BoxNoTicketSeverity")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$this->info_box_contents[0][0] = array(
|
||||||
|
'td' => 'class="left"',
|
||||||
|
'text' => $langs->trans("ReadPermissionNotAllowed"),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to show box
|
||||||
|
*
|
||||||
|
* @param array $head Array with properties of box title
|
||||||
|
* @param array $contents Array with properties of box lines
|
||||||
|
* @param int $nooutput No print, only return string
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function showBox($head = null, $contents = null, $nooutput = 0)
|
||||||
|
{
|
||||||
|
return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -40,17 +40,18 @@ class InfoBox
|
|||||||
if (empty($conf->global->MAIN_FEATURES_LEVEL) || $conf->global->MAIN_FEATURES_LEVEL < 2) {
|
if (empty($conf->global->MAIN_FEATURES_LEVEL) || $conf->global->MAIN_FEATURES_LEVEL < 2) {
|
||||||
return array(
|
return array(
|
||||||
0 => 'Home',
|
0 => 'Home',
|
||||||
1 => 'userhome',
|
1 => 'UsersHome',
|
||||||
2 => 'membersindex',
|
2 => 'MembersHome',
|
||||||
3 => 'thirdpartiesindex',
|
3 => 'ThirdpartiesHome',
|
||||||
|
11 => 'TicketsHome',
|
||||||
27 => 'AccountancyHome'
|
27 => 'AccountancyHome'
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return array(
|
return array(
|
||||||
0 => 'Home',
|
0 => 'Home',
|
||||||
1 => 'userhome',
|
1 => 'UsersHome',
|
||||||
2 => 'membersindex',
|
2 => 'MembersHome',
|
||||||
3 => 'thirdpartiesindex',
|
3 => 'ThirdpartiesHome',
|
||||||
4 => 'productindex',
|
4 => 'productindex',
|
||||||
5 => 'productindex',
|
5 => 'productindex',
|
||||||
6 => 'mrpindex',
|
6 => 'mrpindex',
|
||||||
@ -58,7 +59,7 @@ class InfoBox
|
|||||||
8 => 'projectsindex',
|
8 => 'projectsindex',
|
||||||
9 => 'invoiceindex',
|
9 => 'invoiceindex',
|
||||||
10 => 'hrmindex',
|
10 => 'hrmindex',
|
||||||
11 => 'ticketsindex',
|
11 => 'TicketsHome',
|
||||||
12 => 'stockindex',
|
12 => 'stockindex',
|
||||||
13 => 'sendingindex',
|
13 => 'sendingindex',
|
||||||
14 => 'receptionindex',
|
14 => 'receptionindex',
|
||||||
|
|||||||
@ -143,7 +143,11 @@ class modTicket extends DolibarrModules
|
|||||||
// Add here list of php file(s) stored in core/boxes that contains class to show a box.
|
// Add here list of php file(s) stored in core/boxes that contains class to show a box.
|
||||||
$this->boxes = array(
|
$this->boxes = array(
|
||||||
0=>array('file'=>'box_last_ticket.php', 'enabledbydefaulton'=>'Home'),
|
0=>array('file'=>'box_last_ticket.php', 'enabledbydefaulton'=>'Home'),
|
||||||
1=>array('file'=>'box_last_modified_ticket.php', 'enabledbydefaulton'=>'Home')
|
1=>array('file'=>'box_last_modified_ticket.php', 'enabledbydefaulton'=>'Home'),
|
||||||
|
2=>array('file'=>'box_ticket_by_severity.php', 'enabledbydefaulton'=>'ticketindex'),
|
||||||
|
3=>array('file'=>'box_nb_ticket_last_x_days.php', 'enabledbydefaulton'=>'ticketindex'),
|
||||||
|
4=>array('file'=>'box_nb_tickets_type.php', 'enabledbydefaulton'=>'ticketindex'),
|
||||||
|
5=>array('file'=>'box_new_vs_close_ticket.php', 'enabledbydefaulton'=>'ticketindex')
|
||||||
); // Boxes list
|
); // Boxes list
|
||||||
|
|
||||||
// Permissions
|
// Permissions
|
||||||
|
|||||||
@ -256,3 +256,12 @@ UPDATE llx_payment_salary as ps SET ps.fk_salary = ps.rowid WHERE ps.fk_salary I
|
|||||||
UPDATE llx_payment_salary as ps SET ps.ref = ps.rowid WHERE ps.ref IS NULL;
|
UPDATE llx_payment_salary as ps SET ps.ref = ps.rowid WHERE ps.ref IS NULL;
|
||||||
|
|
||||||
ALTER TABLE llx_salary CHANGE paye paye smallint default 0 NOT NULL;
|
ALTER TABLE llx_salary CHANGE paye paye smallint default 0 NOT NULL;
|
||||||
|
|
||||||
|
|
||||||
|
DELETE FROM llx_boxes WHERE box_id IN (SELECT rowid FROM llx_boxes_def WHERE file IN ('box_ticket_by_severity.php', 'box_nb_ticket_last_x_days.php', 'box_nb_tickets_type.php', 'box_new_vs_close_ticket.php'));
|
||||||
|
DELETE FROM llx_boxes_def WHERE file IN ('box_ticket_by_severity.php', 'box_nb_ticket_last_x_days.php', 'box_nb_tickets_type.php', 'box_new_vs_close_ticket.php');
|
||||||
|
|
||||||
|
-- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_graph_ticket_by_severity.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_graph_ticket_by_severity.php' AND entity = 1);
|
||||||
|
-- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_graph_nb_ticket_last_x_days.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_graph_nb_ticket_last_x_days.php' AND entity = 1);
|
||||||
|
-- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_graph_nb_tickets_type.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_graph_nb_tickets_type.php' AND entity = 1);
|
||||||
|
-- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_graph_new_vs_close_ticket.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_graph_new_vs_close_ticket.php' AND entity = 1);
|
||||||
|
|||||||
@ -111,5 +111,9 @@ BoxTitleLastCustomerShipments=Latest %s customer shipments
|
|||||||
NoRecordedShipments=No recorded customer shipment
|
NoRecordedShipments=No recorded customer shipment
|
||||||
BoxCustomersOutstandingBillReached=Customers with oustanding limit reached
|
BoxCustomersOutstandingBillReached=Customers with oustanding limit reached
|
||||||
# Pages
|
# Pages
|
||||||
AccountancyHome=Accountancy
|
UsersHome=Home users and groups
|
||||||
|
MembersHome=Home Membership
|
||||||
|
ThirdpartiesHome=Home Thirdparties
|
||||||
|
TicketsHome=Home Tickets
|
||||||
|
AccountancyHome=Home Accountancy
|
||||||
ValidatedProjects=Validated projects
|
ValidatedProjects=Validated projects
|
||||||
|
|||||||
@ -302,3 +302,13 @@ BoxLastModifiedTicket=Latest modified tickets
|
|||||||
BoxLastModifiedTicketDescription=Latest %s modified tickets
|
BoxLastModifiedTicketDescription=Latest %s modified tickets
|
||||||
BoxLastModifiedTicketContent=
|
BoxLastModifiedTicketContent=
|
||||||
BoxLastModifiedTicketNoRecordedTickets=No recent modified tickets
|
BoxLastModifiedTicketNoRecordedTickets=No recent modified tickets
|
||||||
|
BoxTicketType=Number of open tickets by type
|
||||||
|
BoxTicketSeverity=Number of open tickets by severity
|
||||||
|
BoxNoTicketSeverity=No tickets opened
|
||||||
|
BoxTicketLastXDays=Number of new tickets by days the last %s days
|
||||||
|
BoxTicketLastXDayswidget = Number of new tickets by days the last X days
|
||||||
|
BoxNoTicketLastXDays=No new tickets the last %s days
|
||||||
|
BoxNumberOfTicketByDay=Number of new tickets by day
|
||||||
|
BoxNewTicketVSClose=Number of today's new tickets versus today's closed tickets
|
||||||
|
TicketCreatedToday=Ticket created today
|
||||||
|
TicketClosedToday=Ticket closed today
|
||||||
@ -1845,12 +1845,15 @@ div.fichehalfright {
|
|||||||
print "margin-top: 10px;\n";
|
print "margin-top: 10px;\n";
|
||||||
} ?>
|
} ?>
|
||||||
}
|
}
|
||||||
div.firstcolumn div.box {
|
|
||||||
|
/*div.firstcolumn div.box {
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
div.secondcolumn div.box {
|
div.secondcolumn div.box {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
|
|
||||||
/* Force values on one colum for small screen */
|
/* Force values on one colum for small screen */
|
||||||
@media only screen and (max-width: 1000px)
|
@media only screen and (max-width: 1000px)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1846,12 +1846,14 @@ div.fichehalfright {
|
|||||||
print "margin-top: 10px;\n";
|
print "margin-top: 10px;\n";
|
||||||
} ?>
|
} ?>
|
||||||
}
|
}
|
||||||
div.firstcolumn div.box {
|
|
||||||
|
/*div.firstcolumn div.box {
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
div.secondcolumn div.box {
|
div.secondcolumn div.box {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
/* Force values on one colum for small screen */
|
/* Force values on one colum for small screen */
|
||||||
@media only screen and (max-width: 900px)
|
@media only screen and (max-width: 900px)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -26,6 +26,7 @@ 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.'/ticket/class/ticketstats.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
|
||||||
|
|
||||||
$hookmanager = new HookManager($db);
|
$hookmanager = new HookManager($db);
|
||||||
|
|
||||||
@ -70,6 +71,7 @@ $object = new Ticket($db);
|
|||||||
/*
|
/*
|
||||||
* View
|
* View
|
||||||
*/
|
*/
|
||||||
|
$resultboxes = FormOther::getBoxesArea($user, "11"); // Load $resultboxes (selectboxlist + boxactivated + boxlista + boxlistb)
|
||||||
|
|
||||||
$form = new Form($db);
|
$form = new Form($db);
|
||||||
$tickesupstatic = new Ticket($db);
|
$tickesupstatic = new Ticket($db);
|
||||||
@ -77,7 +79,7 @@ $tickesupstatic = new Ticket($db);
|
|||||||
llxHeader('', $langs->trans('TicketsIndex'), '');
|
llxHeader('', $langs->trans('TicketsIndex'), '');
|
||||||
|
|
||||||
$linkback = '';
|
$linkback = '';
|
||||||
print load_fiche_titre($langs->trans('TicketsIndex'), $linkback, 'ticket');
|
print load_fiche_titre($langs->trans('TicketsIndex'), $resultboxes['selectboxlist'], 'ticket');
|
||||||
|
|
||||||
|
|
||||||
$dir = '';
|
$dir = '';
|
||||||
@ -112,7 +114,12 @@ $startyear = $endyear - 1;
|
|||||||
$WIDTH = (($shownb && $showtot) || !empty($conf->dol_optimize_smallscreen)) ? '100%' : '80%';
|
$WIDTH = (($shownb && $showtot) || !empty($conf->dol_optimize_smallscreen)) ? '100%' : '80%';
|
||||||
$HEIGHT = '200';
|
$HEIGHT = '200';
|
||||||
|
|
||||||
print '<div class="fichecenter"><div class="fichethirdleft">';
|
print '<div class="clearboth"></div>';
|
||||||
|
print '<div class="fichecenter fichecenterbis">';
|
||||||
|
|
||||||
|
print '<div class="twocolumns">';
|
||||||
|
|
||||||
|
print '<div class="firstcolumn fichehalfleft boxhalfleft" id="boxhalfleft">';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Statistics area
|
* Statistics area
|
||||||
@ -181,7 +188,7 @@ if ($result) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
include_once DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php';
|
include DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php';
|
||||||
|
|
||||||
$dataseries = array();
|
$dataseries = array();
|
||||||
$colorseries = array();
|
$colorseries = array();
|
||||||
@ -279,8 +286,13 @@ print '</div>';
|
|||||||
// Build graphic number of object
|
// Build graphic number of object
|
||||||
$data = $stats->getNbByMonthWithPrevYear($endyear, $startyear);
|
$data = $stats->getNbByMonthWithPrevYear($endyear, $startyear);
|
||||||
|
|
||||||
print '</div><div class="fichetwothirdright"><div class="ficheaddleft">';
|
print '<br>'."\n";
|
||||||
|
|
||||||
|
print $resultboxes['boxlista'];
|
||||||
|
|
||||||
|
print '</div>'."\n";
|
||||||
|
|
||||||
|
print '<div class="secondcolumn fichehalfright boxhalfright" id="boxhalfright">';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Latest tickets
|
* Latest tickets
|
||||||
@ -398,12 +410,20 @@ if ($result) {
|
|||||||
dol_print_error($db);
|
dol_print_error($db);
|
||||||
}
|
}
|
||||||
|
|
||||||
print '</div></div></div>';
|
print $resultboxes['boxlistb'];
|
||||||
|
|
||||||
|
print '</div>';
|
||||||
|
print '</div>';
|
||||||
|
print '</div>';
|
||||||
|
|
||||||
|
|
||||||
print '<div style="clear:both"></div>';
|
print '<div style="clear:both"></div>';
|
||||||
|
|
||||||
$parameters = array('user' => $user);
|
$parameters = array('user' => $user);
|
||||||
$reshook = $hookmanager->executeHooks('dashboardTickets', $parameters, $object); // Note that $action and $object may have been modified by hook
|
$reshook = $hookmanager->executeHooks('dashboardTickets', $parameters, $object); // Note that $action and $object may have been modified by hook
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// End of page
|
// End of page
|
||||||
llxFooter('');
|
llxFooter('');
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user