Search in sources :

Example 6 with ApresentacaoDAO

use of com.tomasio.projects.trainning.dao.ApresentacaoDAO in project trainning by fernandotomasio.

the class AtividadesEnsinoServiceSimpleImpl method createCancelamentoMatricula.

@Override
@Transactional
public Long createCancelamentoMatricula(CancelamentoMatriculaDTO cancelamentoMatricula) {
    CancelamentoMatriculaDAO cancelamentoMatriculaDAO = factory.getCancelamentoMatriculaDAO();
    IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
    MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
    TurmaDAO turmaDAO = factory.getTurmaDAO();
    Long id = null;
    CancelamentoMatricula _cancelamentoMatricula = null;
    // cria um registro na tabela CancelamentoMatricula
    if (cancelamentoMatricula != null) {
        _cancelamentoMatricula = new CancelamentoMatricula(cancelamentoMatricula);
    }
    try {
        // verificar se já existe uma apresentação realizada desta matricula
        ApresentacaoDAO daoApre = factory.getApresentacaoDAO();
        boolean apresentacao = daoApre.hasApresentacaoComparecimento(cancelamentoMatricula.getMatricula().getId());
        if (apresentacao) {
            throw new CoreException("Não é possível cancelar a matricula pois o aluno já se apresentou para o início do curso");
        }
        Matricula matricula = matriculaDAO.find(_cancelamentoMatricula.getMatricula().getId());
        Indicacao indicacao = matricula.getIndicacao();
        TurmaEfetiva turma = matricula.getTurma();
        id = cancelamentoMatriculaDAO.create(_cancelamentoMatricula);
        indicacao.setMatriculado(false);
        indicacaoDAO.update(indicacao);
        if (hasMatriculas(turma.getId())) {
            turma.setAtivado(true);
        } else {
            turma.setAtivado(false);
        }
        turmaDAO.update(turma);
    } catch (DAOException ex) {
        ex.printStackTrace();
        throw new CoreException(ex.getMessage());
    } catch (Exception ex) {
        ex.printStackTrace();
        // throw new CoreException("Erro em tempo de execução: " + ex.getMessage());
        throw new CoreException(ex.getMessage());
    }
    return id;
}
Also used : CancelamentoMatricula(com.tomasio.projects.trainning.model.CancelamentoMatricula) ApresentacaoDAO(com.tomasio.projects.trainning.dao.ApresentacaoDAO) StatusTurmaEfetiva(com.tomasio.projects.trainning.model.StatusTurmaEfetiva) TurmaEfetiva(com.tomasio.projects.trainning.model.TurmaEfetiva) CancelamentoMatricula(com.tomasio.projects.trainning.model.CancelamentoMatricula) Matricula(com.tomasio.projects.trainning.model.Matricula) NotificacaoMatricula(com.tomasio.projects.trainning.model.NotificacaoMatricula) PreMatricula(com.tomasio.projects.trainning.model.PreMatricula) Indicacao(com.tomasio.projects.trainning.model.Indicacao) DAOException(com.tomasio.projects.trainning.exception.DAOException) ParseException(java.text.ParseException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) IndicacaoDAO(com.tomasio.projects.trainning.dao.IndicacaoDAO) DAOException(com.tomasio.projects.trainning.exception.DAOException) CancelamentoMatriculaDAO(com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO) CoreException(com.tomasio.projects.trainning.exeption.CoreException) CancelamentoMatriculaDAO(com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO) MatriculaDAO(com.tomasio.projects.trainning.dao.MatriculaDAO) NotificacaoMatriculaDAO(com.tomasio.projects.trainning.dao.NotificacaoMatriculaDAO) PreMatriculaDAO(com.tomasio.projects.trainning.dao.PreMatriculaDAO) TurmaDAO(com.tomasio.projects.trainning.dao.TurmaDAO) Transactional(org.springframework.transaction.annotation.Transactional)

Example 7 with ApresentacaoDAO

use of com.tomasio.projects.trainning.dao.ApresentacaoDAO in project trainning by fernandotomasio.

the class AtividadesEnsinoServiceSimpleImpl method findAllApresentadosByTurmaId.

@Override
@Transactional(readOnly = true)
public ApresentacaoDTO[] findAllApresentadosByTurmaId(Long turmaId) {
    ApresentacaoDAO dao = factory.getApresentacaoDAO();
    ApresentacaoDTO[] apresentadosArray = null;
    try {
        List<Apresentacao> apresentados = dao.findAllApresentadosByTurmaId(turmaId);
        apresentadosArray = new ApresentacaoDTO[apresentados.size()];
        for (int i = 0; i < apresentadosArray.length; i++) {
            apresentadosArray[i] = apresentados.get(i).createDTO();
        }
        return apresentadosArray;
    } catch (DAOException ex) {
        Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
        throw new CoreException(ex.getMessage());
    }
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) ApresentacaoDAO(com.tomasio.projects.trainning.dao.ApresentacaoDAO) CoreException(com.tomasio.projects.trainning.exeption.CoreException) Apresentacao(com.tomasio.projects.trainning.model.Apresentacao) ApresentacaoDTO(com.tomasio.projects.trainning.dto.ApresentacaoDTO) Transactional(org.springframework.transaction.annotation.Transactional)

Example 8 with ApresentacaoDAO

use of com.tomasio.projects.trainning.dao.ApresentacaoDAO in project trainning by fernandotomasio.

the class AtividadesEnsinoServiceSimpleImpl method removeApresentacao.

@Override
@Transactional
public void removeApresentacao(Long apresentacaoId) {
    ApresentacaoDAO dao = factory.getApresentacaoDAO();
    try {
        // buscar a apresentação
        Apresentacao apresentacao = (Apresentacao) dao.find(apresentacaoId);
        // verificar se já existe uma conclusão realizada desta matricula
        ConclusaoDAO daoConclu = factory.getConclusaoDAO();
        boolean conclusao = daoConclu.hasConclusao(apresentacao.getMatricula().getId());
        if (conclusao) {
            throw new CoreException("N&atilde;o &eacute; poss&iacute;vel cancelar a apresenta&ccedil;&atilde;o pois o aluno consta como conclu&iacute;nte no curso");
        }
        dao.remove(apresentacaoId);
    } catch (DAOException ex) {
        Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
        throw new CoreException(ex.getMessage());
    }
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) ApresentacaoDAO(com.tomasio.projects.trainning.dao.ApresentacaoDAO) CoreException(com.tomasio.projects.trainning.exeption.CoreException) Apresentacao(com.tomasio.projects.trainning.model.Apresentacao) ConclusaoDAO(com.tomasio.projects.trainning.dao.ConclusaoDAO) CertificadoConclusaoDAO(com.tomasio.projects.trainning.dao.CertificadoConclusaoDAO) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

ApresentacaoDAO (com.tomasio.projects.trainning.dao.ApresentacaoDAO)8 DAOException (com.tomasio.projects.trainning.exception.DAOException)8 CoreException (com.tomasio.projects.trainning.exeption.CoreException)8 Transactional (org.springframework.transaction.annotation.Transactional)8 Apresentacao (com.tomasio.projects.trainning.model.Apresentacao)7 ApresentacaoDTO (com.tomasio.projects.trainning.dto.ApresentacaoDTO)4 ParseException (java.text.ParseException)2 CancelamentoMatriculaDAO (com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO)1 CertificadoConclusaoDAO (com.tomasio.projects.trainning.dao.CertificadoConclusaoDAO)1 ConclusaoDAO (com.tomasio.projects.trainning.dao.ConclusaoDAO)1 IndicacaoDAO (com.tomasio.projects.trainning.dao.IndicacaoDAO)1 MatriculaDAO (com.tomasio.projects.trainning.dao.MatriculaDAO)1 NotificacaoMatriculaDAO (com.tomasio.projects.trainning.dao.NotificacaoMatriculaDAO)1 PreMatriculaDAO (com.tomasio.projects.trainning.dao.PreMatriculaDAO)1 TurmaDAO (com.tomasio.projects.trainning.dao.TurmaDAO)1 CancelamentoMatricula (com.tomasio.projects.trainning.model.CancelamentoMatricula)1 Indicacao (com.tomasio.projects.trainning.model.Indicacao)1 Matricula (com.tomasio.projects.trainning.model.Matricula)1 NotificacaoMatricula (com.tomasio.projects.trainning.model.NotificacaoMatricula)1 PreMatricula (com.tomasio.projects.trainning.model.PreMatricula)1