___tempoDuracao = isset($_POST['tempoDuracao']) ? $_POST['tempoDuracao'] : 1; $this->___ramal = isset($_POST['ramal']) ? $_POST['ramal'] : ''; $this->___destino = isset($_POST['destino']) ? $_POST['destino'] : ''; $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!'); } if ($this->___ramal) { if (!soNumero($this->___ramal)) { GeraExcept('Informe apenas números no campo de Ramal!'); } } if ($this->___destino) { if (!soNumero($this->___destino)) { GeraExcept('Informe apenas números no campo de Destino!'); } } } function ___FiltrosRelatorio() { if ($this->___media != MEDIA_PRINT_GRID) { /* * Recupera os filtros da sessão do usuário. */ list($this->___dataIni, $this->___dataFim, $this->___ramal, $this->___destino) = $_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 .= ''; $filtro .= ''; /* * Valores. */ $filtro .= '' . ''; $filtro .= ''; $filtro .= ''; $filtro .= sprintf('',$this->___ramal ? $this->___ramal : ''); $filtro .= sprintf('',$this->___destino ? $this->___destino : ''); $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= ''; $filtro .= '
 Data Inicial Data Final Ramal Destino 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, $this->___ramal, $this->___destino); 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); $ramal = $this->___ramal; $destino = $this->___destino; $duracao = $this->___tempoDuracao; $query = "SELECT a.src, CASE WHEN (SUBSTRING(a.dst,1,1) = 'a')THEN 'anuncio' WHEN (SUBSTRING(a.dst,1,1) = 's')THEN 'transferencia' ELSE a.dst END AS dst, a.billsec, a.calldate, a.uniqueid, tplg_descricao FROM pbx_bilhetes a INNER JOIN pbx_tipo_ligacao b ON a.tipo_chamada = b.tplg_codigo WHERE a.calldate::TIMESTAMP >= '$dataIni' AND a.calldate::TIMESTAMP <= '$dataFim' AND tplg_tipo = 1 AND id_bilhetes = (SELECT MAX(id_bilhetes) FROM pbx_bilhetes WHERE uniqueid = a.uniqueid) "; $query .= $ramal ? " AND a.src = '$ramal'" : " AND a.src <> ''"; $query .= $destino ? " AND a.dst = '$destino'" : " AND a.dst <> ''"; switch ($duracao){ case 2: $query .= " AND a.billsec > 0"; break; case 3: $query .= " AND a.billsec = 0"; break; } $query .= " AND NOT EXISTS(SELECT '' FROM pbx_eventos_dacs WHERE uid2 = a.uniqueid) AND lastapp <> 'Transferred Call' ORDER BY calldate, a.src"; $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('Data/Hora','Origem','Destino','Duracao'); $dadosField = array('calldate','src','dst','billsec'); $dataRel[] = GenerateCsvFromArray($dadosCabecalio); $somaTempo = 0; $somaQuantidade = 0; /* * Inicia o relatório. */ foreach ($this->GetData()[0] as $row) { $row["calldate"] = date('d/m/Y H:i', strtotime($row["calldate"])); $somaTempo += $row["billsec"]; $row["billsec"] = SecondToStrTime($row["billsec"]); $somaQuantidade ++; $linha = array(); foreach ($dadosField as $value) { $linha[] = $row["$value"]; } $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('Data/Hora','Origem','Destino','Duracao'); $dadosField = array('calldate','src','dst','billsec'); /* * Monta a linha de cabecalio. */ $linha = array('LABEL'); foreach ($dadosCabecalio as $value) { $linha[] = $value; } $dataRel[] = $linha; $somaTempo = 0; $somaQuantidade = 0; /* * Linhas de dados. */ foreach ($this->GetData()[0] as $row) { $row["calldate"] = date('d/m/Y H:i', strtotime($row["calldate"])); $somaTempo += $row["billsec"]; $row["billsec"] = SecondToStrTime($row["billsec"]); $somaQuantidade ++; // Formata linha de dados. $linha = array('DADOS'); foreach ($dadosField as $key) { $linha[] = $row["$key"]; } $dataRel[] = $linha; } $linha = array('LABEL', 'Total', '', 'Registros: '.$somaQuantidade, 'Duracao: '.SecondToStrTime($somaTempo)); $dataRel[] = $linha; $this->___dataRel[] = $dataRel; } protected function ___PreparaGrid() { $dadosCabecalio = array( 'Data/Hora' => 'align="center"', 'Origem' => 'align="left"', 'Destino' => 'align="left"', 'Duração' => 'align="center"' ); $dadosField = array( 'calldate' => 'align="center"', 'src' => 'align="left"', 'dst' => 'align="left"', 'billsec' => 'align="center"' ); /* * Inicia o relatório. */ $dataRel[] = ''; /* * Monta a linha de cabecalio. */ $linha = ''; foreach ($dadosCabecalio as $key => $value) { $linha .= sprintf("", $value, $key); } $linha .= ""; $dataRel[] = $linha; /* * Verifica se retornou dados */ if (!IsPostBack() || !count($this->GetData()[0])) { $dataRel[] = sprintf("
%s
%s
", count($dadosCabecalio), (!IsPostBack() ? 'Informe os parametros e clique em consultar!' : 'Nenhum registro encontado!')); $this->___dataRel[] = $dataRel; return; } $somaTempo = 0; $somaQuantidade = 0; /* * Linhas de dados. */ foreach ($this->GetData()[0] as $row) { $row["calldate"] = date('d/m/Y H:i', strtotime($row["calldate"])); $row["src"] = ocultarTelefone($row["src"]); $row["dst"] = ocultarTelefone($row["dst"]); $somaTempo += $row["billsec"]; $row["billsec"] = SecondToStrTime($row["billsec"]); $somaQuantidade ++; // Formata linha de dados. $linha = ""; foreach ($dadosField as $key => $value) { $linha .= sprintf("%s", $value, $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"]; $dados = $this->GetData()[0]; $x = 0; $somaQtd = 0; foreach ($dados as $row) { $dados[$x]["calldate"] = date('d/m/Y H:i', strtotime($row["calldate"])); $somaTempo += $row["billsec"]; $dados[$x]["billsec"] = SecondToStrTime($row["billsec"]); $somaQtd ++; $x++; } //HEADER DA TABELA DO PDF -> DADOS EM ARRAY $dadosCabecalio = array( 'Data/Hora' => 'C', 'Origem' => 'C', 'Destino' => 'C', 'Duração' => 'C' ); $dadosField = array( 'calldate' => 'C', 'src' => 'C', 'dst' => 'C', 'billsec' => 'C' ); $widthHeader = array(45, 45, 45, 45); $totaliza = array('Total', "Registros: $somaQtd", '', 'Duração: '. SecondToStrTime($somaTempo)); //Monta o array para passar para o prepara; Necessário passar 6 parametros $table1 = array($dadosCabecalio, $dadosField, $dados, $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'); } } $relRamal = new RelRamalRamal($idProg, $dbcon, null); $relRamal->ExecutaRelatorio(); ?>