PABX da Simples IP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

305 lines
12 KiB

<?php
include_once 'util/relatoriosBase.php';
class RelMsgWhatsapp extends Relatorios {
private $___agente;
private $___fila;
public function __construct($idProg, $dbcon, $incDac) {
parent::__construct($idProg, $dbcon, $incDac);
$this->___agente = isset($_POST['agente']) ? $_POST['agente'] : '';
$this->___fila = isset($_POST['fila']) ? $_POST['fila'] : '';
}
function ___FiltrosRelatorio() {
$agente = $this->getAgente($this->___agente);
if ($this->___media != MEDIA_PRINT_GRID) {
/*
* Recupera os filtros da sessão do usuário.
*/
list($this->___dataIni, $this->___dataFim, $this->___tipoRelatorio) = $_SESSION["SSstorageFiltros"];
if ($this->___media == MEDIA_PRINT_HTML) {
$fila = $this->GetIncDac() ? 'Fila: ' . GetDacDesc($this->GetDbCon(), $this->GetIdProg() . ' ') : '';
return sprintf("%sData Inicial: %s Data Final: %s Tipo: %s", $fila, $this->___dataIni, $this->___dataFim, ($this->___tipoRelatorio ? 'Analítico' : 'Sintético'));
}
$fltCsv = array();
if ($this->GetIncDac()) {
$fltCsv[] = 'Fila:' . GetDacDesc($this->GetDbCon(), $this->___dac);
}
$fltCsv[] = "Data Inicial:" . $this->___dataIni;
$fltCsv[] = "Data Final:" . $this->___dataFim;
$fltCsv[] = "Data Emissao:" . date('d/m/Y H:i:s');
$fltCsv[] = "Emitido Por:" . GetLogin();
return $fltCsv;
}
if ($this->GetIncDac()) {
$dacs = GetDac($this->GetDbCon(), $this->___dac, "", 0, 1, 0, 0, 1);
}
$lkPrint = "";
if ($this->___dataCount) {
$prt = '<a href="index.php?idProg=%s&media=%s&tipoRelatorio=%s"><img src="imgSite/%s" alt="Clique aqui para imprimir!" width="24" height="24" border="0"></a>';
//$prtHtml = "<a href=\"javaScript:NovaJanela('index.php?idProg=%s&media=%s&tipoRelatorio=%s', '%s', '720', '700', 'scrollbars=YES');\"><img src=\"imgSite/%s\" alt=\"Clique aqui para imprimir!\" width=\"24\" height=\"24\" border=\"0\"></a>";
$lkPrint .= sprintf($prtHtml, $this->GetidProg(), MEDIA_PRINT_HTML, $this->___tipoRelatorio, substr(LimpaString(GetDispProgSel($this->GetIdProg())), 0, 20), 'print.gif');
//$lkPrint .= sprintf($prt, $this->GetidProg(), MEDIA_PRINT_EXCEL, $this->___tipoRelatorio, 'prt-xls.png');
// $lkPrint .= sprintf($prt, $this->GetidProg(), MEDIA_PRINT_PDF, $this->___tipoRelatorio, 'prt-pdf.png');
//$lkPrint .= sprintf($prt, $this->GetidProg(), MEDIA_PRINT_CSV, $this->___tipoRelatorio, 'prt-csv.png');
}
// $tipoRel = !$this->___tipoRelatorio ? '' : 'checked="checked"';
/*
* Personalise esta função se necessitar de outras op��es de filtro.
*/
$filtro = '<table border="0" cellspacing="1" cellpadding="1">';
/*
* Rotulos.
*/
$filtro .= '<tr>';
$filtro .= '<td>Fila</td>';
$filtro .= '<td>Data Inicial</td>';
$filtro .= '<td>Data Final </td>';
$filtro .= '<td>Agente</td>';
$filtro .= '<td align="center" valign="middle">&nbsp;</td>';
$filtro .= '</tr>';
/*
* Valores.
*/
$filtro .= '<tr>';
$filtro .= sprintf('<td>%s</td>', $this->getDac($this->___fila));
$filtro .= '<td><input name="dataIni" id="dataIni" type="text" size="15" maxlength="10" value="%s" onkeyup="formataData(this)" title="dd/mm/aaaa"></td>';
$filtro .= '<td><input name="dataFim" id="dataFim" type="text" size="15" maxlength="10" value="%s" onkeyup="formataData(this)" title="dd/mm/aaaa"></td>';
$filtro .= sprintf('<td>%s</td>', $agente);
$filtro .= '<td><input type="submit" name="btConsulta" id="btConsulta" value="Consultar"></td>';
$filtro .= '<td>%s</td>';
$filtro .= '</tr>';
$filtro .= '</table>';
/*
* Guarda os filtros passados para recuperar na emissão dos relatóios para impressão.
*/
$_SESSION["SSstorageFiltros"] = array($this->___dataIni, $this->___dataFim, $this->___tipoRelatorio);
return sprintf($filtro, $this->___dataIni, $this->___dataFim, $lkPrint);
}
protected function ___GetDadosDb() {
$dataIni = FormatDtMssql($this->___dataIni);
$dataFim = FormatDtMssql($this->___dataFim);
$agente = $this->___agente;
$fila = $this->___fila;
$query = "SELECT DISTINCT a.uniqueid, cliente_id, fila, a.nome, a.matricula, evento, a.data_reg, a.context
FROM md_atendimento a
INNER JOIN md_evento b ON a.uniqueid = b.uniqueid
INNER JOIN pbx_usuarios c ON c.matricula = b.matricula
INNER JOIN pbx_queues_grupos d ON d.nome = b.fila
WHERE a.data_reg::DATE >= '$dataIni' AND a.data_reg::DATE <= '$dataFim'
AND evento = 'START' ";
if ($agente) {
$query .= " AND a.nome = '$agente' ";
}
if ($fila) {
$query .= " AND b.fila = '$fila' ";
}
$query .= " ORDER BY a.data_reg";
$result = $this->___GetQuery($query);
$row = pg_fetch_all($result);
if (!$agente && !$fila) {
$_SESSION['SSDataWPP'] = $row;
}
$this->SetData($row ? $row : array());
$queryDac = "SELECT * FROM pbx_queues_grupos WHERE midiafila = 'S';";
$resultDac = $this->___GetQuery($queryDac);
$rowDac = pg_fetch_all($resultDac);
$this->SetData($rowDac ? $rowDac : array());
}
protected function ___PreparaCsv() {
}
protected function ___PreparaExcel() {
}
protected function ___PreparaGrid() {
$dataRel = array();
$dadosCabecalio = array(
'Data/Hora' => 'align="center"',
'Origem' => 'align="center"',
'Matricula' => 'align="center"',
'Fila' => 'align=center',
'Perfil' => 'align=center',
'Plataforma' => 'align=center',
'Status' => 'align=center',
'Visualizar' => 'align=center'
);
$dadosField = array(
'data_reg' => 'align="center"',
'cliente_id' => 'align="center"',
'matricula' => 'align="center"',
'fila' => 'align="center"',
'nome' => 'align="center"',
'context' => 'align=center',
'evento' => 'align="center"',
'detalhes' => 'align=center'
);
/*
* Inicia o relatório.
*/
$dataRel[] = '<table width="70%" cellpadding="2" class="grid">';
/*
* Monta a linha de cabecalio.
*/
$linha = '<tr>';
$linha .= "<th align=\"center\" colspan=\"9\">Atendimento WhatsApp</th>";
$linha .= "</tr>";
$dataRel[] = $linha;
/*
* Verifica se retornou dados
*/
if (!IsPostBack() || !count($this->GetData()[0])) {
$dataRel[] = sprintf("<tr><td align=\"center\" colspan=\"%s\">%s</td></tr></table>", count(1), (!IsPostBack() ? 'Informe os parametros e clique em consultar!' : 'Nenhum registro encontado!'));
$this->___dataRel[] = $dataRel;
return;
}
$linhaC = "<tr>";
foreach ($dadosCabecalio as $key => $value) {
$linhaC .= sprintf("<th %s>%s</th>", $value, $key);
}
$linhaC .= "</tr>";
$dataRel[] = $linhaC;
/*
* Linhas de dados.
*/
$count = 0;
$imgrel = "<img src=\"imgSite/detalhado.png\" width=\"12\" height=\"16\" alt=\"Detalhes WhatsApp\" title=\"Detalhes WhatsApp\" />";
foreach ($this->GetData()[0] as $row) {
$count++;
$linkRel = sprintf("<a href=\"javaScript:NovaJanela('index.php?idProg=354&uid=%s', 'MensagensWhatsApp', '850', '600', 'resizable=YES,scrollbars=YES')\"style=\"color:#000;\" >%s</a>", base64_encode($row['uniqueid']), $imgrel);
$row['data_reg'] = date('d/m/Y H:i:s', strtotime($row['data_reg']));
$row['detalhes'] = $linkRel;
$row['nome'] = utf8_decode($row['nome']);
$row['context'] = strtoupper($row['context']);
// Formata linha de dados.
$linha = "<tr>";
foreach ($dadosField as $key => $value) {
$linha .= sprintf("<td %s>%s</td>", $value, $row["$key"]);
}
$linha .= "</tr>";
$dataRel[] = $linha;
}
$dataRel[] = "<tr><th align='left' colspan='8' >Total: {$count}</th></tr>";
$dataRel[] = '</table>';
$this->___dataRel[] = $dataRel;
}
protected function ___PreparaHtml() {
}
protected function ___PreparaPdf() {
}
private function getAgente($select = null) {
$agentes = array();
foreach ($_SESSION['SSDataWPP'] as $agente) {
if (!in_array($agente['nome'], $agentes)) {
array_push($agentes, $agente['nome']);
}
}
$opt = "<select name=\"agente\" id=\"agente\" size=\"1\">";
$opt .= "<option value='0'>Todos</option>";
if ($agentes) {
foreach ($agentes as $val) {
$selected = $select == $val ? 'selected' : '';
$opt .= "<option value='{$val}' $selected>{$val}</option>";
}
}
$opt .= "</select>";
return $opt;
}
private function getDac($select = null) {
$filas = array();
foreach ($this->GetData()[1] as $fila) {
if (!in_array($fila['nome'], $filas)) {
array_push($filas, $fila['nome']);
}
}
$opt = "<select name=\"fila\" id=\"fila\" size=\"1\">";
$opt .= "<option value=''>Todas</option>";
if ($filas) {
foreach ($filas as $val) {
$selected = $select == $val ? 'selected' : '';
$opt .= "<option value='{$val}' $selected>{$val}</option>";
}
}
$opt .= "</select>";
return $filas ? $opt : null;
}
public function ExecutaRelatorio() {
global $jsStartup, $jsJQuery, $smarty;
try {
/*
* Use esta função para validar dados do formulário.
*/
$this->___ValidaForm();
/*
* Recupera os dados do banco.
*/
$this->___ConteudoRelatorio();
/*
* Imprime relatório de acordo com a media passada.
*/
$conteudoRelatorio = $this->___ImprimeRelatorio();
} catch (Exception $exc) {
$this->SetMsg($exc->getMessage());
$jsStartup[] = sprintf("alert('%s');", $this->GetMsg());
$this->___GravaLog();
}
$jsJQuery[] = "\$('#dataIni').keypress(function(){formataDataHora(this);}) ";
$jsJQuery[] = "\$('#dataFim').keypress(function(){formataDataHora(this);}) ";
$smarty->assign('filtros', $this->___FiltrosRelatorio());
$smarty->assign('conteudo', $conteudoRelatorio);
$smarty->assign('msg', $this->GetMsg());
GetTemplate($smarty, 'relatoriosGrid.tpl');
}
}
$relMsgWhatsapp = new RelMsgWhatsapp($idProg, $dbcon, 0);
$relMsgWhatsapp->ExecutaRelatorio();
?>