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