| | |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.Attributes; |
| | | using WIDESEA_Core.BaseController; |
| | | using WIDESEA_DTO.Basic; |
| | | using WIDESEA_DTO.Stock; |
| | | using WIDESEA_DTO.Task; |
| | | using WIDESEA_ITaskInfoService; |
| | |
| | | return await Service.TakeOutbound(stockViews, outStation); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("HandCompleteTask"), AllowAnonymous] |
| | | public async Task<WebResponseContent> HandCompleteTask(string TaskNum) |
| | | { |
| | | return await Service.HandCompleteTask(TaskNum); |
| | | } |
| | | |
| | | [HttpPost, Route("TaskCancel"), AllowAnonymous] |
| | | public async Task<WebResponseContent> TaskCancel(List<int> taskCancel) |
| | | { |
| | | return await Service.TaskCancel(taskCancel); |
| | | } |
| | | } |
| | | } |