|
|
@@ -1713,7 +1713,7 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
|
|
|
*/
|
|
|
@Override
|
|
|
public IPage<OrderStatisticsVo> salesmanProfit(IPage<OrderStatisticsVo> page, OrderStatisticsVo statisticsVo) {
|
|
|
- return page.setRecords(baseMapper.salesmanProfit(page, statisticsVo, statisticsVo.getBrand()));
|
|
|
+ return page.setRecords(baseMapper.salesmanProfit(page, statisticsVo, statisticsVo.getBrand(), statisticsVo.getChargeMember()));
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
@@ -1721,7 +1721,7 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
|
|
|
*/
|
|
|
@Override
|
|
|
public List<SalesmanProfitExcel> salesmanProfitExport(OrderStatisticsVo statisticsVo) {
|
|
|
- return baseMapper.salesmanProfitExport(statisticsVo, statisticsVo.getBrand());
|
|
|
+ return baseMapper.salesmanProfitExport(statisticsVo, statisticsVo.getBrand(), statisticsVo.getChargeMember());
|
|
|
}
|
|
|
|
|
|
/**
|