提交 eefbc508 authored 作者: 李瑞鑫's avatar 李瑞鑫

校验不进行ocr识别

上级 4db9ffab
......@@ -64,7 +64,6 @@ public class PerformanceSdkFeignController {
private final OrderService orderService;
private final PerformanceProgressService performanceProgressService;
@ApiOperation(value = "货主端取消订单", notes = "<br>By:胡宇帆")
......
......@@ -268,8 +268,6 @@ public class OrderChildServiceImpl implements OrderChildService {
@Autowired
private UserClxFeign userClxFeign;
@Autowired
private OrderWeightService orderWeightService;
@Autowired
private OrderChildOperateLimitConfigService orderChildOperateLimitConfigService;
@Autowired
private LoadAppConfig appConfig;
......@@ -279,8 +277,6 @@ public class OrderChildServiceImpl implements OrderChildService {
private ClxMessageOpenapiFeign clxMessageOpenapiFeign;
@Autowired
private ClxMessageConfig messageConfig;
@Autowired
private OrderChildWeighPictureDao pictureDao;
......@@ -3760,21 +3756,4 @@ public class OrderChildServiceImpl implements OrderChildService {
}
}
@Override
public NeedAlertSuperviseInfoResultVO needAlertSuperviseInfo(NeedAlertSuperviseInfoParam param) {
//查询运单信息
OrderChild orderChild = orderChildDao.getByChildNo(param.getChildNo()).orElseThrow(DATA_NOT_FIND);
SuperviseInfo superviseInfo = getSuperviseInfoWithSubStatus(orderChild.getOrderNo(), orderChild.getChildNo(), orderChild.getTruckNo());
//返回对象
NeedAlertSuperviseInfoResultVO result = new NeedAlertSuperviseInfoResultVO();
if (superviseInfo != null) {
result.setNeedAlert(OrderChildEnum.NeedAlertEnum.FAIL.getCode());
result.setLocation(superviseInfo.getTaskAddress());
result.setMobile(superviseInfo.getSuperviseMobile());
result.setSupervisor(superviseInfo.getSuperviseContacts());
return result;
}
result.setNeedAlert(OrderChildEnum.NeedAlertEnum.OK.getCode());
return result;
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论