Commit 84281c5c by 吕明尚

修改数据统计

parent 864ac06c
...@@ -130,6 +130,10 @@ public class OrderVo { ...@@ -130,6 +130,10 @@ public class OrderVo {
private BigDecimal balance; private BigDecimal balance;
private BigDecimal rechargeAmount;
private BigDecimal giftAmount;
private BigDecimal discountRatio; private BigDecimal discountRatio;
......
...@@ -3456,8 +3456,8 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme ...@@ -3456,8 +3456,8 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
statisticsResponse.setStoreFee(statisticsResponse.getGroupFee().add(statisticsResponse.getPlatformFee()).add(statisticsResponse.getRechargeBalance())); statisticsResponse.setStoreFee(statisticsResponse.getGroupFee().add(statisticsResponse.getPlatformFee()).add(statisticsResponse.getRechargeBalance()));
//团购退款+平台退款+充值金额退款 //团购退款+平台退款+充值金额退款
statisticsResponse.setStoreRefundFee(statisticsResponse.getGroupRefundFee().add(statisticsResponse.getPlatformRefundFee()).add(statisticsResponse.getRechargeBalanceRefundFee())); statisticsResponse.setStoreRefundFee(statisticsResponse.getGroupRefundFee().add(statisticsResponse.getPlatformRefundFee()).add(statisticsResponse.getRechargeBalanceRefundFee()));
//团购金额+平台支付 //团购金额+平台支付+充值金额
statisticsResponse.setTotalFee(statisticsResponse.getGroupFee().add(statisticsResponse.getPlatformFee())); statisticsResponse.setTotalFee(statisticsResponse.getGroupFee().add(statisticsResponse.getPlatformFee()).add(statisticsResponse.getRechargeBalance()));
//门店交易-门店交易退款 //门店交易-门店交易退款
statisticsResponse.setActualFee(statisticsResponse.getStoreFee().subtract(statisticsResponse.getStoreRefundFee())); statisticsResponse.setActualFee(statisticsResponse.getStoreFee().subtract(statisticsResponse.getStoreRefundFee()));
//计算开始时间和结束时间相差多少天 //计算开始时间和结束时间相差多少天
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment