use of com.tomasio.projects.trainning.dao.MatriculaDAO 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.dao.MatriculaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method countMatriculasInstrutores.
@Override
@Transactional(readOnly = true)
public int countMatriculasInstrutores(Date start, Date end) {
MatriculaDAO dao = factory.getMatriculaDAO();
int count = 0;
try {
count = dao.countAllInstrutores(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.MatriculaDAO in project trainning by fernandotomasio.
the class ImportTurmasImplEfetivasFromTabelao method recuperarInstrutores.
private void recuperarInstrutores(int codTabelao, TurmaEfetiva turmaCriada, Connection conn) {
try {
IndicacaoDAO indicacaoDAO = new HibernateIndicacaoDAO();
OrganizacaoDAO organizacaoDAO = new HibernateOrganizacaoDAO();
PessoaDAO pessoaDAO = new HibernatePessoaDAO();
MatriculaDAO matriculaDAO = new HibernateMatriculaDAO();
Statement stm = conn.createStatement();
ResultSet rs = stm.executeQuery("select * from instrutores where codTabelao=" + codTabelao);
while (rs.next()) {
String local = rs.getString("LOCATUAL");
String cpf = rs.getString("cpf");
String codInstrutor = rs.getString("codInstrutores");
List<Periodo> periodos = periodosInstrutor(codInstrutor, conn);
// local = "DECEA";
Organizacao organizacao = organizacaoDAO.findBySigla("DECEA");
Pessoa pessoa = ImportHelper.findPessoa(cpf, conn);
if (pessoa == null) {
System.out.println("INSTRUTOR NÃO IMPORTADO: " + turmaCriada.getCurso().getCodigo() + " - " + turmaCriada.getNumeroTurma() + " ->" + cpf);
continue;
}
for (Periodo periodo : periodos) {
if ((organizacao != null) && (pessoa != null)) {
IndicacaoInstrutor indicacao = new IndicacaoInstrutor();
MatriculaInstrutor matricula = new MatriculaInstrutor();
indicacao.setDataCriacao(new Date());
indicacao.setOrganizacao(organizacao);
indicacao.setPeriodo(periodo);
indicacao.setPessoa(pessoa);
indicacao.setTurma(turmaCriada);
Long indicacaoId = indicacaoDAO.create(indicacao);
matricula.setIndicacao(indicacaoDAO.find(indicacaoId));
matricula.setPessoa(pessoa);
matricula.setTurma(turmaCriada);
matriculaDAO.create(matricula);
}
}
}
} catch (SQLException ex) {
Logger.getLogger(ImportTurmasImplEfetivasFromTabelao.class.getName()).log(Level.SEVERE, null, ex);
} catch (DAOException ex) {
Logger.getLogger(ImportTurmasImplEfetivasFromTabelao.class.getName()).log(Level.SEVERE, null, ex);
}
}
use of com.tomasio.projects.trainning.dao.MatriculaDAO in project trainning by fernandotomasio.
the class ImportIndicacoesToMatricula method execute.
@Override
public void execute() {
IndicacaoDAO indicacaoDAO = new HibernateIndicacaoDAO();
MatriculaDAO matriculaDAO = new HibernateMatriculaDAO();
PreMatriculaDAO preMatriculaDAO = new HibernatePreMatriculaDAO();
Map<Long, List<IndicacaoAluno>> indicacoesAlunosMap = new HashMap<Long, List<IndicacaoAluno>>();
Map<Long, List<IndicacaoInstrutor>> indicacoesInstrutoresMap = new HashMap<Long, List<IndicacaoInstrutor>>();
int i = 0;
try {
List<Matricula> matriculas = matriculaDAO.findAll();
for (Matricula matricula : matriculas) {
Long turmaId = matricula.getTurma().getId();
System.out.print(++i + " - ");
if (matricula instanceof MatriculaAluno) {
List<IndicacaoAluno> indicacoesAlunos = indicacoesAlunosMap.get(turmaId);
if (indicacoesAlunos == null) {
indicacoesAlunos = indicacaoDAO.findAllAlunos(turmaId);
indicacoesAlunosMap.put(turmaId, indicacoesAlunos);
}
for (IndicacaoAluno indicacaoAluno : indicacoesAlunos) {
if (matricula.getPessoa().getId().equals(indicacaoAluno.getPessoa().getId())) {
matricula.setIndicacao(indicacaoAluno);
matriculaDAO.update(matricula);
}
}
} else {
List<IndicacaoInstrutor> indicacoesInstrutores = indicacoesInstrutoresMap.get(turmaId);
if (indicacoesInstrutores == null) {
indicacoesInstrutores = indicacaoDAO.findAllInstrutores(turmaId);
indicacoesInstrutoresMap.put(turmaId, indicacoesInstrutores);
}
for (IndicacaoInstrutor indicacaoInstrutor : indicacoesInstrutores) {
if (matricula.getPessoa().getId().equals(indicacaoInstrutor.getPessoa().getId())) {
matricula.setIndicacao(indicacaoInstrutor);
matriculaDAO.update(matricula);
}
}
}
System.out.println("");
}
System.out.println(matriculas.size());
} catch (DAOException ex) {
Logger.getLogger(ImportIndicacoesToMatricula.class.getName()).log(Level.SEVERE, null, ex);
}
}
Aggregations