| | |
| | | if (!StringUtil.isNullOrEmpty(filter.getKey())) { |
| | | query.nickName = filter.getKey().trim(); |
| | | } |
| | | query.ignore = false; |
| | | query.start = (filter.getPage() - 1) * 20L; |
| | | query.count = 20; |
| | | |
| | |
| | | List<KeyOrder> list = keyOrderService.listWithUser(query); |
| | | long count = keyOrderService.countWithUser(query); |
| | | query.hasPayTime = true; |
| | | query.state = KeyOrder.STATE_PAY; |
| | | // 统计所有的 |
| | | ChannelOrderStatistic statistic = keyOrderService.statisticWithUser(query); |
| | | // 统计 |
| | | |
| | | List<AgentOrderVO> voList = new ArrayList<>(); |
| | | Map<OrderChannelEnum, BigDecimal> shareMoneyMap = channelAgentSharingRatioService.getShareMoneyMap(agent.getId()); |