use of com.tomasio.projects.trainning.dao.IndicacaoDAO 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.IndicacaoDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method countIndicacoesAlunos.
@Override
@Transactional(readOnly = true)
public int countIndicacoesAlunos(Date start, Date end) {
IndicacaoDAO dao = factory.getIndicacaoDAO();
int count = 0;
try {
count = dao.countAllIndicacoesAlunos(start, end);
} catch (DAOException ex) {
throw new CoreException(ex.getMessage());
} catch (Exception ex) {
throw new CoreException("Erro em tempo de execução: " + ex.getMessage());
}
return count;
}
use of com.tomasio.projects.trainning.dao.IndicacaoDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllIndicacoesAlunos.
@Override
@Transactional(readOnly = true)
public IndicacaoAlunoDTO[] findAllIndicacoesAlunos(Long turmaId) {
IndicacaoDAO dao = factory.getIndicacaoDAO();
IndicacaoAlunoDTO[] indicacoesArray = null;
try {
List<IndicacaoAluno> indicacoes = dao.findAllAlunos(turmaId);
indicacoes = arrangeIndicacoes(turmaId, indicacoes);
if (indicacoes != null) {
indicacoesArray = new IndicacaoAlunoDTO[indicacoes.size()];
for (int i = 0; i < indicacoes.size(); i++) {
indicacoesArray[i] = indicacoes.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 indicacoesArray;
}
use of com.tomasio.projects.trainning.dao.IndicacaoDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllIndicacoesAlunosSelecionados.
@Override
@Transactional(readOnly = true)
public IndicacaoAlunoDTO[] findAllIndicacoesAlunosSelecionados(Long turmaId) {
IndicacaoDAO dao = factory.getIndicacaoDAO();
IndicacaoAlunoDTO[] indicacoesArray = null;
try {
List<IndicacaoAluno> indicacoes = arrangeIndicacoes(turmaId, dao.findAllAlunosSelecionados(turmaId));
if (indicacoes != null) {
indicacoesArray = new IndicacaoAlunoDTO[indicacoes.size()];
for (int i = 0; i < indicacoes.size(); i++) {
indicacoesArray[i] = indicacoes.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 indicacoesArray;
}
use of com.tomasio.projects.trainning.dao.IndicacaoDAO 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;
}
Aggregations