| | |
| | | } |
| | | |
| | | [HttpPost, Route("GenerateOutboundTask")] |
| | | public WebResponseContent GenerateOutboundTask(int id, List<StockSelectViewDTO> stockSelectViews) |
| | | public WebResponseContent GenerateOutboundTask(int id, [FromBody] List<StockSelectViewDTO> stockSelectViews) |
| | | { |
| | | return Service.GenerateOutboundTask(id, stockSelectViews); |
| | | } |
| | | |
| | | [HttpPost, Route("NewGenerateOutboundTask")] |
| | | public WebResponseContent NewGenerateOutboundTask(int id, [FromBody] List<Dt_Inventory_Batch> inventory_Batches) |
| | | { |
| | | return Service.NewGenerateOutboundTask(id, inventory_Batches); |
| | | } |
| | | |
| | | [HttpPost, Route("GenerateOutboundTasks")] |
| | | public WebResponseContent GenerateOutboundTasks([FromBody] int[] keys) |
| | | { |