use of com.tomasio.projects.trainning.model.Desligamento in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method removeDesligamento.
@Override
@Transactional
public void removeDesligamento(Long matriculaId) {
DesligamentoDAO desligamentoDAO = factory.getDesligamentoDAO();
MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
TurmaDAO turmaDAO = factory.getTurmaDAO();
try {
// remover um registro na tabela CancelamentoMatricula
Desligamento d = (Desligamento) desligamentoDAO.findDesligamentoByMatricula(matriculaId);
Matricula matricula = matriculaDAO.find(d.getMatricula().getId());
Indicacao indicacao = matricula.getIndicacao();
TurmaEfetiva turma = matricula.getTurma();
if (d != null) {
desligamentoDAO.remove(d.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());
}
}
use of com.tomasio.projects.trainning.model.Desligamento in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createDesligamento.
@Override
@Transactional
public Long createDesligamento(DesligamentoDTO desligamento) {
DesligamentoDAO desligamentoDAO = factory.getDesligamentoDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
TurmaDAO turmaDAO = factory.getTurmaDAO();
Long id = null;
Desligamento _desligamento = null;
// cria um registro na tabela CancelamentoMatricula
if (desligamento != null) {
_desligamento = new Desligamento(desligamento);
}
try {
Matricula matricula = matriculaDAO.find(_desligamento.getMatricula().getId());
Indicacao indicacao = matricula.getIndicacao();
TurmaEfetiva turma = matricula.getTurma();
id = desligamentoDAO.create(_desligamento);
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;
}
use of com.tomasio.projects.trainning.model.Desligamento in project trainning by fernandotomasio.
the class HibernateDesligamentoDAO method remove.
@Override
public void remove(Long desligamentoId) throws DAOException {
Session session = sessionFactory.getCurrentSession();
Desligamento desligamento = (Desligamento) session.get(Desligamento.class, desligamentoId);
try {
session.delete(desligamento);
} catch (HibernateException e) {
Logger.getLogger(this.getClass().getName()).log(Level.SEVERE, null, e);
throw new DAOException(MessageHelper.getMessage("desligamento.remove.error"));
}
}
use of com.tomasio.projects.trainning.model.Desligamento in project trainning by fernandotomasio.
the class HibernateDesligamentoDAO method create.
@Override
public void create(List<Desligamento> cancelamentosMatriculas) throws DAOException {
Session session = sessionFactory.getCurrentSession();
try {
for (Desligamento desligamento : cancelamentosMatriculas) {
Long countDesligamentosMatricula = (Long) session.createQuery("select count(*) from Desligamento c where c.matricula.id = :matriculaId").setLong("matriculaId", desligamento.getMatricula().getId()).uniqueResult();
if (countDesligamentosMatricula > 0) {
throw new DAOException("Desligamento já existente");
}
session.save(desligamento);
}
} catch (HibernateException e) {
Logger.getLogger(HibernateMatriculaDAO.class.getName()).log(Level.SEVERE, null, e);
throw new DAOException(MessageHelper.getMessage("desligamento.create.list.error"));
}
}
Aggregations