public void altera(Stib_ParametroED ed) throws Excecoes {
    try {

      Stib_ParametroED parED = this.getByRecord(ed);
      if (!doValida(parED.getNm_Parametro())) {
        sql =
            "INSERT INTO Stib_Parametros ("
                + "nm_Parametro,"
                + "nr_Percentual_Faixa1_De,"
                + "nr_Percentual_Faixa1_Ate,"
                + "nr_Percentual_Faixa2_De,"
                + "nr_Percentual_Faixa2_Ate,"
                + "nr_Percentual_Faixa3_De,"
                + "nr_Percentual_Faixa3_Ate "
                + ") "
                + " VALUES ("
                + " '"
                + "nm_Parametro'"
                + ",0"
                + ",0"
                + ",0"
                + ",0"
                + ",0"
                + ",0"
                + ")";
        executasql.executarUpdate(sql);
      }
      sql =
          "UPDATE Stib_Parametros SET "
              + " nr_Percentual_Faixa1_De = "
              + ed.getNr_Percentual_Faixa1_De()
              + ",nr_Percentual_Faixa1_Ate = "
              + ed.getNr_Percentual_Faixa1_Ate()
              + ",nr_Percentual_Faixa2_De = "
              + ed.getNr_Percentual_Faixa2_De()
              + ",nr_Percentual_Faixa2_Ate = "
              + ed.getNr_Percentual_Faixa2_Ate()
              + ",nr_Percentual_Faixa3_De = "
              + ed.getNr_Percentual_Faixa3_De()
              + ",nr_Percentual_Faixa3_Ate = "
              + ed.getNr_Percentual_Faixa3_Ate()
              + ",dt_Stamp = '"
              + ed.getDt_stamp()
              + "' "
              + ",usuario_Stamp = '"
              + ed.getUsuario_Stamp()
              + "' "
              + ",dm_Stamp = '"
              + ed.getDm_Stamp()
              + "' ";
      executasql.executarUpdate(sql);
    } catch (Exception exc) {
      throw new Excecoes(
          exc.getMessage(), exc, this.getClass().getName(), "altera(Stib_ParametroED ed)");
    }
  }
  public Stas_Motivo_SucataED inclui(Stas_Motivo_SucataED ed) throws Excecoes {
    try {
      sql =
          "INSERT INTO Stas_Motivos_Sucatas ("
              + "cd_Motivo_Sucata"
              + ",nm_Motivo_Sucata "
              + ",tx_Motivo_Sucata "
              + ",tx_Recomendacao "
              + ",nm_Motivo_Sucata_E "
              + ",tx_Motivo_Sucata_E "
              + ",tx_Recomendacao_E "
              + ",dm_Stamp"
              + ",dt_Stamp"
              + ",usuario_Stamp"
              + ") "
              + " VALUES ("
              + " '"
              + ed.getCd_Motivo_Sucata()
              + "'"
              + ",'"
              + ed.getNm_Motivo_Sucata()
              + "'"
              + ",'"
              + ed.getTx_Motivo_Sucata()
              + "'"
              + ",'"
              + ed.getTx_Recomendacao()
              + "'"
              + ",'"
              + ed.getNm_Motivo_Sucata_E()
              + "'"
              + ",'"
              + ed.getTx_Motivo_Sucata_E()
              + "'"
              + ",'"
              + ed.getTx_Recomendacao_E()
              + "'"
              + ",'I'"
              + ",'"
              + ed.getDt_stamp()
              + "'"
              + ",'"
              + ed.getUsuario_Stamp()
              + "'"
              + ")";
      executasql.executarUpdate(sql);
      ed.setOid_Motivo_Sucata(getSeq("Stas_Motivos_Sucatas_oid_Motivo_Sucata_seq"));

      if ("S".equals(ed.getDm_Grava_Imagem())) {
        this.setImagem(ed.getOid_Motivo_Sucata(), ed.getOid_Usuario() + ".jpg");
        // this.setImagemNova(ed.getOid_Banda(),ed.getOid_Usuario()+".jpg");
      }
      return ed;
    } catch (Exception exc) {
      throw new Excecoes(
          exc.getMessage(), exc, this.getClass().getName(), "inclui(Stas_Motivos_SucatasED ed)");
    }
  }
 public void delete(Stas_Motivo_SucataED ed) throws Excecoes {
   try {
     sql =
         "DELETE FROM Stas_Motivos_Sucatas "
             + "WHERE "
             + "oid_Motivo_Sucata = "
             + ed.getOid_Motivo_Sucata();
     executasql.executarUpdate(sql);
   } catch (Exception exc) {
     throw new Excecoes(
         exc.getMessage(), exc, this.getClass().getName(), "delete(Stas_Motivos_SucatasED ed)");
   }
 }
 public void delete(Stib_Item_A_InspecionarED ed) throws Excecoes {
   try {
     sql =
         "DELETE FROM Stib_Itens_A_Inspecionar "
             + "WHERE "
             + "oid_Item_A_Inspecionar = "
             + ed.getOid_Item_A_Inspecionar();
     executasql.executarUpdate(sql);
   } catch (Exception exc) {
     throw new Excecoes(
         exc.getMessage(),
         exc,
         this.getClass().getName(),
         "delete(Stib_Itens_A_InspecionarED ed)");
   }
 }
 public Stib_Item_A_InspecionarED inclui(Stib_Item_A_InspecionarED ed) throws Excecoes {
   try {
     sql =
         "INSERT INTO Stib_Itens_A_Inspecionar ("
             + "cd_Item_A_Inspecionar"
             + ",nm_Item_A_Inspecionar "
             + ",nm_Item_A_Inspecionar_E "
             + ",nr_Ordem "
             + ",dm_Tipo "
             + ",dm_Stamp"
             + ",dt_Stamp"
             + ",usuario_Stamp"
             + ") "
             + " VALUES ("
             + " '"
             + ed.getCd_Item_A_Inspecionar()
             + "'"
             + ",'"
             + ed.getNm_Item_A_Inspecionar()
             + "'"
             + ",'"
             + ed.getNm_Item_A_Inspecionar_E()
             + "'"
             + ", "
             + ed.getNr_Ordem()
             + ",'"
             + ed.getDm_Tipo()
             + "'"
             + ",'I'"
             + ",'"
             + ed.getDt_stamp()
             + "'"
             + ",'"
             + ed.getUsuario_Stamp()
             + "'"
             + ")";
     executasql.executarUpdate(sql);
     ed.setOid_Item_A_Inspecionar(getSeq("Stib_Itens_A_Inspecionar_oid_Item_A_Inspecionar_seq"));
     return ed;
   } catch (Exception exc) {
     throw new Excecoes(
         exc.getMessage(),
         exc,
         this.getClass().getName(),
         "inclui(Stib_Itens_A_InspecionarED ed)");
   }
 }
 public void altera(Stas_Motivo_SucataED ed) throws Excecoes {
   try {
     sql =
         "UPDATE Stas_Motivos_Sucatas SET "
             + " cd_Motivo_Sucata = '"
             + ed.getCd_Motivo_Sucata()
             + "' "
             + ",nm_Motivo_Sucata = '"
             + ed.getNm_Motivo_Sucata()
             + "' "
             + ",tx_Motivo_Sucata = '"
             + ed.getTx_Motivo_Sucata()
             + "' "
             + ",tx_Recomendacao = '"
             + ed.getTx_Recomendacao()
             + "' "
             + ",nm_Motivo_Sucata_E = '"
             + ed.getNm_Motivo_Sucata_E()
             + "' "
             + ",tx_Motivo_Sucata_E = '"
             + ed.getTx_Motivo_Sucata_E()
             + "' "
             + ",tx_Recomendacao_E = '"
             + ed.getTx_Recomendacao_E()
             + "' "
             + ",dt_Stamp = '"
             + ed.getDt_stamp()
             + "' "
             + ",usuario_Stamp = '"
             + ed.getUsuario_Stamp()
             + "' "
             + ",dm_Stamp = '"
             + ed.getDm_Stamp()
             + "' "
             + "WHERE "
             + "oid_Motivo_Sucata = "
             + ed.getOid_Motivo_Sucata();
     executasql.executarUpdate(sql);
     if ("S".equals(ed.getDm_Grava_Imagem())) {
       this.setImagem(ed.getOid_Motivo_Sucata(), ed.getOid_Usuario() + ".jpg");
       // this.setImagemNova(ed.getOid_Banda(),ed.getOid_Usuario()+".jpg");
     }
   } catch (Exception exc) {
     throw new Excecoes(
         exc.getMessage(), exc, this.getClass().getName(), "altera(Stas_Motivos_SucatasED ed)");
   }
 }
 public void altera(Stib_Item_A_InspecionarED ed) throws Excecoes {
   try {
     sql =
         "UPDATE Stib_Itens_A_Inspecionar SET "
             + " cd_Item_A_Inspecionar = '"
             + ed.getCd_Item_A_Inspecionar()
             + "' "
             + ",nm_Item_A_Inspecionar = '"
             + ed.getNm_Item_A_Inspecionar()
             + "' "
             + ",nm_Item_A_Inspecionar_E = '"
             + ed.getNm_Item_A_Inspecionar_E()
             + "' "
             + ",nr_Ordem = "
             + ed.getNr_Ordem()
             + ",dm_Tipo = '"
             + ed.getDm_Tipo()
             + "' "
             + ",dt_Stamp = '"
             + ed.getDt_stamp()
             + "' "
             + ",usuario_Stamp = '"
             + ed.getUsuario_Stamp()
             + "' "
             + ",dm_Stamp = '"
             + ed.getDm_Stamp()
             + "' "
             + "WHERE "
             + "oid_Item_A_Inspecionar = "
             + ed.getOid_Item_A_Inspecionar();
     executasql.executarUpdate(sql);
   } catch (Exception exc) {
     throw new Excecoes(
         exc.getMessage(),
         exc,
         this.getClass().getName(),
         "altera(Stib_Itens_A_InspecionarED ed)");
   }
 }