Commit 2332a65d by 蒋小洋

野翠山发票订单列表查询新接口

parent 5a605fb0
...@@ -1212,7 +1212,7 @@ public class OrderServiceImpl implements Orderservice { ...@@ -1212,7 +1212,7 @@ public class OrderServiceImpl implements Orderservice {
BeanUtil.convertBean(queryOrdersDto, queryOrdersRequest2); BeanUtil.convertBean(queryOrdersDto, queryOrdersRequest2);
queryOrdersRequest2.setTrackingNo(LogThreadLocal.getTrackingNo()); queryOrdersRequest2.setTrackingNo(LogThreadLocal.getTrackingNo());
Integer invoiceState = 1; Integer invoiceState = 1;
if(Objects.equals(queryOrderVo.getNeedInvoice(),false)){ if(Objects.equals(queryOrderVo.getNeedInvoice(),false) && !Objects.equals(QueryOrderStatus.REFUND_BILL.getCode(),queryOrderVo.getQueryOrderStatus())){
//查询可开票,支付状态为已支付 //查询可开票,支付状态为已支付
invoiceState = 1; invoiceState = 1;
queryOrdersRequest2.setPayStatus(new Integer[]{2}); queryOrdersRequest2.setPayStatus(new Integer[]{2});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment