| | |
| | | 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; |
| | |
| | | } |
| | | |
| | | /// <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> |
| | |
| | | { |
| | | 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); |
| | | } |
| | | } |
| | | } |