Search in sources :

Example 6 with CancelamentoMatricula

use of com.tomasio.projects.trainning.model.CancelamentoMatricula 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 CancelamentoMatricula

use of com.tomasio.projects.trainning.model.CancelamentoMatricula in project trainning by fernandotomasio.

the class HibernateCancelamentoMatriculaDAO method remove.

@Override
public void remove(Long cancelamentoMatriculaId) throws DAOException {
    Session session = sessionFactory.getCurrentSession();
    CancelamentoMatricula cancelamentoMatricula = (CancelamentoMatricula) session.get(CancelamentoMatricula.class, cancelamentoMatriculaId);
    try {
        session.delete(cancelamentoMatricula);
    } catch (HibernateException e) {
        Logger.getLogger(this.getClass().getName()).log(Level.SEVERE, null, e);
        throw new DAOException(MessageHelper.getMessage("cancelamentoMatricula.remove.error"));
    }
}
Also used : CancelamentoMatricula(com.tomasio.projects.trainning.model.CancelamentoMatricula) DAOException(com.tomasio.projects.trainning.exception.DAOException) HibernateException(org.hibernate.HibernateException) Session(org.hibernate.Session)

Aggregations

DAOException (com.tomasio.projects.trainning.exception.DAOException)7 CancelamentoMatricula (com.tomasio.projects.trainning.model.CancelamentoMatricula)7 CancelamentoMatriculaDAO (com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO)5 CoreException (com.tomasio.projects.trainning.exeption.CoreException)5 ParseException (java.text.ParseException)5 Transactional (org.springframework.transaction.annotation.Transactional)5 IndicacaoDAO (com.tomasio.projects.trainning.dao.IndicacaoDAO)4 MatriculaDAO (com.tomasio.projects.trainning.dao.MatriculaDAO)4 NotificacaoMatriculaDAO (com.tomasio.projects.trainning.dao.NotificacaoMatriculaDAO)4 PreMatriculaDAO (com.tomasio.projects.trainning.dao.PreMatriculaDAO)4 TurmaDAO (com.tomasio.projects.trainning.dao.TurmaDAO)4 Indicacao (com.tomasio.projects.trainning.model.Indicacao)4 Matricula (com.tomasio.projects.trainning.model.Matricula)4 NotificacaoMatricula (com.tomasio.projects.trainning.model.NotificacaoMatricula)4 PreMatricula (com.tomasio.projects.trainning.model.PreMatricula)4 StatusTurmaEfetiva (com.tomasio.projects.trainning.model.StatusTurmaEfetiva)4 TurmaEfetiva (com.tomasio.projects.trainning.model.TurmaEfetiva)4 DesligamentoDAO (com.tomasio.projects.trainning.dao.DesligamentoDAO)2 Desligamento (com.tomasio.projects.trainning.model.Desligamento)2 HibernateException (org.hibernate.HibernateException)2