|
|
|
@ -715,7 +715,7 @@ public class CommonInterfaceServiceImpl implements CommonInterfaceService { |
|
|
|
|
long end = System.currentTimeMillis(); |
|
|
|
|
log.debug("{}订单明细信息补全耗时:{}", LOGGER_MSG, end - start); |
|
|
|
|
if(cpyList.size() == orderItemInfo.size()){ |
|
|
|
|
boolean allMatch = cpyList.stream().allMatch(cpy -> cpy.equals("Y")); |
|
|
|
|
boolean allMatch = cpyList.stream().allMatch(cpy -> StringUtils.isNotBlank(cpy) && "Y".equals(cpy)); |
|
|
|
|
if(allMatch){ |
|
|
|
|
hashMap.put("cpy",OrderInfoEnum.QDBZ_CODE_4.getKey()); |
|
|
|
|
} |
|
|
|
|