public function index() { $this->setTela('Relatório'); $groupBy = $this->getParametro('group', 'ano'); $codUsuario = $this->getUsuario()->getCodUsu(); $tarefa = new Tarefa(); $tarefa->setConexao(Conexao::getInstancia()->getConexao()); $report = $tarefa->getRelatorioPeloUsuario($codUsuario, $groupBy); return ['group' => $groupBy, 'relatorio' => $report]; }
private function excluir(Tarefa $tarefa) { $tarefa->excluir(); $this->setMensagemSucesso('Tarefa excluída com sucesso!'); }