| | |
| | | 锘縰sing Autofac.Core; |
| | | using Microsoft.AspNetCore.Authorization; |
| | | using Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_Core; |
| | |
| | | { |
| | | return await Service.CancelPicking(dto.OrderNo,dto.PalletCode,dto.Barcode); |
| | | } |
| | | |
| | | [HttpPost,HttpGet, Route("GetAvailablePurchaseOrders"),AllowAnonymous] |
| | | public WebResponseContent GetAvailablePurchaseOrders() |
| | | { |
| | | return Service.GetAvailablePurchaseOrders(); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("GetAvailablePickingOrders"),AllowAnonymous] |
| | | public WebResponseContent GetAvailablePickingOrders() |
| | | { |
| | | return Service.GetAvailablePickingOrders(); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("BarcodeValidate"), AllowAnonymous] |
| | | public WebResponseContent BarcodeValidate([FromBody] NoStockOutModel noStockOut) |
| | | { |
| | | return Service.BarcodeValidate(noStockOut); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("DeleteBarcode"), AllowAnonymous] |
| | | public WebResponseContent DeleteBarcode([FromBody] NoStockOutModel noStockOut) |
| | | { |
| | | return Service.DeleteBarcode(noStockOut); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("NoStockOutSubmit"), AllowAnonymous] |
| | | public WebResponseContent NoStockOutSubmit([FromBody] NoStockOutSubmit noStockOutSubmit) |
| | | { |
| | | return Service.NoStockOutSubmit(noStockOutSubmit); |
| | | } |
| | | } |
| | | } |