| | |
| | | // 统计总数
|
| | | count = commonOrderService.countGroupOrderNoByUid(uid, state, type, orderState, orderNo,
|
| | | startTime, endTime, dateType);
|
| | | |
| | | // 需要统计信息
|
| | | if (needCount && page == 1) {
|
| | | Map<String, Object> countMap = commonOrderService.countMoneyGroupOrderNoByUid(uid, type,
|
| | | orderNo, startTime, endTime, dateType);
|
| | | if (countMap != null) {
|
| | | BigDecimal totalMoney = (BigDecimal) countMap.get("totalMoney");
|
| | | if (totalMoney != null) {
|
| | | todayMoney = totalMoney;// 当前查询所有订单已到账总金额
|
| | | }
|
| | | |
| | | //当前查询所有已到账订单数量
|
| | | todayTotal = (long) countMap.get("totalRow");
|
| | | }
|
| | | |
| | | // 需要统计筛选信息 :未失效的总金额 以及订单
|
| | | if (needCount && page == 1) {
|
| | | Map<String, Object> countMap = commonOrderService.countMoneyGroupOrderNoByUid(uid, type,
|
| | | orderNo, startTime, endTime, dateType);
|
| | | if (countMap != null) {
|
| | | BigDecimal totalMoney = (BigDecimal) countMap.get("totalMoney");
|
| | | if (totalMoney != null) {
|
| | | todayMoney = totalMoney;// 当前查询所有订单已到账总金额
|
| | | }
|
| | | |
| | | //当前查询所有已到账订单数量
|
| | | todayTotal = (long) countMap.get("totalRow");
|
| | | }
|
| | | }
|
| | |
|
| | | |
| | | int totalValid = 0;
|
| | | int totalProces = 0;
|
| | | int totalInvite = 0;
|