| | |
| | | } |
| | | } |
| | | |
| | | //getByThjFid - 获取THJ退货检验的图片 |
| | | [HttpPost("getByThjFid")] |
| | | public ResponseResult getByThjFid([FromBody] JObject data) |
| | | { |
| | | var id = Convert.ToInt32(data["fid"].ToString()); |
| | | var qsType = data["qsType"].ToString(); |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | var tbBillList = |
| | | new BaseService().getByThjFid(id, qsType); |
| | | resultInfos.tbBillList = tbBillList; |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | | message = "OK", |
| | | data = resultInfos |
| | | }; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | |
| | | } |