|
|
@@ -2149,7 +2149,11 @@ public class KwtWaybillOrderService {
|
|
|
//车辆运单信息
|
|
|
KwtWaybillOrder waybillOrder = waybillOrderDao.selectById(wOrderId);
|
|
|
if (waybillOrder == null) {
|
|
|
- return HttpResult.error("车辆运单信息不存在!");
|
|
|
+ KwtLogisticsOrderCirculate circulate = logisticsOrderCirculateDao.selectById(wOrderId);
|
|
|
+ if (circulate == null) {
|
|
|
+ return HttpResult.error("车辆运单信息不存在!");
|
|
|
+ }
|
|
|
+ return HttpResult.ok("循环单还未接单,不展示详情!");
|
|
|
}
|
|
|
|
|
|
//装货榜单
|