任务完成异常不影响ndc

This commit is contained in:
psh
2024-01-15 16:46:02 +08:00
parent 0ae5d32353
commit 1fed577920

View File

@@ -166,7 +166,11 @@ public class OneNDCSocketConnectionAutoRun extends AbstractAutoRunnable {
//无车id及状态
else if (phase == 0x0A) {
if (!ObjectUtil.isEmpty(inst)) {
instructionService.finish(inst.getInstruction_id());
try {
instructionService.finish(inst.getInstruction_id());
}catch (Exception e){
log.error("指令完成出现异常{}{}",e,e.getMessage());
}
} else {
log.warn("指令号:{},未反馈wms任务完成因为agv上报指令号查询指令为空!",inst.getInstruction_code());
}