/** * method onGenerate() * Executed whenever the user clicks at the generate button */ function onGenerate() { try { $string = new StringsUtil(); TTransaction::open('atividade'); // open a transaction with database 'atividade' // get the form data into an active record $formdata = $this->form->getData(); if ($formdata->ticket_id) { $where .= " and t.id >= {$formdata->ticket_id} "; } if ($formdata->solicitante_id) { $where .= " and t.solicitante_id = {$formdata->solicitante_id} "; } if ($formdata->responsavel_id) { $where .= " and t.responsavel_id = {$formdata->responsavel_id} "; } if ($formdata->entcodent) { $solicitantes = Pessoa::getPessoasEntidade($formdata->entcodent); $comma_separated = implode(",", $solicitantes); $where .= " and t.solicitante_id in ( {$comma_separated} )"; } if ($formdata->status_ticket_id) { $where .= " and t.status_ticket_id = {$formdata->status_ticket_id} "; } if ($formdata->prioridade_id) { $where .= " and t.prioridade_id = {$formdata->prioridade_id} "; } if ($formdata->data_prevista) { $where .= " and t.data_prevista <= '{$string->formatDate($formdata->data_prevista)}' "; } if ($formdata->data_atividade_inicio) { $where .= " and a.data_atividade >= '{$string->formatDate($formdata->data_atividade_inicio)}' "; } if ($formdata->data_atividade_final) { $where .= " and a.data_atividade <= '{$string->formatDate($formdata->data_atividade_final)}' "; } if ($formdata->colaborador_id) { $where .= " and a.colaborador_id = {$formdata->colaborador_id} "; } if ($formdata->tipo_atividade_id) { $where .= " and a.tipo_atividade_id = {$formdata->tipo_atividade_id} "; } if ($formdata->saldo) { $where .= " and (coalesce(t.valor_total,0) - coalesce(t.valor_total_pago,0)) > 0 "; } if ($formdata->ticket_sistema_id) { $where .= " and t.sistema_id = {$formdata->ticket_sistema_id} "; } if ($formdata->atividade_sistema_id) { $where .= " and a.sistema_id = {$formdata->atividade_sistema_id} "; } if ($formdata->tipo_ticket_id) { $where .= " and t.tipo_ticket_id = {$formdata->tipo_ticket_id} "; } if ($formdata->pesquisa_master) { $where .= " and (t.titulo ilike '%{$formdata->pesquisa_master}%' or a.descricao ilike '%{$formdata->pesquisa_master}%') "; } // and (t.titulo ilike %{$formdata->pesquisa_master}% or a.descricao ilike %{$formdata->pesquisa_master}%) $format = $formdata->output_type; $objects = Ticket::relatorioSintetico($where); if ($objects) { $widths = null; switch ($format) { case 'html': $tr = new TTableWriterHTML($widths); break; case 'pdf': $tr = new TTableWriterPDF($widths, 'L'); break; case 'rtf': if (!class_exists('PHPRtfLite_Autoloader')) { PHPRtfLite::registerAutoloader(); } $tr = new TTableWriterRTF($widths); break; } // create the document styles $tr->addStyle('title', 'Arial', '12', 'B', '#ffffff', '#6B6B6B'); $tr->addStyle('datap', 'Arial', '10', '', '#000000', '#E5E5E5'); $tr->addStyle('datapa', 'Arial', '9', '', '#000000', '#E5E5E5'); $tr->addStyle('datai', 'Arial', '10', '', '#000000', '#ffffff'); $tr->addStyle('dataia', 'Arial', '9', '', '#000000', '#ffffff'); $tr->addStyle('header', 'Times', '16', 'B', '#4A5590', '#C0D3E9'); $tr->addStyle('footer', 'Times', '12', 'BI', '#4A5590', '#C0D3E9'); $tr->addStyle('valpos', 'Arial', '12', '', '#000000', '#0DC13A'); $tr->addStyle('valneg', 'Arial', '12', '', '#000000', '#FF0000'); // add a header row $tr->addRow(); $tr->addCell('Ticket - Resumo atividades', 'center', 'header', 16); // add titles row $tr->addRow(); $tr->addCell('Seq', 'center', 'title'); $tr->addCell('ID', 'center', 'title'); $tr->addCell('ST', 'center', 'title'); $tr->addCell('PR', 'center', 'title'); $tr->addCell('H.O.', 'center', 'title'); $tr->addCell('H.A.', 'center', 'title'); $tr->addCell('H.S.', 'center', 'title'); $tr->addCell('Prevista', 'center', 'title'); $tr->addCell('Dias', 'center', 'title'); $tr->addCell(utf8_decode('Título'), 'left', 'title'); $tr->addCell(utf8_decode('Responsável'), 'left', 'title'); $tr->addCell('T', 'center', 'title'); $tr->addCell('Cliente', 'left', 'title'); $tr->addCell(utf8_decode('Orçado'), 'right', 'title'); $tr->addCell('Pago', 'right', 'title'); $tr->addCell('Saldo', 'right', 'title'); // controls the background filling $colour = FALSE; $repository = new TRepository('Pessoa'); $repo = $repository->load(); foreach ($repo as $row) { $pessoa[$row->pessoa_codigo] = $row->pessoa_nome; } $seq = 1; $totalOrcado = 0; $totalPago = 0; $totalSaldo = 0; $totalHorasOrcadas = 0; $totalHorasAtividades = 0; $totalHorasSaldo = 0; // data rows foreach ($objects as $object) { //$responsavel = new Pessoa($object['responsavel_id']); $cliente = new Pessoa($object['solicitante_id']); $style = $colour ? 'datap' : 'datai'; $horasStyle = $style; $dias = ''; $dataStyle = $style; if ($object['orcamento_horas']) { if (substr($object['horas_saldo'], 0, 1) == '-') { $horasStyle = 'valneg'; } else { $horasStyle = 'valpos'; } } if ($object['data_prevista']) { $dias = $string->subtrair_datas(date('Y-m-d'), $object['data_prevista']); if (substr($dias, 0, 1) == '-') { $dataStyle = 'valneg'; } else { $dataStyle = 'valpos'; } } $tr->addRow(); $tr->addCell($seq++, 'center', $style); $tr->addCell($object['id'], 'center', $style); $tr->addCell(substr($object['status'], 0, 1), 'center', $style); $tr->addCell(substr($object['prioridade'], 0, 1), 'center', $style); $tr->addCell(substr($object['orcamento_horas'], 0, -3), 'center', $style); $tr->addCell(substr($object['horas_atividade'], 0, -3), 'center', $style); $tr->addCell(substr($object['horas_saldo'], 0, -3), 'center', $horasStyle); $tr->addCell($object['data_prevista'] ? $data_prevista = $string->formatDateBR($object['data_prevista']) : null, 'center', $style); $tr->addCell($dias, 'center', $dataStyle); $tr->addCell(utf8_decode($object['titulo']), 'left', $style); $tr->addCell(utf8_decode($pessoa[$object['responsavel_id']]), 'left', $style); $tr->addCell($object['origem'], 'center', $style); $tr->addCell(utf8_decode($cliente->origem_nome), 'left', $style); $tr->addCell($object['valor_total'], 'right', $style); $tr->addCell($object['valor_total_pago'], 'right', $style); $tr->addCell($object['saldo'], 'right', $style); $totalDias += $dias; $totalOrcado += $object['valor_total']; $totalPago += $object['valor_total_pago']; $totalSaldo += $object['saldo']; $totalHorasOrcadas += $string->time_to_sec($object['orcamento_horas']); $totalHorasAtividades += $string->time_to_sec($object['horas_atividade']); $totalHorasSaldo += $string->time_to_sec($object['horas_saldo']); if ($formdata->tipo == 'a') { $atividades = Ticket::relatorioAnalitico($object['id'], $where); if ($atividades) { $seqA = 1; foreach ($atividades as $atividade) { $stylea = $colour ? 'datapa' : 'dataia'; $tr->addRow(); $tr->addCell('', 'center', $stylea); $tr->addCell($seqA++, 'center', $stylea); $tr->addCell($string->formatDateBR($atividade['data_atividade']), 'center', $stylea, 3); //$tr->addCell(substr($object['prioridade'], 0, 1), 'center', $style); //$tr->addCell($object['orcamento_horas'], 'center', $style); $tr->addCell(substr($atividade['tempo'], 0, -3), 'center', $stylea); $tr->addCell('', 'center', $stylea); $tr->addCell($object['data_prevista'] ? $data_prevista = $string->formatDateBR($object['data_prevista']) : null, 'center', $stylea); $tr->addCell('', 'center', $stylea); $tr->addCell('das ' . substr($atividade['hora_inicio'], 0, -3) . ' as ' . substr($atividade['hora_fim'], 0, -3), 'left', $stylea); $tr->addCell(utf8_decode($pessoa[$atividade['colaborador_id']]), 'left', $stylea); $tr->addCell('', 'center', $stylea); $tr->addCell(utf8_decode($atividade['tipo_atividade']), 'left', $stylea); $tr->addCell('', 'right', $stylea); $tr->addCell('', 'right', $stylea); $tr->addCell('', 'right', $stylea); } } } $tr->addRow(); $tr->addCell(' ', 'center', $style, 16); $colour = !$colour; } // footer row $tr->addRow(); $tr->addCell('Totais:', 'center', 'footer', 4); //$tr->addCell('', 'center', 'footer'); //$tr->addCell('', 'center', 'footer'); //$tr->addCell('', 'center', 'footer'); $tr->addCell(substr($string->sec_to_time($totalHorasOrcadas), 0, -3), 'center', 'footer'); $tr->addCell(substr($string->sec_to_time($totalHorasAtividades), 0, -3), 'center', 'footer'); $tr->addCell(substr($string->sec_to_time($totalHorasSaldo), 0, -3), 'center', 'footer'); $tr->addCell('', 'center', 'footer'); $tr->addCell('', 'center', 'footer'); $tr->addCell('', 'left', 'footer'); $tr->addCell('', 'left', 'footer'); $tr->addCell('', 'center', 'footer'); $tr->addCell('', 'left', 'footer'); $tr->addCell($totalOrcado, 'right', 'footer'); $tr->addCell($totalPago, 'right', 'footer'); $tr->addCell($totalSaldo, 'right', 'footer'); $tr->addRow(); $tr->addCell(date('d/m/Y H:i:s'), 'center', 'footer', 16); // stores the file if (!file_exists("app/output/Ticket.{$format}") or is_writable("app/output/Ticket.{$format}")) { $tr->save("app/output/Ticket.{$format}"); } else { throw new Exception(_t('Permission denied') . ': ' . "app/output/Ticket.{$format}"); } // open the report file parent::openFile("app/output/Ticket.{$format}"); // shows the success message new TMessage('info', 'Relatorio gerado. Por favor, habilite popups no navegador (somente para web).'); } else { new TMessage('error', 'Não foram encontrados registros!'); } // fill the form with the active record data $this->form->setData($formdata); // close the transaction TTransaction::close(); } catch (Exception $e) { // shows the exception error message new TMessage('error', '<b>Error</b> ' . $e->getMessage()); // undo all pending operations TTransaction::rollback(); } }
public function saldoHorasMes($user) { $string = new StringsUtil(); $mes = date('m'); $ano = date('Y'); $conn = TTransaction::get(); $result = $conn->query("select (hora_saida - hora_entrada) as horario from ponto \n where colaborador_id = {$user} and extract('month' from data_ponto) = {$mes} and extract('year' from data_ponto) = {$ano} and hora_saida is not null and hora_entrada is not null"); $almoco = new DateTime('01:00:00'); $limite = new DateTime('06:00:00'); $cargaHoraria = $string->time_to_sec('08:48:00'); $saldo = null; foreach ($result as $row) { $total = new DateTime($row['horario']); if ($total > $limite) { $total = $total->diff($almoco)->format('%H:%I:%S'); } else { $total = $row['horario']; } $saldo += $string->time_to_sec($total) - $cargaHoraria; } return $string->sec_to_time($saldo); }