From fba48d2d676cd9b6d493163aef9d87f6e5090aee Mon Sep 17 00:00:00 2001 From: 如洲 陈 <1278080563@qq.com> Date: 星期五, 12 九月 2025 19:02:00 +0800 Subject: [PATCH] 出库检和退货检验 --- MESApplication/Controllers/QC/BaseController.cs | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/MESApplication/Controllers/QC/BaseController.cs b/MESApplication/Controllers/QC/BaseController.cs index 71ad051..03ae142 100644 --- a/MESApplication/Controllers/QC/BaseController.cs +++ b/MESApplication/Controllers/QC/BaseController.cs @@ -107,4 +107,29 @@ } } + //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); + } + } + } \ No newline at end of file -- Gitblit v1.9.3