Package loaddata

Source Code of loaddata.LoadResultadoLicitacion

package loaddata;

import api.ContextObject;

public class LoadResultadoLicitacion {

  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    ContextObject oContext = new ContextObject();
   
    orm.Tmp_resultadoproceso[] ormTmp_resultadoprocesos = oContext.oLicitacion.getReport(null, 6);
    int length = ormTmp_resultadoprocesos.length;
    for (int i = 0; i < length; i++) {
      System.out.println("########");
      System.out.println("Codigo Licitacion"+ormTmp_resultadoprocesos[i].getRp_lc_id_codigo_licitacion().getLc_id_codigo_licitacion());
      System.out.println("Nombre licitacion"+ormTmp_resultadoprocesos[i].getRp_lc_id_codigo_licitacion().getLc_nombre_adquisicion());
      System.out.println("Valor total" +ormTmp_resultadoprocesos[i].getRp_valortotal());
      System.out.println("Fecha"+ ormTmp_resultadoprocesos[i].getRp_fecha());
    }
  }

}
TOP

Related Classes of loaddata.LoadResultadoLicitacion

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.