From 2577a348d234c714ccb9195b62d2637f8baa5b55 Mon Sep 17 00:00:00 2001
From: zyf <1071160500@qq.com>
Date: 星期四, 30 十月 2025 19:55:57 +0800
Subject: [PATCH] 修改检验线体的选择,根据人员权限返回线体
---
MESApplication/Controllers/QC/XJController.cs | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/MESApplication/Controllers/QC/XJController.cs b/MESApplication/Controllers/QC/XJController.cs
index 03616a0..f522c7d 100644
--- a/MESApplication/Controllers/QC/XJController.cs
+++ b/MESApplication/Controllers/QC/XJController.cs
@@ -60,13 +60,14 @@
//getLine
[HttpPost("getLineAll")]
- public ResponseResult getLineAll()
+ public ResponseResult getLineAll([FromBody] JObject data)
{
try
{
+ string UserNo = data["userNo"].ToString();
dynamic resultInfos = new ExpandoObject();
var tbBillList =
- new XJService().getLineAll();
+ new XJService().getLineAll(UserNo);
resultInfos.tbBillList = tbBillList;
return new ResponseResult
{
--
Gitblit v1.9.3