| | |
| | | { |
| | | } |
| | | |
| | | |
| | | [HttpGet("getOutStockLockInfo")] |
| | | public async Task<WebResponseContent> GetOutStockLockInfo(string orderDetailId) |
| | | |
| | | [HttpGet("getOutStockLockInfo")] |
| | | public async Task<WebResponseContent> GetOutStockLockInfo(string orderDetailId) |
| | | { |
| | | var list = await Service.GetByOrderDetailId(orderDetailId.ObjToInt()); |
| | | |
| | | return WebResponseContent.Instance.OK(null, list); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("GetByOrderDetailId"), AllowAnonymous] |
| | | public List<Dt_OutStockLockInfo> GetByOrderDetailId(int orderDetailId) |
| | | { |
| | | return Service.GetByOrderDetailId(orderDetailId, null); |
| | | } |
| | | |
| | | } |
| | | } |