debug:店铺统计
This commit is contained in:
parent
2d4f601816
commit
dee188dc7e
|
@ -99,7 +99,7 @@ public class StoreAssemblerImpl implements StoreAssembler {
|
|||
LocalDate now = LocalDate.now();
|
||||
query.setGroupBy(TransactionBillGroupBy.store_id.name());
|
||||
query.setStoreIds(list.stream().map(StoreVo::getStoreId).filter(Objects::nonNull).distinct().collect(Collectors.toList()));
|
||||
query.setStatus(TransactionBillStatus.SUCCESS.getStatus());
|
||||
query.setStatusList(TransactionBillStatus.payedOrder());
|
||||
query.setType(TransactionBillType.RECHARGE.getType());
|
||||
query.setMonth(now.getMonthValue());
|
||||
query.setYear(now.getYear());
|
||||
|
@ -129,7 +129,7 @@ public class StoreAssemblerImpl implements StoreAssembler {
|
|||
TransactionBillQuery query = new TransactionBillQuery();
|
||||
query.setGroupBy(TransactionBillGroupBy.store_id.name());
|
||||
query.setStoreIds(list.stream().map(StoreVo::getStoreId).filter(Objects::nonNull).distinct().collect(Collectors.toList()));
|
||||
query.setStatus(TransactionBillStatus.SUCCESS.getStatus());
|
||||
query.setStatusList(TransactionBillStatus.payedOrder());
|
||||
query.setType(TransactionBillType.RECHARGE.getType());
|
||||
query.setCreateDate(DateUtils.getNowDate());
|
||||
Map<Long, BillCountVo> map = transactionBillService.selectCountMap(query, BillCountVo::getStoreId);
|
||||
|
@ -158,7 +158,7 @@ public class StoreAssemblerImpl implements StoreAssembler {
|
|||
LocalDate lastMonth = LocalDate.now().plusMonths(-1);
|
||||
query.setGroupBy(TransactionBillGroupBy.store_id.name());
|
||||
query.setStoreIds(list.stream().map(StoreVo::getStoreId).filter(Objects::nonNull).distinct().collect(Collectors.toList()));
|
||||
query.setStatus(TransactionBillStatus.SUCCESS.getStatus());
|
||||
query.setStatusList(TransactionBillStatus.payedOrder());
|
||||
query.setType(TransactionBillType.RECHARGE.getType());
|
||||
query.setMonth(lastMonth.getMonthValue());
|
||||
query.setYear(lastMonth.getYear());
|
||||
|
|
Loading…
Reference in New Issue
Block a user