use of com.tomasio.projects.trainning.dao.IndicacaoDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createPreMatricula.
@Override
@Transactional
public void createPreMatricula(PreMatriculaDTO[] preMatriculas) {
PreMatriculaDAO preMatriculaDAO = factory.getPreMatriculaDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
List<PreMatricula> preMatriculasList = new ArrayList<PreMatricula>();
List<Indicacao> indicacoesList = new ArrayList<Indicacao>();
for (PreMatriculaDTO preMatriculaDTO : preMatriculas) {
PreMatricula _preMatricula = null;
if (preMatriculaDTO instanceof PreMatriculaAlunoDTO) {
_preMatricula = new PreMatriculaAluno((PreMatriculaAlunoDTO) preMatriculaDTO);
} else {
_preMatricula = new PreMatriculaInstrutor((PreMatriculaInstrutorDTO) preMatriculaDTO);
}
preMatriculasList.add(_preMatricula);
indicacoesList.add(_preMatricula.getIndicacao());
}
try {
preMatriculaDAO.create(preMatriculasList);
for (Indicacao indicacao : indicacoesList) {
indicacao.setPreMatriculado(true);
indicacaoDAO.update(indicacao);
}
} 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.IndicacaoDAO 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.dao.IndicacaoDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllTurmasComPendendias.
@Override
@Transactional(readOnly = true)
public TurmaEfetivaDTO[] findAllTurmasComPendendias(Date exercicio, Long organizacaoId) {
TurmaDAO turmaDAO = factory.getTurmaDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
OrganizacaoDAO organizacaoDAO = factory.getOrganizacaoDAO();
List<TurmaEfetivaDTO> result = new ArrayList<TurmaEfetivaDTO>();
try {
List<TurmaEfetiva> turmas = turmaDAO.findAllTurmasEfetivasWithIndicacoesPendentes(exercicio, organizacaoId);
for (TurmaEfetiva turma : turmas) {
if (turma.isAtivado() || turma.isCancelado() || turma.isConcluido()) {
continue;
}
if (turma.isOpenForIndicacoes() || turma.isOpenForAprovacao()) {
result.add(turma.createDTOWithoutDependencies());
}
}
} catch (DAOException ex) {
Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
}
Collections.sort(result, new Comparator<TurmaEfetivaDTO>() {
@Override
public int compare(TurmaEfetivaDTO o1, TurmaEfetivaDTO o2) {
Integer value1 = new Integer(o1.getDaysToExpireAprovacoes());
Integer value2 = new Integer(o2.getDaysToExpireAprovacoes());
return value1.compareTo(value2);
// To change body of generated methods, choose Tools | Templates.
}
});
TurmaEfetivaDTO[] resultArray = new TurmaEfetivaDTO[result.size()];
result.toArray(resultArray);
return resultArray;
}
use of com.tomasio.projects.trainning.dao.IndicacaoDAO 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.dao.IndicacaoDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createPreMatricula.
@Override
@Transactional
public Long createPreMatricula(PreMatriculaDTO preMatricula) {
PreMatriculaDAO preMatriculaDAO = factory.getPreMatriculaDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
TurmaDAO turmaDAO = factory.getTurmaDAO();
PreMatricula _preMatricula = null;
if (preMatricula instanceof PreMatriculaAlunoDTO) {
_preMatricula = new PreMatriculaAluno((PreMatriculaAlunoDTO) preMatricula);
} else {
_preMatricula = new PreMatriculaInstrutor((PreMatriculaInstrutorDTO) preMatricula);
}
Long id = null;
try {
Indicacao _indicacao = _preMatricula.getIndicacao();
TurmaEfetiva _turma = _preMatricula.getTurma();
id = preMatriculaDAO.create(_preMatricula);
_indicacao.setPreMatriculado(true);
_turma.setPreAtivado(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("Erro em tempo de execução: " + ex.getMessage());
}
return id;
}
Aggregations