forked from angelo/java-retail-app
## 自助撤单能看到分公司报的进提货的订单(358);
This commit is contained in:
parent
7d4e5ba0a9
commit
960a5a753b
|
@ -61,8 +61,6 @@ public class ApiOrderController extends BaseController {
|
|||
private ISaDeliverService iSaDeliverService;
|
||||
@Autowired
|
||||
private IOrderBusinessService iOrderBusinessService;
|
||||
@Autowired
|
||||
private ISaDeliverItemsService saDeliverItemsService;
|
||||
|
||||
@DubboReference
|
||||
ICurrencyServiceApi iCurrencyServiceApi;
|
||||
|
@ -537,8 +535,6 @@ public class ApiOrderController extends BaseController {
|
|||
if (null != param.getCreationTimeEnd()) {
|
||||
param.setCreationTimeEnd(DateUtils.getEndTime(param.getCreationTimeEnd()));
|
||||
}
|
||||
// 会员ID
|
||||
Long userId = SecurityUtils.getUserId();
|
||||
// 返回的订单数据
|
||||
List<MyOrderVO> myOrderList = new ArrayList<>();
|
||||
|
||||
|
|
|
@ -529,7 +529,7 @@
|
|||
<choose>
|
||||
<when test="param.orderStatus == 1">
|
||||
<!-- 前台如果查询待发货,需要包括已合单 -->
|
||||
and soi.order_status in (1, 2)
|
||||
and soi.order_status in (1, 2, 6)
|
||||
</when>
|
||||
<otherwise>
|
||||
and soi.order_status = #{param.orderStatus}
|
||||
|
|
Loading…
Reference in New Issue