Esempio n. 1
0
 public String elimina_registro_llamada(
     String f_fproceso,
     String c_contrato,
     String c_codcent,
     String id_codtcon,
     String id_codtres,
     String id_codusu,
     String n_idxges)
     throws Exception {
   Conexion co = new Conexion();
   String cad =
       " { call USP_DEL_GESTION_LLM('"
           + f_fproceso
           + "','"
           + c_contrato
           + "','"
           + c_codcent
           + "','"
           + id_codtcon
           + "','"
           + id_codtres
           + "','"
           + id_codusu
           + "','"
           + n_idxges
           + "') } ";
   return co.Ejecutar(cad);
 }
Esempio n. 2
0
 public String graba_gestion_contrato(
     String c_codcent,
     String c_contrato,
     String f_fproceso,
     String f_fecasig,
     String f_fecmod,
     int n_idxges,
     String id_codtges,
     String id_codtcon,
     String id_codtres,
     String id_codtres_sub,
     String f_fecresp,
     String f_fecrevi,
     String f_fecprog,
     String c_obsges,
     String id_codusu,
     String n_impprom,
     String c_codresp_mt,
     String estado_ges,
     String numubi)
     throws Exception {
   Conexion co = new Conexion();
   String cadena =
       " { call USP_UPD_GESTION_CONTRATO3("
           + c_codcent
           + ","
           + c_contrato
           + ","
           + f_fproceso
           + ","
           + f_fecasig
           + ","
           + f_fecmod
           + ","
           + n_idxges
           + ","
           + id_codtges
           + ","
           + id_codtcon
           + ","
           + id_codtres
           + ","
           + id_codtres_sub
           + ","
           + f_fecresp
           + ","
           + f_fecrevi
           + ","
           + f_fecprog
           + ","
           + c_obsges
           + ",'"
           + id_codusu
           + "',"
           + n_impprom
           + ","
           + c_codresp_mt
           + ","
           + estado_ges
           + ","
           + numubi
           + ") }";
   return co.Ejecutar(cadena);
 }