Commit b49c4990 by huluobin

自取订单 根据店铺过滤

parent a528a06f
......@@ -407,6 +407,8 @@ public class MallOrderServiceImpl extends ServiceImpl<MallOrderMapper, MallOrder
wrapper.in(MallOrder::getStatus, MallOrder.STATUS_UN_SHIP, MallOrder.STATUS_SIGNED);
wrapper.eq(MallOrder::getTransportMode, MallOrder.TRANSPORT_MODE_SELF_TAKE);
wrapper.eq(MallOrder::getSelfTakeDepartmentId, SessionUtils.getTechnicianToken().getDepartmentId());
List<StoreManage> storeManageList = storeManageMapper.selectList(new LambdaQueryWrapper<StoreManage>()
.eq(StoreManage::getMasterUserId, SessionUtils.getTechnicianId()));
if (ListUtil.isNotEmpty(storeManageList)) {
......
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