Examples of UfisUldSummaryConfig


Examples of com.ufis_as.ek_if.ufis.UfisUldSummaryConfig

    }else if('D' == adid){
      uniqueConxIdFlightList = new ArrayList<>();
      uniqueConxIdFlightList.add(new BigDecimal(0));
    }
    for(BigDecimal conxIdFlight : uniqueConxIdFlightList){
      entuldLOA = new UfisUldSummaryConfig();
      //collect ulds for same flight
      List<EntDbLoadUld> sameFltUlds = new ArrayList<>();
      for(EntDbLoadUld uld : conxUldList){
        if(conxIdFlight.compareTo(uld.getIdConxFlight()) == 0)
          sameFltUlds.add(uld);
View Full Code Here

Examples of com.ufis_as.ek_if.ufis.UfisUldSummaryConfig

    for (int i = 0; i < uldSubTypeList.size(); i++) {
      String configSubType = uldSubTypeList.get(i);
      String configInfoType = uldInfoTypeList.get(i);
     
      List<EntDbLoadUld> sameSubTypeUlds = new ArrayList<>();
      entUld = new UfisUldSummaryConfig();
     
      //collect ulds for the same SUBTYPE of same flight
      for (EntDbLoadUld uld : sameFltUlds) {
        if (uld.getUldSubtype().equalsIgnoreCase(configSubType)) {
          sameSubTypeUlds.add(uld);
View Full Code Here

Examples of com.ufis_as.ek_if.ufis.UfisUldSummaryConfig

        loadUldSum.setCreatedUser(HpEKConstants.LOAD_SUMMARY);
      }else{
        loadUldSum.setUpdatedDate(HpUfisCalendar.getCurrentUTCTime());
        loadUldSum.setUpdatedUser(HpEKConstants.LOAD_SUMMARY);
      }
      UfisUldSummaryConfig uldSumObj = INFO_TYPE.LOA.name().equalsIgnoreCase(infoType) ? entuldLOA : entUld;
       
      loadUldSum.setIdFlight(idFlightDecimal);
      loadUldSum.setIdConxFlight(conxIdFlight);
     
      loadUldSum.setUldWeight(uldSumObj.getUld_weight());
      loadUldSum.setUldPcs(uldSumObj.getUld_pcs());
      loadUldSum.setCargoUldPcs(uldSumObj.getCargo_pcs());
      loadUldSum.setCargoUldWt(uldSumObj.getCargo_weight());
      loadUldSum.setBagUldPcs(uldSumObj.getBag_pcs());
      loadUldSum.setBagUldWt(uldSumObj.getBag_weight());

      loadUldSum.setBulkWeight(uldSumObj.getBulk_weight());
      loadUldSum.setBulkPcs(uldSumObj.getBulk_pcs());
      loadUldSum.setBulkBagUldPcs(uldSumObj.getBulkBag_pcs());
      loadUldSum.setBulkBagUldWt(uldSumObj.getBulkBag_weight());
      loadUldSum.setBulkCargoUldWt(uldSumObj.getBulkCargo_weight());
      loadUldSum.setBulkCargoUldPcs(uldSumObj.getBulkCargo_pcs());
   
      loadUldSum.setPalletUldWt(uldSumObj.getPallet_weight());
      loadUldSum.setPalletUldPcs(uldSumObj.getPallet_pcs());

      loadUldSum.setRecStatus(" ");
      loadUldSum.setInfoType(infoType);
      loadUldSum.setDataSource(HpEKConstants.SYS_SOURCE);
     
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.