update 查询未开发票订单,新增站点id条件

This commit is contained in:
2023-05-18 17:07:02 +08:00
parent 1cd9c7d770
commit d0dc2e64c2
5 changed files with 23 additions and 6 deletions

View File

@@ -1034,7 +1034,7 @@ public class OrderService {
// 查询最近15天完成的订单
LocalDateTime dateTime = LocalDateTime.now().plusDays(-i);
List<OrderVO> orderList = orderBasicInfoService.getListByMemberIdAndOrderStatus(dto.getMemberId(), Lists.newArrayList("6"), dateTime);
List<OrderVO> orderList = orderBasicInfoService.getListByMemberIdAndOrderStatus(dto.getMemberId(), Lists.newArrayList("6"), dateTime, dto.getStationId());
// 过滤掉订单金额为0的
orderList = orderList.stream()