___tempoDuracao = isset($_REQUEST['tempoDuracao']) ? $_REQUEST['tempoDuracao'] : 1; $this->___ramalSel = isset($_POST['ramal']) ? $_POST['ramal'] : ''; $this->___dataIni = IsPostBack() ? $_POST['dataIni'] : date('d/m/Y')." 00:00"; $this->___dataFim = IsPostBack() ? $_POST['dataFim'] : date('d/m/Y')." 23:59"; } function ___ValidaForm() { parent::___ValidaForm(); if (empty($this->___tempoDuracao)) { GeraExcept('Informe um tempo de duração!'); } } function ___FiltrosRelatorio() { if ($this->___media != MEDIA_PRINT_GRID) { /* * Recupera os filtros da sess�o do usu�rio. */ list($this->___dataIni, $this->___dataFim) = $_SESSION["SSstorageFiltros"]; if ($this->___media == MEDIA_PRINT_HTML) { return sprintf("Data Inicial: %s Data Final: %s ", $this->___dataIni, $this->___dataFim); } $fltCsv = array(); $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; } $lkPrint = ""; if ($this->___dataCount) { $prt = 'Clique aqui para imprimir!'; $prtHtml = "\"Clique"; $lkPrint .= sprintf($prtHtml, $this->GetidProg(), MEDIA_PRINT_HTML, substr(LimpaString(GetDispProgSel($this->GetIdProg())), 0, 20), 'print.gif'); $lkPrint .= sprintf($prt, $this->GetidProg(), MEDIA_PRINT_EXCEL, 'prt-xls.png'); $lkPrint .= sprintf($prt, $this->GetidProg(), MEDIA_PRINT_PDF, 'prt-pdf.png'); $lkPrint .= sprintf($prt, $this->GetidProg(), MEDIA_PRINT_CSV, 'prt-csv.png'); } /* * Personalise esta função se necessitar de outras opções de filtro. */ $filtro = ''; /* * Rotulos. */ $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; /* * Valores. */ $filtro .= '' . ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= '
 Data Inicial Data Final Ramal Duração
 
'; $filtro .= sprintf('Todos' . 'maior que(>0)' . 'Igual a 0 (= 0)', $this->___tempoDuracao == 1 ? 'checked' : '', $this->___tempoDuracao == 2 ? 'checked' : '', $this->___tempoDuracao == 3 ? 'checked' : ''); $filtro .= '
%s
'; /* * Guarda os filtros passados para recuperar na emiss�o dos relat?ios para impress�o. */ $_SESSION["SSstorageFiltros"] = array($this->___dataIni, $this->___dataFim); return sprintf($filtro, $this->___dataIni, $this->___dataFim, $lkPrint); } protected function ___GetDadosDb() { $dataIni = strlen($this->___dataIni) == 10 ? FormatDtMssql($this->___dataIni) . " 00:00": FormatDtMssql(substr($this->___dataIni, 0, 10)). substr($this->___dataIni, 10, 16); $dataFim = strlen($this->___dataFim) == 10 ? FormatDtMssql($this->___dataFim) . " 23:59": FormatDtMssql(substr($this->___dataFim, 0, 10)). substr($this->___dataFim, 10, 16); $duracao = $this->___tempoDuracao; $ramal = $this->___ramalSel; $query = sprintf("SELECT a.uniqueid, a.calldate, a.src, a.dst, CASE WHEN(d.evento = 'ABANDON')THEN strtoint(d.param3) ELSE a.billsec END AS tempo_atendimento, d.evento, CASE WHEN(tplg_codigo in(23,24))THEN 'MÓVEL' ELSE c.nome_municipio END AS nome_municipio, c.uf, b.tplg_descricao FROM pbx_bilhetes a INNER JOIN pbx_tipo_ligacao b ON b.tplg_codigo = a.tipo_chamada INNER JOIN pbx_municipios c ON c.id = a.id_municipio LEFT JOIN pbx_eventos_dacs d ON d.uid2 = a.uniqueid AND d.evento IN('COMPLETEAGENT','COMPLETECALLER','ABANDON') LEFT JOIN pbx_usuarios e ON e.matricula = SUBSTRING(d.agente,7,4) WHERE b.tplg_tipo = 2 AND a.calldate::timestamp >= '%s' AND a.calldate::timestamp <= '%s' AND a.lastapp <> 'Transferred Call'", $dataIni, $dataFim); if ($ramal) { $query .= " AND a.dst = '$ramal' "; } if ($duracao == 2) { $query .= " AND a.billsec > 0 "; } if ($duracao == 3) { $query .= " AND a.billsec = 0 "; } $query .= " ORDER BY a.calldate"; $result = $this->___GetQuery($query); $row = pg_fetch_all($result); $this->SetData($row ? $row : array()); } protected function ___PreparaCsv() { $nomeDac = ""; $dataRel = array(); $dataAgrup = array(); $filtro = $this->___FiltrosRelatorio(); $dataRel[] = GenerateCsvFromArray($filtro); $dadosCabecalio = array( 'Ramal' => 'align="left"', 'Data' => 'align="right"', 'Quantidade' => 'align="right"', 'Duracao' => 'align="right"', ); $dadosField = array( 'ramal' => 'align="left"', 'data' => 'align="right"', 'quantidade' => 'align="right"', 'duracao' => 'align="right"', ); $dataRel[] = GenerateCsvFromArray(array_keys($dadosCabecalio)); $somaTempo = 0; $somaQuantidade = 0; /* * Inicia o relat�rio. */ $dadosRamalTotal = array(); $x = 1; foreach ($this->GetData()[0] as $row) { $chave = null; $data = date('d/m/Y', strtotime($row['calldate'])); foreach ($dadosRamalTotal as $key => $value) { if ($value['ramal'] == $row['dst'] && strtotime($value['data']) == strtotime($data)) { $chave = $key; } } if ($chave) { $dadosRamalTotal[$chave]['quantidade'] ++; $dadosRamalTotal[$chave]['duracao'] += $row['tempo_atendimento']; } else { $dadosRamalTotal[$x]['ramal'] = $row['dst']; $dadosRamalTotal[$x]['data'] = $data; $dadosRamalTotal[$x]['quantidade'] ++; $dadosRamalTotal[$x]['duracao'] += $row['tempo_atendimento']; $x++; } $somaTempo += $row["tempo_atendimento"]; // $row["tempo_atendimento"] = SecondToStrTime($row["tempo_atendimento"]); $somaQuantidade ++; } foreach($dadosRamalTotal as $row) { $linha = array(); foreach ($dadosField as $key => $value) { $linha[] = $key == "duracao" ? SecondToStrTime($row["$key"]) : $row["$key"]; } $dataRel[] = GenerateCsvFromArray($linha); } $dataRel[] = $linha; $linha1 = array('Total', '', 'Registros: '.$somaQuantidade, 'Duracao: '.SecondToStrTime($somaTempo)); $dataRel[] = GenerateCsvFromArray($linha1); $dataRel[] = $linha1; $this->___dataRel[] = $dataRel; } protected function ___PreparaExcel() { $dataRel = array(); $dataAgrup = array(); $filtro = $this->___FiltrosRelatorio(); /* * Inicia o relatório. */ /* * Cria os filtros */ $linha = array('LABEL'); foreach ($filtro as $values) { list($label, $value) = explode(":", $values); $linha[] = $label; } $dataRel[] = $linha; $linha = array('DADOS'); foreach ($filtro as $values) { list($label, $value) = explode(":", $values); $linha[] = $value; } $dataRel[] = $linha; $dadosCabecalio = array('Ramal', 'Data', 'Quantidade', 'Duracao'); $dadosField = array('ramal', 'data', 'quantidade', 'duracao'); /* * Monta a linha de cabecalio. */ $linha = array('LABEL'); foreach ($dadosCabecalio as $value) { $linha[] = $value; } $dataRel[] = $linha; $somaTempo = 0; $somaQuantidade = 0; /* * Linhas de dados. */ $dadosRamalTotal = array(); $x = 1; foreach ($this->GetData()[0] as $row) { $chave = null; $data = date('d/m/Y', strtotime($row['calldate'])); foreach ($dadosRamalTotal as $key => $value) { if ($value['ramal'] == $row['dst'] && strtotime($value['data']) == strtotime($data)) { $chave = $key; } } if ($chave) { $dadosRamalTotal[$chave]['quantidade'] ++; $dadosRamalTotal[$chave]['duracao'] += $row['tempo_atendimento']; } else { $dadosRamalTotal[$x]['ramal'] = $row['dst']; $dadosRamalTotal[$x]['data'] = $data; $dadosRamalTotal[$x]['quantidade'] ++; $dadosRamalTotal[$x]['duracao'] += $row['tempo_atendimento']; $x++; } $somaTempo += $row["tempo_atendimento"]; // $row["tempo_atendimento"] = SecondToStrTime($row["tempo_atendimento"]); $somaQuantidade ++; } foreach($dadosRamalTotal as $row) { $linha = array('DADOS'); foreach ($dadosField as $key) { $linha[] = $key == "duracao" ? SecondToStrTime($row["$key"]) : $row["$key"]; } $dataRel[] = $linha; } $linha = array('LABEL', 'Total', '', 'Registros: ' . $somaQuantidade, 'Duracao: ' . SecondToStrTime($somaTempo)); $dataRel[] = $linha; $this->___dataRel[] = $dataRel; } protected function ___PreparaGrid() { $dadosCabecalio = array( 'Ramal' => 'align="left"', 'Data' => 'align="right"', 'Quantidade' => 'align="right"', 'Duração' => 'align="right"' ); $dadosField = array( 'ramal' => 'align="left"', 'data' => 'align="right"', 'quantidade' => 'align="right"', 'duracao' => 'align="right"' ); /* * Inicia o relat�rio. */ $dataRel[] = ''; /* * Monta a linha de cabecalio. */ $linhaH = ''; foreach ($dadosCabecalio as $key => $value) { $linhaH .= sprintf("", $value, $key); } $linhaH .= ""; $dataRel[] = $linhaH; /* * Verifica se retornou dados */ if (!IsPostBack() || !count($this->GetData()[0])) { $dataRel[] = sprintf("
%s
%s
", count($dadosCabecalio) - 1, (!IsPostBack() ? 'Informe os parametros e clique em consultar!' : 'Nenhum registro encontado!')); $this->___dataRel[] = $dataRel; return; } $somaTempo = 0; $somaQuantidade = 0; /* * Linhas de dados. */ $dadosRamalTotal = array(); $x = 1; foreach ($this->GetData()[0] as $row) { $chave = null; $data = date('d/m/Y', strtotime($row['calldate'])); foreach ($dadosRamalTotal as $key => $value) { if ($value['ramal'] == $row['dst'] && strtotime($value['data']) == strtotime($data)) { $chave = $key; } } if ($chave) { $dadosRamalTotal[$chave]['quantidade'] ++; $dadosRamalTotal[$chave]['duracao'] += $row['tempo_atendimento']; } else { $dadosRamalTotal[$x]['ramal'] = $row['dst']; $dadosRamalTotal[$x]['data'] = $data; $dadosRamalTotal[$x]['quantidade'] ++; $dadosRamalTotal[$x]['duracao'] += $row['tempo_atendimento']; $x++; } $somaTempo += $row["tempo_atendimento"]; // $row["tempo_atendimento"] = SecondToStrTime($row["tempo_atendimento"]); $somaQuantidade ++; } foreach ($dadosRamalTotal as $row) { $linha .= ""; foreach ($dadosField as $key => $value) { $linha .= sprintf("%s", $value, $key == "duracao" ? SecondToStrTime($row["$key"]) : $row["$key"]); } $linha .= ""; } $dataRel[] = $linha; /* * Linha de totalizacao. */ $linha = 'TotalRegistros: %sDuração: %s'; $dataRel[] = sprintf($linha, $somaQuantidade, SecondToStrTime($somaTempo)); /* * Fecha relatorio. */ $dataRel[] = ''; $this->___dataRel[] = $dataRel; } protected function ___PreparaHtml() { } protected function ___PreparaPdf() { list($this->___dataIni, $this->___dataFim) = $_SESSION["SSstorageFiltros"]; $somaTempo = 0; $somaQuantidade = 0; $dadosRamalTotal = array(); $x = 1; foreach ($this->GetData()[0] as $row) { $chave = null; $data = date('d/m/Y', strtotime($row['calldate'])); foreach ($dadosRamalTotal as $key => $value) { if ($value['ramal'] == $row['dst'] && strtotime($value['data']) == strtotime($data)) { $chave = $key; } } if ($chave) { $dadosRamalTotal[$chave]['quantidade'] ++; $dadosRamalTotal[$chave]['duracao'] += $row['tempo_atendimento']; } else { $dadosRamalTotal[$x]['ramal'] = $row['dst']; $dadosRamalTotal[$x]['data'] = $data; $dadosRamalTotal[$x]['quantidade'] ++; $dadosRamalTotal[$x]['duracao'] += $row['tempo_atendimento']; $x++; } $somaTempo += $row["tempo_atendimento"]; // $row["tempo_atendimento"] = SecondToStrTime($row["tempo_atendimento"]); $somaQuantidade ++; } foreach ($dadosRamalTotal as $key => $val) { $dadosRamalTotal[$key]['duracao'] = SecondToStrTime($val['duracao']); } //HEADER DA TABELA DO PDF -> DADOS EM ARRAY $header = array( 'Ramal' => 'L', 'Data' => 'R', 'Quantidade' => 'R', 'Duração' => 'R' ); $dataHeader = array( 'ramal' => 'L', 'data' => 'R', 'quantidade' => 'R', 'duracao' => 'R' ); $widthHeader = array(45, 45, 45, 45); $totaliza = array('Total', '', "Registros: " . $somaQuantidade, "Duração: " . SecondToStrTime($somaTempo)); //Monta o array para passar para o prepara; Necessário passar 6 parametros $table1 = array($header, $dataHeader, $dadosRamalTotal, $widthHeader, $totaliza, 0); $this->___dataRel = array($table1); } 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(); } /* * Inclua os scripts necess�rios aqui. */ $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'); } } $relChmEnt = new EntrantesRamalTotal($idProg, $dbcon, null); $relChmEnt->ExecutaRelatorio(); ?>