/* * This file is part of SGEA - Sistema de Gestão de Eventos Acadêmicos - TADS IFNMG Campus Januária. * * SGEA is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * SGEA is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with SGEA. If not, see <http://www.gnu.org/licenses/>. */ package br.edu.ifnmg.GerenciamentoEventos.Apresentacao.Relatorios; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.Atividade; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.InscricaoItem; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.Servicos.InscricaoRepositorio; import br.edu.ifnmg.GerenciamentoEventos.Aplicacao.ControllerBaseRelatorio; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.Evento; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.InscricaoCategoria; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.InscricaoStatus; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.Servicos.AtividadeRepositorio; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.Servicos.EventoRepositorio; import javax.inject.Named; import java.io.Serializable; import java.net.MalformedURLException; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.logging.Level; import java.util.logging.Logger; import javax.annotation.PostConstruct; import javax.ejb.EJB; import javax.enterprise.context.RequestScoped; /** * * @author petronio */ @Named(value = "listaPresencaController") @RequestScoped public class ListaPresencaController extends ControllerBaseRelatorio<InscricaoItem> implements Serializable { /** * Creates a new instance of FuncionarioBean */ public ListaPresencaController() { setArquivoSaida("ListaPresencaAtividade"); setRelatorio("ListaPresencaAtividade.jasper"); } @EJB EventoRepositorio daoE; @EJB InscricaoRepositorio daoInscricao; @EJB AtividadeRepositorio daoAtividade; Atividade atividade; InscricaoStatus status; InscricaoCategoria categoria; @PostConstruct public void init() { checaEventoPadrao(); } public void checaEventoPadrao() { if (getEvento() == null) { String evt = getConfiguracao("EVENTO_PADRAO"); if (evt != null) { Evento padrao = daoE.Abrir(Long.parseLong(evt)); setEvento(padrao); } } } @Override protected Map<String, Object> carregaParametros() { try { Map<String, Object> tmp = getParametrosComuns(); tmp.put("data", new Date()); return tmp; } catch (MalformedURLException ex) { Logger.getLogger(ListaPresencaEventoController.class.getName()).log(Level.SEVERE, null, ex); return new HashMap<>(); } } @Override public List<InscricaoItem> getDados() { InscricaoItem i = new InscricaoItem(); i.setAtividade(atividade); return daoInscricao.getRepositorioItem() .IgualA("atividade", atividade) .IgualA("status", status) .IgualA("categoria", categoria) .Join("pessoa", "p") .Ordenar("p.nome", "ASC") .Buscar(); } public Atividade getAtividade() { return atividade; } public void setAtividade(Atividade atividade) { this.atividade = atividade; } public InscricaoStatus getStatus() { return status; } public void setStatus(InscricaoStatus status) { this.status = status; } public InscricaoCategoria getCategoria() { return categoria; } public void setCategoria(InscricaoCategoria categoria) { this.categoria = categoria; } public List<Atividade> getAtividadesDoUsuario() { return daoAtividade.Responsavel(getEvento(), getUsuarioCorrente()); } }