Browse Source

//账单

release_toaliyun_real
xhxu 3 years ago
parent
commit
3643156d72
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxBillAllServiceImpl.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxBillAllServiceImpl.java View File

@@ -922,7 +922,7 @@ public class WxBillAllServiceImpl implements WxBillAllService {
List<WxBillAllVo> propertyList = this.list(wxBillAll);
Long propertySum = 0l;
if(!propertyList.isEmpty()){
propertySum = rentList.stream().collect(Collectors.summingLong(b -> status == null && filterHasPay == null ? b.getReceivePay() + b.getLatePayPrice() + b.getServiceChargePay() : b.getOwe()));
propertySum = propertyList.stream().collect(Collectors.summingLong(b -> status == null && filterHasPay == null ? b.getReceivePay() + b.getLatePayPrice() + b.getServiceChargePay() : b.getOwe()));
}
//押金
List<WxBillAllVo> depositList = new ArrayList<>();


Loading…
Cancel
Save