| | |
| | | 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()) { |