dengjunjie
5 天以前 7ca9651f81d7b84f054194d3d46fdbd1d9c8b922
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Interface/WCSInterfaceController.cs
@@ -27,7 +27,7 @@
        [HttpPost, Route("GetPosition")]
        public WebResponseContent GetPosition(string position, string position1)
        {
            return _locationInfoService.GetPosition(position,position1);
            return _locationInfoService.GetPosition(position, position1);
        }
        /// <summary>
        /// ä¿®æ”¹ä»»åŠ¡çŠ¶æ€
@@ -57,8 +57,17 @@
        [HttpPost, Route("StackerCraneRequestInbound")]
        public WebResponseContent StackerCraneRequestInbound([FromBody] ConveyorLineDTO lineDTO)
        {
            return _taskService.StackerCraneRequestInbound(lineDTO);
            return _taskService.NewStackerCraneRequestInbound(lineDTO);
        }
        ///AGV申请出库地址
        /// <summary>
        /// AGV取消任务
        /// </summary>
        /// <param name="task"></param>
        /// <returns></returns>
        [HttpPost, Route("CancelTask")]
        public WebResponseContent CancelTask([FromBody] WMSTaskDTO task)
        {
            return _taskService.CancelTask(task);
        }
    }
}