Search in sources :

Example 21 with TurmaDAO

use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.

the class ImportTurmasImplEfetivasFromTabelao method execute.

@Override
public void execute() {
    try {
        TurmaDAO turmaDAO = new HibernateTurmaDAO();
        CursoDAO cursoDAO = null;
        PlanejamentoDAO planejamentoDAO = new HibernatePlanejamentoDAO();
        OrganizacaoDAO organizacaoDAO = new HibernateOrganizacaoDAO();
        Connection conn = DriverManager.getConnection("jdbc:mysql://10.32.63.29/dctp?user=dctp&password=112358");
        Statement stm = conn.createStatement();
        ResultSet rs = stm.executeQuery("SELECT * FROM tabelao where ano=2013");
        int i = 0;
        while (rs.next()) {
            // PlanejamentoDTO planejamento = planejamentoDAO.find(1L);
            TurmaEfetiva turma = new TurmaEfetiva();
            // turma.setPlanejamento(planejamento);
            Organizacao organizacaoGestora = organizacaoDAO.findBySigla("DECEA");
            if (organizacaoGestora != null) {
                turma.setOrganizacaoGestoraId(organizacaoGestora.getId());
            }
            turma.setExercicio(new Date());
            Date inicio = rs.getDate("inicio");
            Date fim = rs.getDate("fim");
            String local = rs.getString("local");
            Date inicio2 = rs.getDate("inicio2");
            Date fim2 = rs.getDate("fim2");
            String local2 = rs.getString("local2");
            Date inicio3 = rs.getDate("inicio3");
            Date fim3 = rs.getDate("fim3");
            String local3 = rs.getString("local3");
            String numTurma = rs.getString("turma");
            String codCurso = rs.getString("codcurso");
            int quantidadeVagas = rs.getInt("Vagas");
            turma.setQuantidadeVagas(quantidadeVagas);
            int codPlano = rs.getInt("codPlano");
            String ativado = rs.getString("ativado");
            int codTabelao = rs.getInt("codTabelao");
            // if (codCurso.equals("CNS014")) {
            // continue;
            // }
            // if (codCurso.equals("CNS005")) {
            // continue;
            // }
            // if (codCurso.equals("SAR005")) {
            // continue;
            // }
            // if (codCurso.equals("ASE007")) {
            // continue;
            // }
            // if (codCurso.equals("ASE009")) {
            // continue;
            // }
            Curso curso = cursoDAO.findByCodigo(codCurso);
            turma.setCurso(curso);
            if (codPlano != 11) {
                continue;
            }
            if (numTurma.contains("GT")) {
                System.out.println("GT NÃO IMPORTADO");
                continue;
            }
            String newNumTurma = numTurma;
            if (numTurma.contains("EP")) {
                newNumTurma = numTurma.replace("EP", "10");
            }
            try {
                turma.setNumeroTurma(Integer.parseInt(newNumTurma));
            } catch (NumberFormatException e) {
                System.out.println("INFO-ERROR   :  TURMA NÃO IMPORTADA " + codCurso + numTurma);
                continue;
            }
            if (inicio != null || fim != null) {
                local = corrigirLocal(local);
                Organizacao organizacao = organizacaoDAO.findBySigla(local);
                if (organizacao != null) {
                    turma.setResponsavelId(organizacao.getId());
                }
                Fase fase = new Fase();
                fase.setDataInicio(inicio);
                fase.setDataTermino(fim);
                fase.setDescricao("Presencial");
                if (organizacao != null) {
                    fase.setLocal(organizacao);
                }
                turma.addFase(fase);
            }
            if (inicio2 != null || fim2 != null) {
                local2 = corrigirLocal(local2);
                Organizacao organizacao2 = organizacaoDAO.findBySigla(local2);
                Fase fase2 = new Fase();
                fase2.setDataInicio(inicio2);
                fase2.setDataTermino(fim2);
                fase2.setDescricao("Prática");
                if (organizacao2 != null) {
                    fase2.setLocal(organizacao2);
                }
                turma.addFase(fase2);
            }
            if (inicio3 != null || fim3 != null) {
                local3 = corrigirLocal(local3);
                Organizacao organizacao3 = organizacaoDAO.findBySigla(local3);
                Fase fase3 = new Fase();
                fase3.setDataInicio(inicio3);
                fase3.setDataTermino(fim3);
                fase3.setDescricao("Prática");
                if (organizacao3 != null) {
                    fase3.setLocal(organizacao3);
                }
                turma.addFase(fase3);
            }
            SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy");
            Calendar calendar = Calendar.getInstance();
            Periodo periodoIndicacao = new Periodo();
            try {
                periodoIndicacao.setDataInicio(df.parse("01/01/2013"));
                calendar.setTime(turma.getDataInicio());
                calendar.add(Calendar.DAY_OF_YEAR, -30);
                periodoIndicacao.setDataTermino(calendar.getTime());
            } catch (ParseException ex) {
                Logger.getLogger(ImportTurmasImplEfetivasFromTabelao.class.getName()).log(Level.SEVERE, null, ex);
            }
            if (ativado.equals("C")) {
                turma.setCancelado(true);
            }
            turma.setPeriodoIndicacao(periodoIndicacao);
            if ((turma.getCurso() != null) && (turma.getExercicio() != null)) {
                Long turmaId = turmaDAO.create(turma);
                TurmaEfetiva turmaCriada = (TurmaEfetiva) turmaDAO.find(turmaId);
                // TurmaEfetiva turmaCriada = new TurmaEfetiva(); //retirar essa linha e descomentar as duas de cima
                distribuirVagas(codTabelao, turmaCriada, conn);
                recuperarIndicacoes(codTabelao, turmaCriada, conn);
                recuperarInstrutores(codTabelao, turmaCriada, conn);
                if (turma.isCancelado() == false) {
                // recuperarMatriculas(codTabelao, turmaCriada, conn);
                }
                recuperarAnotacoes(codTabelao, turmaCriada, conn);
                recuperarAnotacoesPagina(codTabelao, turmaCriada, conn);
                recuperarDocumentos(codCurso, numTurma, turmaCriada, conn);
                Long time = new Date().getTime();
                while (new Date().getTime() - time < 200) {
                }
                System.out.println(i++ + "-------------------------------------------------------------------------");
            } else {
                System.out.println("turma não cadastrada " + codCurso + " - " + codTabelao + " - " + numTurma);
            }
        }
        conn.close();
    } 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);
    }
}
Also used : Fase(com.tomasio.projects.trainning.model.Fase) HibernateCursoDAO(com.tomasio.projects.trainning.dao.HibernateCursoDAO) CursoDAO(com.tomasio.projects.trainning.dao.CursoDAO) DAOException(com.tomasio.projects.trainning.exception.DAOException) OrganizacaoDAO(com.tomasio.projects.trainning.dao.OrganizacaoDAO) HibernateOrganizacaoDAO(com.tomasio.projects.trainning.dao.HibernateOrganizacaoDAO) Organizacao(com.tomasio.projects.trainning.model.Organizacao) HibernatePlanejamentoDAO(com.tomasio.projects.trainning.dao.HibernatePlanejamentoDAO) HibernatePlanejamentoDAO(com.tomasio.projects.trainning.dao.HibernatePlanejamentoDAO) PlanejamentoDAO(com.tomasio.projects.trainning.dao.PlanejamentoDAO) Curso(com.tomasio.projects.trainning.model.Curso) HibernateTurmaDAO(com.tomasio.projects.trainning.dao.HibernateTurmaDAO) TurmaDAO(com.tomasio.projects.trainning.dao.TurmaDAO) TurmaEfetiva(com.tomasio.projects.trainning.model.TurmaEfetiva) Calendar(java.util.Calendar) HibernateOrganizacaoDAO(com.tomasio.projects.trainning.dao.HibernateOrganizacaoDAO) Periodo(com.tomasio.projects.trainning.model.Periodo) Date(java.util.Date) HibernateTurmaDAO(com.tomasio.projects.trainning.dao.HibernateTurmaDAO) ParseException(java.text.ParseException) SimpleDateFormat(java.text.SimpleDateFormat)

Example 22 with TurmaDAO

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, Integer pageNumber, Integer pagesize) {
    TurmaDAO dao = factory.getTurmaDAO();
    TurmaEfetivaDTO[] turmasArray = null;
    try {
        List<TurmaEfetiva> turmas = dao.searchTurmasEfetivas(exercicio, planoId, cursoId, responsavelId, organizacaoGestoraId, term, pageNumber, pagesize);
        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;
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) TurmaEfetivaDTO(com.tomasio.projects.trainning.dto.TurmaEfetivaDTO) StatusTurmaEfetiva(com.tomasio.projects.trainning.model.StatusTurmaEfetiva) TurmaEfetiva(com.tomasio.projects.trainning.model.TurmaEfetiva) CoreException(com.tomasio.projects.trainning.exeption.CoreException) TurmaDAO(com.tomasio.projects.trainning.dao.TurmaDAO) DAOException(com.tomasio.projects.trainning.exception.DAOException) ParseException(java.text.ParseException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 23 with TurmaDAO

use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.

the class AtividadesEnsinoServiceSimpleImpl method calculateCustoPrevistoInstrutores.

@Override
@Transactional(readOnly = true)
public Map<String, BigDecimal> calculateCustoPrevistoInstrutores(TurmaEfetivaDTO[] turmas) {
    Map<String, BigDecimal> result = new HashMap();
    SimpleDateFormat df = new SimpleDateFormat("yyyy");
    TurmaDAO turmaDAO = factory.getTurmaDAO();
    BigDecimal transportePrevisto = new BigDecimal(0.00);
    BigDecimal diariasPrevisto = new BigDecimal(0.00);
    for (TurmaEfetivaDTO turma : turmas) {
        try {
            int exercicio = Integer.parseInt(df.format(turma.getExercicio()));
            Long cursoId = turma.getCurso().getId();
            int totalTurmas = 0;
            for (int i = exercicio - 2; i < exercicio; i++) {
                List<TurmaEfetiva> turmasAnteriores = turmaDAO.findAllTurmasEfetivas(df.parse(String.valueOf(i)), null, cursoId, null, null, null);
                Iterator<TurmaEfetiva> iterator = turmasAnteriores.iterator();
                while (iterator.hasNext()) {
                    TurmaEfetiva t = iterator.next();
                    if (t.isAtivado() == false || t.isCancelado()) {
                        iterator.remove();
                    }
                }
                totalTurmas += turmasAnteriores.size();
                TurmaEfetivaDTO[] turmasArray = new TurmaEfetivaDTO[turmasAnteriores.size()];
                for (int j = 0; j < turmasArray.length; j++) {
                    turmasArray[j] = turmasAnteriores.get(j).createDTOWithoutDependencies();
                }
                Map<String, BigDecimal> mapCustos = calculateCustoRealizadoInstrutores(turmasArray);
                if (totalTurmas > 0) {
                    diariasPrevisto = diariasPrevisto.add(mapCustos.get("diarias").divide(new BigDecimal(totalTurmas), BigDecimal.ROUND_UP));
                    transportePrevisto = transportePrevisto.add(mapCustos.get("transporte").divide(new BigDecimal(totalTurmas), BigDecimal.ROUND_UP));
                }
            }
        } catch (DAOException | ParseException ex) {
            Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
    result.put("transporte", transportePrevisto);
    result.put("diarias", diariasPrevisto);
    result.put("total", transportePrevisto.add(diariasPrevisto));
    return result;
}
Also used : StatusTurmaEfetiva(com.tomasio.projects.trainning.model.StatusTurmaEfetiva) TurmaEfetiva(com.tomasio.projects.trainning.model.TurmaEfetiva) HashMap(java.util.HashMap) BigDecimal(java.math.BigDecimal) DAOException(com.tomasio.projects.trainning.exception.DAOException) TurmaEfetivaDTO(com.tomasio.projects.trainning.dto.TurmaEfetivaDTO) ParseException(java.text.ParseException) TurmaDAO(com.tomasio.projects.trainning.dao.TurmaDAO) SimpleDateFormat(java.text.SimpleDateFormat) Transactional(org.springframework.transaction.annotation.Transactional)

Example 24 with TurmaDAO

use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.

the class AtividadesEnsinoServiceSimpleImpl method createMatricula.

@Override
@Transactional
public Long createMatricula(MatriculaDTO matricula) {
    MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
    IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
    TurmaDAO turmaDAO = factory.getTurmaDAO();
    Matricula _matricula = null;
    if (matricula != null) {
        if (matricula instanceof MatriculaAlunoDTO) {
            _matricula = new MatriculaAluno((MatriculaAlunoDTO) matricula);
        } else {
            _matricula = new MatriculaInstrutor((MatriculaInstrutorDTO) matricula);
        }
    }
    Long id = null;
    try {
        Indicacao _indicacao = _matricula.getIndicacao();
        TurmaEfetiva _turma = _matricula.getTurma();
        id = matriculaDAO.create(_matricula);
        _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("Erro em tempo de execução: " + ex.getMessage());
    }
    return id;
}
Also used : MatriculaInstrutor(com.tomasio.projects.trainning.model.MatriculaInstrutor) PreMatriculaInstrutor(com.tomasio.projects.trainning.model.PreMatriculaInstrutor) StatusTurmaEfetiva(com.tomasio.projects.trainning.model.StatusTurmaEfetiva) TurmaEfetiva(com.tomasio.projects.trainning.model.TurmaEfetiva) CancelamentoMatricula(com.tomasio.projects.trainning.model.CancelamentoMatricula) Matricula(com.tomasio.projects.trainning.model.Matricula) NotificacaoMatricula(com.tomasio.projects.trainning.model.NotificacaoMatricula) PreMatricula(com.tomasio.projects.trainning.model.PreMatricula) Indicacao(com.tomasio.projects.trainning.model.Indicacao) PreMatriculaInstrutorDTO(com.tomasio.projects.trainning.dto.PreMatriculaInstrutorDTO) MatriculaInstrutorDTO(com.tomasio.projects.trainning.dto.MatriculaInstrutorDTO) DAOException(com.tomasio.projects.trainning.exception.DAOException) ParseException(java.text.ParseException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) IndicacaoDAO(com.tomasio.projects.trainning.dao.IndicacaoDAO) PreMatriculaAlunoDTO(com.tomasio.projects.trainning.dto.PreMatriculaAlunoDTO) MatriculaAlunoDTO(com.tomasio.projects.trainning.dto.MatriculaAlunoDTO) DAOException(com.tomasio.projects.trainning.exception.DAOException) PreMatriculaAluno(com.tomasio.projects.trainning.model.PreMatriculaAluno) MatriculaAluno(com.tomasio.projects.trainning.model.MatriculaAluno) CoreException(com.tomasio.projects.trainning.exeption.CoreException) CancelamentoMatriculaDAO(com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO) MatriculaDAO(com.tomasio.projects.trainning.dao.MatriculaDAO) NotificacaoMatriculaDAO(com.tomasio.projects.trainning.dao.NotificacaoMatriculaDAO) PreMatriculaDAO(com.tomasio.projects.trainning.dao.PreMatriculaDAO) TurmaDAO(com.tomasio.projects.trainning.dao.TurmaDAO) Transactional(org.springframework.transaction.annotation.Transactional)

Example 25 with TurmaDAO

use of com.tomasio.projects.trainning.dao.TurmaDAO in project trainning by fernandotomasio.

the class AtividadesEnsinoServiceSimpleImpl method createTurmaEfetiva.

@Override
@Transactional
public Long createTurmaEfetiva(TurmaEfetivaDTO turma) {
    TurmaDAO dao = factory.getTurmaDAO();
    TurmaEfetiva _turma = new TurmaEfetiva(turma);
    Long id = null;
    try {
        id = dao.create(_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());
    }
    return id;
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) StatusTurmaEfetiva(com.tomasio.projects.trainning.model.StatusTurmaEfetiva) TurmaEfetiva(com.tomasio.projects.trainning.model.TurmaEfetiva) CoreException(com.tomasio.projects.trainning.exeption.CoreException) TurmaDAO(com.tomasio.projects.trainning.dao.TurmaDAO) DAOException(com.tomasio.projects.trainning.exception.DAOException) ParseException(java.text.ParseException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

TurmaDAO (com.tomasio.projects.trainning.dao.TurmaDAO)29 DAOException (com.tomasio.projects.trainning.exception.DAOException)27 Transactional (org.springframework.transaction.annotation.Transactional)26 ParseException (java.text.ParseException)25 TurmaEfetiva (com.tomasio.projects.trainning.model.TurmaEfetiva)22 StatusTurmaEfetiva (com.tomasio.projects.trainning.model.StatusTurmaEfetiva)21 CoreException (com.tomasio.projects.trainning.exeption.CoreException)19 IndicacaoDAO (com.tomasio.projects.trainning.dao.IndicacaoDAO)13 Indicacao (com.tomasio.projects.trainning.model.Indicacao)11 PreMatriculaDAO (com.tomasio.projects.trainning.dao.PreMatriculaDAO)9 TurmaEfetivaDTO (com.tomasio.projects.trainning.dto.TurmaEfetivaDTO)9 PreMatricula (com.tomasio.projects.trainning.model.PreMatricula)9 CancelamentoMatriculaDAO (com.tomasio.projects.trainning.dao.CancelamentoMatriculaDAO)7 MatriculaDAO (com.tomasio.projects.trainning.dao.MatriculaDAO)7 NotificacaoMatriculaDAO (com.tomasio.projects.trainning.dao.NotificacaoMatriculaDAO)7 CancelamentoMatricula (com.tomasio.projects.trainning.model.CancelamentoMatricula)7 Matricula (com.tomasio.projects.trainning.model.Matricula)7 NotificacaoMatricula (com.tomasio.projects.trainning.model.NotificacaoMatricula)7 ArrayList (java.util.ArrayList)7 SimpleDateFormat (java.text.SimpleDateFormat)6