Examples of DestinationVO


Examples of org.jallinone.sales.destinations.java.DestinationVO

   * @param rowNumbers row indexes related to the new rows to save
   * @param newValueObjects list of new value objects to save
   * @return an ErrorResponse value object in case of errors, VOListResponse if the operation is successfully completed
   */
  public Response insertRecords(int[] rowNumbers, ArrayList newValueObjects) throws Exception {
    DestinationVO vo = null;
    Subject customerVO = (Subject)frame.getCurrentForm().getVOModel().getValueObject();

    for(int i=0;i<newValueObjects.size();i++) {
      vo = (DestinationVO) newValueObjects.get(i);
      vo.setCompanyCodeSys01REG18(customerVO.getCompanyCodeSys01REG04());
      vo.setProgressiveReg04REG18(customerVO.getProgressiveREG04());
    }

    return ClientUtils.getData("insertDestinations",newValueObjects);
  }
View Full Code Here
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.