...
|
...
|
@@ -645,7 +645,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
req.setOrderCode(queryStr);
|
|
|
req.setDepotNo(depotNo);
|
|
|
req.setStatus(status);
|
|
|
req.setSize(100);
|
|
|
req.setSize(1000);
|
|
|
req.setSortRule(sortRule);
|
|
|
List<BuyerOrder> orderList = buyerOrderMapper.selectByCondition(req);
|
|
|
if(CollectionUtils.isEmpty(orderList)){//再按卖家运单号来查
|
...
|
...
|
@@ -653,7 +653,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
req.setSellerWaybillCode(queryStr);
|
|
|
req.setDepotNo(depotNo);
|
|
|
req.setStatus(status);
|
|
|
req.setSize(100);
|
|
|
req.setSize(1000);
|
|
|
req.setSortRule(sortRule);
|
|
|
List<BuyerOrder> list = buyerOrderMapper.selectByCondition(req);
|
|
|
if(CollectionUtils.isEmpty(list)){
|
...
|
...
|
@@ -672,7 +672,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
req.setOrderCode(queryStr);
|
|
|
req.setAttributes(attributes);
|
|
|
req.setStatus(status);
|
|
|
req.setSize(100);
|
|
|
req.setSize(1000);
|
|
|
req.setSortRule(sortRule);
|
|
|
List<AppraiseOrder> orderList = appraiseOrderMapper.selectByCondition(req);
|
|
|
if(CollectionUtils.isEmpty(orderList)){//再按卖家运单号来查
|
...
|
...
|
@@ -680,7 +680,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
req.setSellerWaybillCode(queryStr);
|
|
|
req.setAttributes(attributes);
|
|
|
req.setStatus(status);
|
|
|
req.setSize(100);
|
|
|
req.setSize(1000);
|
|
|
req.setSortRule(sortRule);
|
|
|
orderList = appraiseOrderMapper.selectByCondition(req);
|
|
|
if(CollectionUtils.isEmpty(orderList)){
|
...
|
...
|
@@ -854,7 +854,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
if(null == order){//再按卖家运单号来查
|
|
|
BuyerOrderReq req = new BuyerOrderReq();
|
|
|
req.setSellerWaybillCode(queryStr);
|
|
|
req.setSize(100);
|
|
|
req.setSize(1000);
|
|
|
List<BuyerOrder> list = buyerOrderMapper.selectByCondition(req);
|
|
|
if(CollectionUtils.isEmpty(list)){
|
|
|
return null;
|
...
|
...
|
@@ -1234,7 +1234,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
req.setDepotNo(depotNo);
|
|
|
req.setStatusList(checkStatusList);
|
|
|
req.setPlatformExpressInfoFlag(platformExpressInfoFlag);
|
|
|
req.setSize(100);
|
|
|
req.setSize(1000);
|
|
|
req.setSortRule(sortRule);
|
|
|
List<BuyerOrder> orderList = buyerOrderMapper.selectByCondition(req);
|
|
|
if(CollectionUtils.isEmpty(orderList)){//再按卖家运单号来查
|
...
|
...
|
@@ -1244,7 +1244,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
req.setDepotNo(depotNo);
|
|
|
req.setStatusList(checkStatusList);
|
|
|
req.setPlatformExpressInfoFlag(platformExpressInfoFlag);
|
|
|
req.setSize(100);
|
|
|
req.setSize(1000);
|
|
|
req.setSortRule(sortRule);
|
|
|
List<BuyerOrder> list = buyerOrderMapper.selectByCondition(req);
|
|
|
if(CollectionUtils.isNotEmpty(list)){
|
...
|
...
|
|