use of com.tomasio.projects.trainning.dao.HibernateOrganizacaoDAO in project trainning by fernandotomasio.
the class ImportTurmasImplEfetivasFromTabelao method periodosInstrutor.
private List<Periodo> periodosInstrutor(String codInstrutor, Connection conn) {
List<Periodo> periodos = new ArrayList<Periodo>();
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 periodoinstrutores where codInstrutores=" + codInstrutor);
while (rs.next()) {
Date inicio = rs.getDate("inicio");
Date termino = rs.getDate("termino");
Periodo periodo = new Periodo();
periodo.setDataInicio(inicio);
periodo.setDataTermino(termino);
periodos.add(periodo);
}
} catch (SQLException ex) {
Logger.getLogger(ImportTurmasImplEfetivasFromTabelao.class.getName()).log(Level.SEVERE, null, ex);
}
return periodos;
}
use of com.tomasio.projects.trainning.dao.HibernateOrganizacaoDAO in project trainning by fernandotomasio.
the class ImportTurmasImplEfetivasFromTabelao method distribuirVagas.
private void distribuirVagas(int codTabelao, TurmaEfetiva turmaCriada, Connection conn) {
try {
// DAOFactory factory = DAOUtil.getDAOFactory();
DistribuicaoDAO distribuicaoDAO = new HibernateDistribuicaoDAO();
OrganizacaoDAO organizacaoDAO = new HibernateOrganizacaoDAO();
Statement stm = conn.createStatement();
ResultSet rs = stm.executeQuery("select * from distribuicaovagas where codTabelao=" + codTabelao);
while (rs.next()) {
String local = rs.getString("local");
int quantidadeVagas = rs.getInt("quantidade");
boolean reserva = rs.getBoolean("reserva");
local = corrigirLocal(local);
Organizacao organizacao = organizacaoDAO.findBySigla(local);
if (organizacao == null) {
System.out.println("DISTRIBUIÇÃO NÃO IMPORTADA: " + turmaCriada.getCurso().getCodigo() + " - " + turmaCriada.getNumeroTurma() + " ->" + local);
continue;
}
if (quantidadeVagas < 1) {
System.out.println("DISTRIBUIÇÃO - DISTRIBUIÇÃO DE 0 VAGAS");
continue;
}
if ((organizacao != null) && (quantidadeVagas > 0)) {
Distribuicao distribuicao = new Distribuicao();
if (organizacao != null) {
distribuicao.setOrganizacao(organizacao);
}
distribuicao.setTurma(turmaCriada);
distribuicao.setQuantidadeVagas(quantidadeVagas);
distribuicao.setReserva(false);
distribuicaoDAO.create(distribuicao);
} else {
if (organizacao == null) {
System.out.println(turmaCriada.getCurso().getCodigo() + " - " + turmaCriada.getNumeroTurma() + "organização não encontrada: " + local);
}
if (quantidadeVagas <= 0) {
System.out.println(turmaCriada.getCurso().getCodigo() + " - " + turmaCriada.getNumeroTurma() + "quantidade de vagas inválida: " + local);
}
}
}
} 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.HibernateOrganizacaoDAO in project trainning by fernandotomasio.
the class ImportTurmasImplEfetivasFromTabelao method recuperarAnotacoesPagina.
private void recuperarAnotacoesPagina(int codTabelao, TurmaEfetiva turmaCriada, Connection conn) {
try {
IndicacaoDAO indicacaoDAO = new HibernateIndicacaoDAO();
OrganizacaoDAO organizacaoDAO = new HibernateOrganizacaoDAO();
PessoaDAO pessoaDAO = new HibernatePessoaDAO();
AnotacaoDAO anotacaoDAO = new HibernateAnotacaoDAO();
Statement stm = conn.createStatement();
ResultSet rs = stm.executeQuery("select * from tabelao where codTabelao=" + codTabelao);
while (rs.next()) {
String observacoes = rs.getString("avisos");
AnotacaoDTO anotacao = new AnotacaoDTO();
anotacao.setDataCriacao(new Date());
anotacao.setObjectId(turmaCriada.getObjectId());
anotacao.setTexto(observacoes);
anotacao.setUser("IMPORTAÇÃO");
anotacao.setVisibleInWebpage(true);
anotacaoDAO.create(anotacao);
}
} catch (SQLException ex) {
Logger.getLogger(ImportTurmasImplEfetivasFromTabelao.class.getName()).log(Level.SEVERE, null, ex);
} catch (Exception ex) {
Logger.getLogger(ImportTurmasImplEfetivasFromTabelao.class.getName()).log(Level.SEVERE, null, ex);
}
}
use of com.tomasio.projects.trainning.dao.HibernateOrganizacaoDAO in project trainning by fernandotomasio.
the class ImportTurmasImplEfetivasFromTabelao method recuperarAnotacoes.
private void recuperarAnotacoes(int codTabelao, TurmaEfetiva turmaCriada, Connection conn) {
try {
IndicacaoDAO indicacaoDAO = new HibernateIndicacaoDAO();
OrganizacaoDAO organizacaoDAO = new HibernateOrganizacaoDAO();
PessoaDAO pessoaDAO = new HibernatePessoaDAO();
AnotacaoDAO anotacaoDAO = new HibernateAnotacaoDAO();
Statement stm = conn.createStatement();
ResultSet rs = stm.executeQuery("select * from tabelao where codTabelao=" + codTabelao);
while (rs.next()) {
String observacoes = rs.getString("observacoes");
AnotacaoDTO anotacao = new AnotacaoDTO();
anotacao.setDataCriacao(new Date());
anotacao.setObjectId(turmaCriada.getObjectId());
anotacao.setTexto(observacoes);
anotacao.setUser("IMPORTAÇÃO");
anotacaoDAO.create(anotacao);
}
} catch (SQLException ex) {
Logger.getLogger(ImportTurmasImplEfetivasFromTabelao.class.getName()).log(Level.SEVERE, null, ex);
} catch (Exception ex) {
Logger.getLogger(ImportTurmasImplEfetivasFromTabelao.class.getName()).log(Level.SEVERE, null, ex);
}
}
use of com.tomasio.projects.trainning.dao.HibernateOrganizacaoDAO 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);
}
}
Aggregations