|
@@ -57,7 +57,6 @@ public class StudentPaymentRouteOrderServiceImpl extends BaseServiceImpl<Long, S
|
|
|
dataList = studentPaymentRouteOrderDao.queryPageOrder(params);
|
|
|
|
|
|
StudentPaymentRouteOrderDto orderMoneyAmount = studentPaymentRouteOrderDao.getOrderMoneyAmount(params);
|
|
|
- BigDecimal totalExpectAmount = orderMoneyAmount.getExpectAmount() != null ? orderMoneyAmount.getExpectAmount() : BigDecimal.ZERO;
|
|
|
BigDecimal totalActualAmount = orderMoneyAmount.getActualAmount() != null ? orderMoneyAmount.getActualAmount() : BigDecimal.ZERO;
|
|
|
BigDecimal totalBalancePaymentAmount = orderMoneyAmount.getBalancePaymentAmount() != null ? orderMoneyAmount.getBalancePaymentAmount() : BigDecimal.ZERO;
|
|
|
|
|
@@ -67,7 +66,6 @@ public class StudentPaymentRouteOrderServiceImpl extends BaseServiceImpl<Long, S
|
|
|
BigDecimal totalAdvanceAmount = totalChargeAmount.subtract(totalBalancePaymentAmount);
|
|
|
|
|
|
pageInfo.setTotalAdvanceAmount(totalAdvanceAmount);
|
|
|
- pageInfo.setTotalExpectAmount(totalExpectAmount);
|
|
|
pageInfo.setTotalActualAmount(totalActualAmount);
|
|
|
pageInfo.setTotalRevenueAmount(totalActualAmount.subtract(totalAdvanceAmount));
|
|
|
}
|