|
|
|
@ -137,7 +137,7 @@ public class StatisticsServiceImpl implements IStatisticsService {
|
|
|
|
|
BusinessLineStatisticsBo bo = new BusinessLineStatisticsBo(); |
|
|
|
|
bo.setBusinessId(id); |
|
|
|
|
BusinessLineStatisticVo vo = productOrderPriceMapper.businessLineStatistics(bo); |
|
|
|
|
return vo.getTotalPrice(); |
|
|
|
|
return vo.getSettlementCurrentPrice(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -145,7 +145,7 @@ public class StatisticsServiceImpl implements IStatisticsService {
|
|
|
|
|
BusinessLineStatisticsBo bo = new BusinessLineStatisticsBo(); |
|
|
|
|
bo.setBusinessId(id); |
|
|
|
|
BusinessLineStatisticVo vo = productOrderPriceMapper.businessLineStatisticsRefund(bo); |
|
|
|
|
return vo.getRefundPrice(); |
|
|
|
|
return vo.getSettlementRefundPrice(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -155,7 +155,7 @@ public class StatisticsServiceImpl implements IStatisticsService {
|
|
|
|
|
bo.setCreateTime(date); |
|
|
|
|
bo.setDateFormat("%Y-%m-%d"); |
|
|
|
|
BusinessLineStatisticVo vo = productOrderPriceMapper.businessLineStatistics(bo); |
|
|
|
|
return vo.getTotalPrice(); |
|
|
|
|
return vo.getSettlementCurrentPrice(); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -166,7 +166,7 @@ public class StatisticsServiceImpl implements IStatisticsService {
|
|
|
|
|
bo.setCreateTime(date); |
|
|
|
|
bo.setDateFormat("%Y-%m-%d"); |
|
|
|
|
BusinessLineStatisticVo vo = productOrderPriceMapper.businessLineStatisticsRefund(bo); |
|
|
|
|
return vo.getRefundPrice(); |
|
|
|
|
return vo.getSettlementRefundPrice(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|