| | |
| | | } |
| | | |
| | | [HttpPost, Route("GenerateOutboundTask"), AllowAnonymous] |
| | | public WebResponseContent GenerateOutboundTask(int id, [FromBody] List<StockSelectViewDTO> stockSelectViews) |
| | | public WebResponseContent GenerateOutboundTask(int orderDetailId, [FromBody] List<StockSelectViewDTO> stockSelectViews) |
| | | { |
| | | return Service.GenerateOutboundTask(id, stockSelectViews); |
| | | return Service.GenerateOutboundTask(orderDetailId, stockSelectViews); |
| | | } |
| | | |
| | | [HttpPost, Route("WMSGenerateOutboundTask"), AllowAnonymous] |
| | | public WebResponseContent WMSGenerateOutboundTask([FromBody] int[] keys) |
| | | { |
| | | return Service.WMSGenerateOutboundTask(keys); |
| | | } |
| | | /// <summary> |
| | | /// WCS申请入库任务 |
| | |
| | | /// <param name="palletCode"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("DeviceRequestInboundTaskSimple"), AllowAnonymous] |
| | | public WebResponseContent DeviceRequestInboundTaskSimple(string stationCode, string palletCode) |
| | | public WebResponseContent DeviceRequestInboundTaskSimple(string stationCode, string palletCode, int heightType) |
| | | { |
| | | return Service.DeviceRequestInboundTaskSimple(stationCode, palletCode); |
| | | return Service.DeviceRequestInboundTaskSimple(stationCode, palletCode, heightType); |
| | | } |
| | | /// <summary> |
| | | /// 判断巷道内移库 |