|
|
@@ -1013,6 +1013,10 @@ public class StatisticsDataServiceImpl implements StatisticsDataService {
|
|
|
|
|
|
private BackgroundDataView getHeaderData(Date startDate, Date endDate) {
|
|
|
BackgroundDataView backgroundDataView = orderDonMapper.getBackgroundDataView(startDate, endDate, Constant.noOrderStatus);
|
|
|
+ if (startDate != null || endDate != null) {
|
|
|
+ BigDecimal totalRefundMoney = orderDonMapper.getTotalRefundAmountTime(startDate, endDate);
|
|
|
+ backgroundDataView.setTotalRefundAmount(totalRefundMoney);
|
|
|
+ }
|
|
|
//近5天将要到期的主账号总数
|
|
|
DateTime now = DateTime.now();
|
|
|
DateTime zero = DateUtil.beginOfDay(now);
|