use of com.tomasio.projects.trainning.model.Indicacao in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllIndicacoesAlunoByPessoaId.
@Override
@Transactional(readOnly = true)
public IndicacaoDTO[] findAllIndicacoesAlunoByPessoaId(Date exercicio, Long pessoaId) {
IndicacaoDAO dao = factory.getIndicacaoDAO();
IndicacaoDTO[] indicacoesArray = null;
try {
List<Indicacao> indicacoes = dao.findAllIndicacoesAlunoByPessoaId(pessoaId, exercicio);
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.model.Indicacao in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findIndicacao.
@Override
@Transactional(readOnly = true)
public IndicacaoDTO findIndicacao(Long indicacaoId) {
IndicacaoDAO dao = factory.getIndicacaoDAO();
Indicacao indicacao = null;
try {
indicacao = dao.find(indicacaoId);
} 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 (indicacao != null) {
return indicacao.createDTO();
} else {
return null;
}
}
use of com.tomasio.projects.trainning.model.Indicacao 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.model.Indicacao in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method updateIndicacao.
@Override
@Transactional
public void updateIndicacao(IndicacaoDTO indicacao) {
IndicacaoDAO dao = factory.getIndicacaoDAO();
Indicacao _indicacao = null;
if (indicacao != null) {
if (indicacao instanceof IndicacaoAlunoDTO) {
_indicacao = new IndicacaoAluno((IndicacaoAlunoDTO) indicacao);
} else {
_indicacao = new IndicacaoInstrutor((IndicacaoInstrutorDTO) indicacao);
}
}
try {
dao.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.model.Indicacao in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createParecer.
@Override
@Transactional
public Long createParecer(ParecerDTO parecer) {
ParecerDAO dao = factory.getParecerDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
Parecer _parecer = null;
if (parecer instanceof AprovacaoDTO) {
_parecer = new Aprovacao((AprovacaoDTO) parecer);
} else {
_parecer = new Reprovacao((ReprovacaoDTO) parecer);
}
Long id = null;
try {
id = dao.create(_parecer);
Indicacao indicacao = indicacaoDAO.find(_parecer.getIndicacao().getId());
updateWorkflowActors(indicacao.getId());
} 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