| | |
| | | { |
| | | return Service.DeviceRequestInboundTaskSimple(stationCode, palletCode, heightType); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 申请巷道 |
| | | /// </summary> |
| | | /// <param name="palletCode"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("ApplyLocation"), AllowAnonymous] |
| | | public WebResponseContent ApplyLocation(string palletCode) |
| | | { |
| | | return Service.ApplyLocation(palletCode); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 判断巷道内移库 |
| | | /// </summary> |
| | |
| | | { |
| | | return Service.UpdateTaskInfo(task); |
| | | } |
| | | |
| | | [HttpPost, Route("FeedBackInboundERP"), AllowAnonymous] |
| | | public WebResponseContent FeedBackInboundERP(string upperOrderNo,string linId) |
| | | { |
| | | return Service.FeedBackInboundERP(upperOrderNo , linId); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 单据明细出库完成回调erp |
| | | /// </summary> |
| | | /// <param name="orderNO"></param> |
| | | /// <param name="linId"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("FeedBackOutERP"), AllowAnonymous] |
| | | public WebResponseContent FeedBackOutERP(string orderNO, string linId) |
| | | { |
| | | return Service.FeedBackOutERP(orderNO, linId); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 选定库存生成盘点单出库 |
| | | /// </summary> |
| | | [HttpPost, Route("TakeOutbound"), AllowAnonymous] |
| | | public WebResponseContent TakeOutbound([FromBody] List<StockViewDTO> stockViews) |
| | | { |
| | | return Service.TakeOutbound(stockViews); |
| | | } |
| | | } |
| | | } |