| | |
| | | continue; |
| | | } |
| | | String firstOutKey = entry.getValue().get(0).getOutKey(); |
| | | if(StringUtils.isBlank(firstOutKey)) { |
| | | continue; |
| | | } |
| | | if(reqDTO.getModelResult().get(firstOutKey) == null || StringUtils.isBlank(reqDTO.getModelResult().get(firstOutKey).toString())) { |
| | | continue; |
| | | } |
| | | BigDecimal firstAdjustValue = new BigDecimal(reqDTO.getModelResult().get(firstOutKey.trim()).toString().trim()); |
| | | if (BigDecimal.ZERO.compareTo(firstAdjustValue) == 0) { |
| | | log.info("adjustValue = ZERO"); |
| | | log.info("firstAdjustValue = ZERO"); |
| | | continue; |
| | | } |
| | | for (StAdjustConfigDetEntity det : entry.getValue()) { |
| | |
| | | switch (PredictItemTypeEnum.getEumById(det.getItemTypeId())) { |
| | | case NormalItem: |
| | | double adjustValue = 0; |
| | | if (StringUtils.isNotBlank(det.getOutKey().trim())) { |
| | | adjustValue = new BigDecimal(reqDTO.getModelResult().get(det.getOutKey().trim()).toString()).doubleValue(); |
| | | if (StringUtils.isNotBlank(det.getOutKey())) { |
| | | adjustValue = new BigDecimal(reqDTO.getModelResult().get(det.getOutKey()).toString()).doubleValue(); |
| | | } |
| | | StAdjustDeviationDTO deviationItem = new StAdjustDeviationDTO(); |
| | | deviationItem.setPortIdx(det.getModelParamPortOrder() == null ? 0 : det.getModelParamPortOrder()); |