| | |
| | | } |
| | | |
| | | [HttpPost,Route("OrderFeedback"),AllowAnonymous] |
| | | public ApiResponse<Dt_Inventory> OrderFeedback([FromBody]EdiOrderCallbackRequest request) |
| | | public ApiResponse<Dt_InventoryInfo> OrderFeedback([FromBody]EdiOrderCallbackRequest request) |
| | | { |
| | | return Service.OrderFeedback(request); |
| | | } |
| | | |
| | | [HttpPost,Route("GetInventoryList"),AllowAnonymous] |
| | | public WebResponseContent GetInventoryList(string goods_no, string batch_num) |
| | | public WebResponseContent GetInventoryList([FromBody]int[] key) |
| | | { |
| | | return Service.GetInventoryList(goods_no, batch_num); |
| | | return Service.GetInventoryList(key); |
| | | } |
| | | } |
| | | } |