use of com.tomasio.projects.trainning.dao.OrganizacaoDAO 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.OrganizacaoDAO 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);
}
}
use of com.tomasio.projects.trainning.dao.OrganizacaoDAO in project trainning by fernandotomasio.
the class ImportTurmasImplEfetivasFromTabelao method recuperarMatriculas.
private void recuperarMatriculas(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 indicacoes where codTabelao=" + codTabelao);
while (rs.next()) {
String cpf = rs.getString("cpf");
boolean matriculado = rs.getBoolean("matriculado");
;
if (!matriculado) {
continue;
}
Pessoa pessoa = ImportHelper.findPessoa(cpf, conn);
if (pessoa == null) {
System.out.println("MATRICULA NÃO IMPORTADA: " + turmaCriada.getCurso().getCodigo() + " - " + turmaCriada.getNumeroTurma() + " ->" + cpf);
continue;
}
Matricula matricula = new MatriculaAluno();
matricula.setTurma(turmaCriada);
matricula.setPessoa(pessoa);
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.OrganizacaoDAO in project trainning by fernandotomasio.
the class ImportTurmasImplEfetivasFromTabelao method recuperarIndicacoes.
private void recuperarIndicacoes(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 indicacoes where codTabelao=" + codTabelao);
while (rs.next()) {
String local = rs.getString("LOCATUAL");
String cpf = rs.getString("cpf");
String email = rs.getString("email");
String emailChefia = rs.getString("email_chefia");
String justificativa = rs.getString("justificativa");
boolean aprovado = rs.getBoolean("aprovado");
int prioridade = rs.getInt("prioridade");
Date dataCriacao = rs.getDate("dataIndicacao");
if (dataCriacao == null) {
dataCriacao = new Date();
}
boolean matriculado = rs.getBoolean("matriculado");
local = ImportHelper.corrigirLocal(local);
Organizacao organizacao = organizacaoDAO.findBySigla(local);
Pessoa pessoa = ImportHelper.findPessoa(cpf, conn);
if (pessoa != null) {
IndicacaoAluno indicacao = new IndicacaoAluno();
indicacao.setDataCriacao(new Date());
if (organizacao != null) {
indicacao.setOrganizacao(organizacao);
} else {
indicacao.setOrganizacao(organizacaoDAO.findBySigla("DECEA"));
}
indicacao.setPessoa(pessoa);
indicacao.setTurma(turmaCriada);
indicacao.setEmail(email);
indicacao.setEmailChefia(emailChefia);
indicacao.setJustificativa(justificativa);
indicacao.setPrioridade(prioridade);
indicacao.setDataCriacao(dataCriacao);
Long indicacaoId = indicacaoDAO.create(indicacao);
if (matriculado) {
MatriculaAluno matricula = new MatriculaAluno();
matricula.setIndicacao(indicacaoDAO.find(indicacaoId));
matricula.setPessoa(pessoa);
matricula.setTurma(turmaCriada);
matriculaDAO.create(matricula);
}
} else {
System.out.println("INDICAÇÃO NÃO IMPORTADA: " + turmaCriada.getCurso().getCodigo() + " - " + turmaCriada.getNumeroTurma() + " ->" + cpf);
}
}
} 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.OrganizacaoDAO in project trainning by fernandotomasio.
the class ImportSolicitacoesFromTextFile method main.
public static void main(String[] args) throws FileNotFoundException, IOException {
DAOFactory factory = DAOUtil.getDAOFactory();
TreinamentoSolicitadoDAO treinamentoDAO = factory.getTreinamentoSolicitadoDAO();
OrganizacaoDAO organizacaoDAO = factory.getOrganizacaoDAO();
CursoDAO cursoDAO = factory.getCursoDAO();
ItemPlanejamentoDAO itemPlanejamentoDAO = factory.getItemPlanejamentoDAO();
ItemPlanejamentoDTO planejamento = null;
try {
planejamento = itemPlanejamentoDAO.find(1L);
} catch (DAOException ex) {
ex.printStackTrace();
System.exit(0);
}
File file = new File("c:\\cindacta3.csv");
BufferedReader bufRdr = new BufferedReader(new FileReader(file));
String line = null;
while ((line = bufRdr.readLine()) != null) {
String[] lineArray = line.split(";");
String siglaOM = lineArray[0].replaceAll(" ", "");
String codCurso = lineArray[1].replaceAll(" ", "");
CursoDTO curso = null;
Organizacao organizacao = null;
int quantidade = Integer.parseInt(lineArray[2]);
try {
curso = cursoDAO.findByCodigo(codCurso).createDTO();
organizacao = organizacaoDAO.findBySigla(siglaOM);
} catch (DAOException ex) {
System.exit(0);
}
if (curso != null && organizacao != null && quantidade > 0) {
TreinamentoSolicitadoDTO treinamento = new TreinamentoSolicitadoDTO();
if (organizacao != null) {
treinamento.setOrganizacao(organizacao.createDTO());
}
treinamento.setItemPlanejamento(planejamento);
treinamento.setQuantidade(quantidade);
try {
treinamentoDAO.create(treinamento);
} catch (DAOException ex) {
System.out.println("Erro (Não Foi Criado): " + line);
}
System.out.println(organizacao.getSigla() + " " + curso.getCodigo() + " " + quantidade);
} else {
System.out.println("Erro (Não Encontrado): " + line);
}
}
}
Aggregations