mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-11 01:28:01 +08:00
update
This commit is contained in:
@@ -244,7 +244,7 @@ public class OrderController extends BaseController {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询未开发票订单
|
* 查询未开发票订单
|
||||||
* 时间限制60天内
|
* 时间限制15天内
|
||||||
* http://localhost:8080/uniapp/order/queryUninvoicedOrderList
|
* http://localhost:8080/uniapp/order/queryUninvoicedOrderList
|
||||||
*/
|
*/
|
||||||
@PostMapping("/queryUninvoicedOrderList")
|
@PostMapping("/queryUninvoicedOrderList")
|
||||||
|
|||||||
@@ -1050,9 +1050,9 @@ public class OrderService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public List<OrderVO> queryUninvoicedOrderList(QueryOrderDTO dto) {
|
public List<OrderVO> queryUninvoicedOrderList(QueryOrderDTO dto) {
|
||||||
int i = 60;
|
int i = 15;
|
||||||
|
|
||||||
// 查询最近60天完成的订单
|
// 查询最近15天完成的订单
|
||||||
LocalDateTime dateTime = LocalDateTime.now().plusDays(-i);
|
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);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user