| | |
| | | /// <response code="200">成功获取退料单明细</response> |
| | | /// <response code="400">获取失败,返回具体错误信息</response> |
| | | [HttpPost("GetPendingQtDetailList")] |
| | | public ResponseResult GetPendingQtDetailList([FromBody] WarehouseQuery query) |
| | | public ResponseResult GetPendingQtDetailList( |
| | | [FromBody] WarehouseQuery query) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | resultInfos.tbBillList = _manager.GetPendingQtDetailList(query, RequestInfo); |
| | | resultInfos.tbBillList = |
| | | _manager.GetPendingQtDetailList(query, RequestInfo); |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | resultInfos.tbBillList = _manager.ScanCode(query); |
| | | if (resultInfos.tbBillList.result == "2") |
| | | { |
| | | return new ResponseResult |
| | | { |
| | | status = Convert.ToInt32(resultInfos.tbBillList.result), |
| | | message = resultInfos.tbBillList.strMsg, |
| | | data = resultInfos |
| | | }; |
| | | } |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |