|
|
|
@ -2027,7 +2027,7 @@ public class OrderInfoServiceImpl implements OrderInfoService { |
|
|
|
|
} |
|
|
|
|
List<OrderItemInfo> collect = null; |
|
|
|
|
if(itemList != null){ |
|
|
|
|
collect = orderItemInfos.stream().filter(t -> itemList.contains(t.getId()) && StringUtils.isBlank(t.getSpbm())).collect(Collectors.toList()); |
|
|
|
|
collect = orderItemInfos.stream().filter(t -> itemList.contains(t.getId()) && StringUtils.isNotBlank(t.getSpbm())).collect(Collectors.toList()); |
|
|
|
|
if(ObjectUtil.isNull(collect)){ |
|
|
|
|
return R.error("税收编码为空的不允许合并,请先更新税收编码"); |
|
|
|
|
} |
|
|
|
|