| | |
| | | { |
| | | 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); |
| | | } |
| | | } |
| | | } |