| | |
| | | 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; |
| | |
| | | } |
| | | |
| | | [HttpPost, Route("PalletOutboundTask"), AllowAnonymous, MethodParamsValidate] |
| | | public async Task<WebResponseContent> PalletOutboundTask(int num) |
| | | public async Task<WebResponseContent> PalletOutboundTask(int num, int locationType) |
| | | { |
| | | return await Service.PalletOutboundTask(num); |
| | | return await Service.PalletOutboundTask(num, locationType); |
| | | } |
| | | |
| | | |
| | |
| | | return await Service.GenerateOutboundBatchTasksAsync(data.orderDetailId,data.batchQuantity, data.outboundPlatform); |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 鐩樼偣搴撳瓨鍑哄簱 |
| | | /// </summary> |
| | | /// <param name="stockViews"></param> |
| | | /// <param name="outStation"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("TakeOutbound"), AllowAnonymous] |
| | | public async Task<WebResponseContent> TakeOutbound([FromBody] List<StockViewDTO> stockViews, string outStation) |
| | | { |
| | | 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); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 鐩樼偣搴撳瓨鍑哄簱 |
| | | /// </summary> |
| | | /// <param name="stockViews"></param> |
| | | /// <param name="outStation"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("AreaOutbound"), AllowAnonymous] |
| | | public async Task<WebResponseContent> AreaOutbound([FromBody] List<StockViewDTO> stockViews) |
| | | { |
| | | return await Service.AreaOutbound(stockViews); |
| | | } |
| | | |
| | | |
| | | [HttpPost, HttpGet, Route("CrossAreaOutbound"), AllowAnonymous] |
| | | public async Task<WebResponseContent> CrossAreaOutbound([FromBody] List<StockViewDTO> stockViews,int targetLocationType) |
| | | { |
| | | return await Service.CrossAreaOutbound(stockViews,targetLocationType); |
| | | } |
| | | } |
| | | } |