wangxinhui
14 小时以前 b489f865bab00bedfce5e8f772095600b8034ac0
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
@@ -4,6 +4,7 @@
using WIDESEA_Common.CommonEnum;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_DTO.Basic;
using WIDESEA_DTO.Stock;
using WIDESEA_DTO.Task;
using WIDESEA_ITaskInfoService;
@@ -270,6 +271,16 @@
        }
        /// <summary>
        /// æ‰‹åŠ¨ç§»åº“
        /// </summary>
        /// <returns></returns>
        [HttpPost, HttpGet, Route("ManualRelocation"), AllowAnonymous]
        public WebResponseContent ManualRelocation([FromBody] RelocationDTO relocationDTO)
        {
            return Service.ManualRelocation(relocationDTO);
        }
        /// <summary>
        /// ä»»åŠ¡å®Œæˆ
        /// </summary>
        /// <param name="taskNum">任务号</param>
@@ -408,5 +419,15 @@
        {
            return Service.TakeOutbound(stockViews);
        }
        /// <summary>
        /// ä»»åŠ¡å–æ¶ˆ
        /// </summary>
        /// <param name="taskNum">任务号</param>
        /// <returns></returns>
        [HttpPost, HttpGet, Route("TaskHandCancel"), AllowAnonymous]
        public async Task<WebResponseContent> TaskHandCancel(int taskNum)
        {
            return await Service.TaskHandCancel(taskNum);
        }
    }
}