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