use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method searchTurmasEfetivas.
@Override
@Transactional(readOnly = true)
public TurmaEfetivaDTO[] searchTurmasEfetivas(Date exercicio, Long planoId, Long cursoId, Long responsavelId, Long organizacaoGestoraId, String term) {
TurmaDAO dao = factory.getTurmaDAO();
TurmaEfetivaDTO[] turmasArray = null;
try {
List<TurmaEfetiva> turmas = dao.searchTurmasEfetivas(exercicio, planoId, cursoId, responsavelId, organizacaoGestoraId, term);
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 removeMatricula.
@Override
@Transactional
public void removeMatricula(Long matriculaId) {
MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
TurmaDAO turmaDAO = factory.getTurmaDAO();
try {
Matricula matricula = matriculaDAO.find(matriculaId);
Indicacao indicacao = indicacaoDAO.find(matricula.getIndicacao().getId());
indicacao.setMatriculado(false);
matriculaDAO.remove(matriculaId);
indicacaoDAO.update(indicacao);
TurmaEfetiva turma = (TurmaEfetiva) turmaDAO.find(matricula.getTurma().getId());
// VERIFICAR SE AINDA HÁ ALGUMA MATRICULA
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());
}
}
use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createMatricula.
@Override
@Transactional
public void createMatricula(MatriculaDTO[] matriculas) {
MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
TurmaDAO turmaDAO = factory.getTurmaDAO();
List<Matricula> matriculasList = new ArrayList<Matricula>();
List<Indicacao> indicacoesList = new ArrayList<Indicacao>();
Set<TurmaEfetiva> turmasList = new HashSet<TurmaEfetiva>();
for (MatriculaDTO matricula : matriculas) {
Matricula _matricula = null;
if (matricula != null) {
if (matricula instanceof MatriculaAlunoDTO) {
_matricula = new MatriculaAluno((MatriculaAlunoDTO) matricula);
} else {
_matricula = new MatriculaInstrutor((MatriculaInstrutorDTO) matricula);
}
}
matriculasList.add(_matricula);
indicacoesList.add(_matricula.getIndicacao());
turmasList.add(_matricula.getTurma());
}
try {
matriculaDAO.create(matriculasList);
for (Indicacao indicacao : indicacoesList) {
indicacao.setMatriculado(true);
indicacaoDAO.update(indicacao);
}
for (TurmaEfetiva turmaEfetiva : turmasList) {
turmaEfetiva.setAtivado(true);
turmaDAO.update(turmaEfetiva);
}
} 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 createIndicacao.
@Override
@Transactional
public Long createIndicacao(IndicacaoDTO indicacao) {
IndicacaoDAO dao = factory.getIndicacaoDAO();
OrganizacaoDAO organizacaoDAO = factory.getOrganizacaoDAO();
TurmaDAO turmaDAO = factory.getTurmaDAO();
Indicacao _indicacao = null;
if (indicacao != null) {
if (indicacao instanceof IndicacaoAlunoDTO) {
_indicacao = new IndicacaoAluno((IndicacaoAlunoDTO) indicacao);
} else {
_indicacao = new IndicacaoInstrutor((IndicacaoInstrutorDTO) indicacao);
}
}
Long id = null;
try {
id = dao.create(_indicacao);
updateWorkflowActors(_indicacao.getId());
} catch (DAOException ex) {
throw new CoreException(ex.getMessage());
} catch (Exception ex) {
ex.printStackTrace();
throw new CoreException("Erro em tempo de execução: " + ex.getMessage());
}
return id;
}
use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllApresentacoesComPendendias.
@Override
@Transactional(readOnly = true)
public TurmaEfetivaDTO[] findAllApresentacoesComPendendias(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 APRESENTACOES PENDENTES
// Ou seja, turmas sem apresentação após inicio do curso
// turmas = turmaDAO.findAllTurmasEfetivasNotCancel(exercicio, organizacaoId);
turmas = turmaDAO.findAllTurmasEfetivasNotCancelOfResponsavelOrResponsavelApresentacao(exercicio, organizacaoId);
for (TurmaEfetiva turma : turmas) {
// verificar as turma com dtInicial 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.getDataInicio() != null && turma.getDataInicio().before(exercicio)) {
// verificar se o curso tem apresentacoes
if (turmaDAO.findNotApresentacoes(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;
}
Aggregations