Search in sources :

Example 1 with CancelamentoMatriculaDAO

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

the class AtividadesEnsinoServiceSimpleImpl method removeCancelamentoMatricula.

@Override
@Transactional
public void removeCancelamentoMatricula(Long matriculaId) {
    CancelamentoMatriculaDAO cancelamentoMatriculaDAO = factory.getCancelamentoMatriculaDAO();
    MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
    IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
    TurmaDAO turmaDAO = factory.getTurmaDAO();
    try {
        // remover um registro na tabela CancelamentoMatricula
        CancelamentoMatricula c = (CancelamentoMatricula) cancelamentoMatriculaDAO.findCancelamentoMatriculaByMatricula(matriculaId);
        Matricula matricula = matriculaDAO.find(c.getMatricula().getId());
        Indicacao indicacao = matricula.getIndicacao();
        TurmaEfetiva turma = matricula.getTurma();
        if (c != null) {
            cancelamentoMatriculaDAO.remove(c.getId());
            indicacao.setMatriculado(true);
            turma.setAtivado(true);
            indicacaoDAO.update(indicacao);
            turmaDAO.update(turma);
        }
    } catch (DAOException ex) {
        ex.printStackTrace();
        throw new CoreException(ex.getMessage());
    } catch (Exception ex) {
        ex.printStackTrace();
        throw new CoreException(ex.getMessage());
    }
}
Also used : IndicacaoDAO(com.tomasio.projects.trainning.dao.IndicacaoDAO) CancelamentoMatricula(com.tomasio.projects.trainning.model.CancelamentoMatricula) DAOException(com.tomasio.projects.trainning.exception.DAOException) CancelamentoMatriculaDAO(com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO) StatusTurmaEfetiva(com.tomasio.projects.trainning.model.StatusTurmaEfetiva) TurmaEfetiva(com.tomasio.projects.trainning.model.TurmaEfetiva) 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) 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) TurmaDAO(com.tomasio.projects.trainning.dao.TurmaDAO) DAOException(com.tomasio.projects.trainning.exception.DAOException) ParseException(java.text.ParseException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with CancelamentoMatriculaDAO

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

the class AtividadesEnsinoServiceSimpleImpl method findAllCancelamentoMatriculaByTurma.

@Override
@Transactional(readOnly = true)
public CancelamentoMatriculaDTO[] findAllCancelamentoMatriculaByTurma(Long turmaId) {
    CancelamentoMatriculaDAO dao = factory.getCancelamentoMatriculaDAO();
    CancelamentoMatriculaDTO[] cancelamentoMatriculasArray = null;
    try {
        List<CancelamentoMatricula> cancelamentoMatricula = dao.findAllCancelamentoMatriculaByTurma(turmaId);
        if (cancelamentoMatricula != null) {
            cancelamentoMatriculasArray = new CancelamentoMatriculaDTO[cancelamentoMatricula.size()];
            for (int i = 0; i < cancelamentoMatricula.size(); i++) {
                cancelamentoMatriculasArray[i] = cancelamentoMatricula.get(i).createDTO();
            }
        }
    } 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());
    }
    return cancelamentoMatriculasArray;
}
Also used : CancelamentoMatricula(com.tomasio.projects.trainning.model.CancelamentoMatricula) DAOException(com.tomasio.projects.trainning.exception.DAOException) CancelamentoMatriculaDTO(com.tomasio.projects.trainning.dto.CancelamentoMatriculaDTO) CancelamentoMatriculaDAO(com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO) CoreException(com.tomasio.projects.trainning.exeption.CoreException) DAOException(com.tomasio.projects.trainning.exception.DAOException) ParseException(java.text.ParseException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 3 with CancelamentoMatriculaDAO

use of com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO 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&atilde;o &eacute; poss&iacute;vel cancelar a matricula pois o aluno j&aacute; se apresentou para o in&iacute;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)

Aggregations

CancelamentoMatriculaDAO (com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO)3 DAOException (com.tomasio.projects.trainning.exception.DAOException)3 CoreException (com.tomasio.projects.trainning.exeption.CoreException)3 CancelamentoMatricula (com.tomasio.projects.trainning.model.CancelamentoMatricula)3 ParseException (java.text.ParseException)3 Transactional (org.springframework.transaction.annotation.Transactional)3 IndicacaoDAO (com.tomasio.projects.trainning.dao.IndicacaoDAO)2 MatriculaDAO (com.tomasio.projects.trainning.dao.MatriculaDAO)2 NotificacaoMatriculaDAO (com.tomasio.projects.trainning.dao.NotificacaoMatriculaDAO)2 PreMatriculaDAO (com.tomasio.projects.trainning.dao.PreMatriculaDAO)2 TurmaDAO (com.tomasio.projects.trainning.dao.TurmaDAO)2 Indicacao (com.tomasio.projects.trainning.model.Indicacao)2 Matricula (com.tomasio.projects.trainning.model.Matricula)2 NotificacaoMatricula (com.tomasio.projects.trainning.model.NotificacaoMatricula)2 PreMatricula (com.tomasio.projects.trainning.model.PreMatricula)2 StatusTurmaEfetiva (com.tomasio.projects.trainning.model.StatusTurmaEfetiva)2 TurmaEfetiva (com.tomasio.projects.trainning.model.TurmaEfetiva)2 ApresentacaoDAO (com.tomasio.projects.trainning.dao.ApresentacaoDAO)1 CancelamentoMatriculaDTO (com.tomasio.projects.trainning.dto.CancelamentoMatriculaDTO)1