Wms/Wms/Controllers/DownApiController.cs
@@ -839,6 +839,7 @@ /// </summary> /// <param name="model">入库口信息</param> /// <returns></returns> [HttpPost] public IActionResult AgcontinueTask(PutModel model) { try @@ -852,13 +853,13 @@ _pdaCrServer.AgvContinue(model.TaskNo,_config.AgvHost+_config.ContinueTask); return Ok(new OutCommanAgvDto { Code = "0", Message = "成功"}); return Ok(new HttpReturnModel { Success = "0", Message = "成功"}); } catch (Exception) catch (Exception ex) { throw; return Ok(new HttpReturnModel { Success = "1", Message = ex.ToString() }); throw ex; } }