| | |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("GetAvailablePickingOrders"),AllowAnonymous] |
| | | public WebResponseContent GetAvailablePickingOrders() |
| | | public WebResponseContent GetAvailablePickingOrders(string outOrder) |
| | | { |
| | | return Service.GetAvailablePickingOrders(); |
| | | return Service.GetAvailablePickingOrders(outOrder); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("BarcodeValidate"), AllowAnonymous] |
| | |
| | | { |
| | | return await Service.NoStockOutSubmit(noStockOutSubmit); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("GetPurchaseOrderByBarcode"), AllowAnonymous] |
| | | public WebResponseContent GetPurchaseOrderByBarcode(string barcode) |
| | | { |
| | | return Service.GetPurchaseOrderByBarcode(barcode); |
| | | } |
| | | } |
| | | } |