use of com.tomasio.projects.trainning.dao.TurmaDAO 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.TurmaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllConclusoesComPendendias.
@Override
@Transactional(readOnly = true)
public TurmaEfetivaDTO[] findAllConclusoesComPendendias(Date exercicio, Long organizacaoId) {
TurmaDAO turmaDAO = factory.getTurmaDAO();
List<TurmaEfetivaDTO> result = new ArrayList<TurmaEfetivaDTO>();
List<TurmaEfetiva> turmas = null;
try {
// buscar turmas efetivas que esta organização é reponsavel ou responsavel por conclusao, neste exercício, com CONCLUSOES PENDENTES
// Ou seja, turmas sem conclusão após término do curso
// turmas = turmaDAO.findAllTurmasEfetivasNotCancel(exercicio, organizacaoId);
turmas = turmaDAO.findAllTurmasEfetivasNotCancelOfResponsavelOrResponsavelConclusao(exercicio, organizacaoId);
for (TurmaEfetiva turma : turmas) {
// verificar as turma com dtTermino menor que hoje
SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy");
try {
exercicio = df.parse(df.format(exercicio));
} catch (ParseException ex) {
Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
}
if (turma.getDataTermino() != null && turma.getDataTermino().before(exercicio)) {
// verificar se o curso tem conclusoes
if (turmaDAO.findNotConclusoes(turma.getId())) {
// turma com pendencia
result.add(turma.createDTOWithoutDependencies());
} else {
// turma sem pendencia
}
} else {
// turma não começou
}
}
} catch (DAOException ex) {
Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
}
TurmaEfetivaDTO[] resultArray = new TurmaEfetivaDTO[result.size()];
result.toArray(resultArray);
return resultArray;
}
use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllTurmasEfetivas.
@Override
@Transactional(readOnly = true)
public TurmaEfetivaDTO[] findAllTurmasEfetivas(Date exercicio, Long planoId, Long cursoId, Long responsavelId, Long organizacaoGestoraId, StatusTurmaEfetiva status) {
TurmaDAO dao = factory.getTurmaDAO();
TurmaEfetivaDTO[] turmasArray = null;
try {
List<TurmaEfetiva> turmas = dao.findAllTurmasEfetivas(exercicio, planoId, cursoId, responsavelId, organizacaoGestoraId, status);
// }
if (turmas != null) {
turmasArray = new TurmaEfetivaDTO[turmas.size()];
for (int i = 0; i < turmas.size(); i++) {
turmasArray[i] = turmas.get(i).createDTOWithoutDependencies();
}
}
} 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 turmasArray;
}
use of com.tomasio.projects.trainning.dao.TurmaDAO 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.TurmaDAO 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;
}
Aggregations