use of com.tomasio.projects.trainning.dao.TurmaDAO 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;
}
use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method updateTurmaEfetiva.
@Override
@Transactional
public void updateTurmaEfetiva(TurmaEfetivaDTO turma) {
TurmaEfetiva _turma = new TurmaEfetiva(turma);
TurmaDAO dao = factory.getTurmaDAO();
try {
dao.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());
}
}
use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findTurmaEfetiva.
@Override
@Transactional(readOnly = true)
public TurmaEfetivaDTO findTurmaEfetiva(Long turmaId) {
TurmaDAO dao = factory.getTurmaDAO();
Turma turma = null;
try {
turma = dao.find(turmaId);
} 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());
}
if (turma != null) {
// proccessarPendencias((TurmaEfetiva) turma);
TurmaEfetivaDTO dto = (TurmaEfetivaDTO) turma.createDTO();
return dto;
} else {
return null;
}
}
use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.
the class MigrateFromPlanejamentoToItemPlanejamento method main.
public static void main(String[] args) throws DAOException {
TreinamentoSolicitadoDAO dao = new HibernateTreinamentoSolicitadoDAO();
TurmaDAO turmaDAO = new HibernateTurmaDAO();
List<TreinamentoSolicitadoDTO> treinamentos = dao.findAll(null, null, null, null);
List<TurmaPlanejadaDTO> turmas = turmaDAO.findAllTurmasPlanejadas(1L, null, null, null);
PlanejamentoDAO planejamentoDAO = new HibernatePlanejamentoDAO();
List<Long> ids = new ArrayList<Long>();
for (TreinamentoSolicitadoDTO treinamentoSolicitadoDTO : treinamentos) {
// PlanejamentoDTO p = planejamentoDAO.find(treinamentoSolicitadoDTO.getPlanejamento().getId());
// treinamentoSolicitadoDTO.setPlanejamento(p);
dao.update(treinamentoSolicitadoDTO);
// System.out.println(treinamentoSolicitadoDTO.getPlanejamento().getExercicio());
// System.out.println(treinamentoSolicitadoDTO.getPlanejamento().getExercicio());
System.out.println("-------------------------------------------------\n\n");
// treinamentoSolicitadoDTO.setPlanejamento(null); // para não encher a coleção e provocar overflow stack
}
// List<Long> turmasIds = new ArrayList<Long>();
// for (TurmaDTO turma : turmas) {
// turmasIds.add(turma.getId());
// }
//
// for (Long id : turmasIds) {
// PlanejamentoDTO p = planejamentoDAO.find(1L);
// TurmaPlanejadaDTO turma = (TurmaPlanejadaDTO) turmaDAO.find(id);
// turma.setPlanejamento(p);
// turmaDAO.update(turma);
// System.out.println(turma.getPlanejamento().getExercicio());
//
// System.out.println(turma.getPlanejamento().getExercicio());
// }
//
}
Aggregations