From 8b3020c92010076e03d0314f1719083444063626 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期一, 20 十一月 2023 11:26:05 +0800
Subject: [PATCH] 1.生产开报工,修改开工数量功能 2.车间看板,左上产线加工任务增加开工数量字段 3.修改用户清单,用户名称查询无数据问题
---
VueWebApi/Controllers/SystemSettingController.cs | 34 +++++++++++++++++++++++++++++++++-
1 files changed, 33 insertions(+), 1 deletions(-)
diff --git a/VueWebApi/Controllers/SystemSettingController.cs b/VueWebApi/Controllers/SystemSettingController.cs
index 0e83893..83029f0 100644
--- a/VueWebApi/Controllers/SystemSettingController.cs
+++ b/VueWebApi/Controllers/SystemSettingController.cs
@@ -14,7 +14,6 @@
{
[RoutePrefix(prefix: "api/SystemSetting")]
[ControllerGroup("绯荤粺璁剧疆", "鍦ㄧ嚎鎺ュ彛")]
- [ChannelActionFilter]
public class SystemSettingController : ApiController
{
//瀹氫箟鍏ㄥ眬淇℃伅杩斿洖鍙橀噺
@@ -160,5 +159,38 @@
return TJson.toJson(mes);
}
#endregion
+
+
+ #region[鑾峰彇鍗曟嵁鍙穄
+ /// <summary>
+ /// 鑾峰彇鍗曟嵁鍙�
+ /// </summary>
+ /// <param name="rightcode">鍔熻兘缂栫爜</param>
+ /// <returns></returns>
+ [Route(template: "NewOrderCodeSearch")]
+ [HttpPost]
+ public HttpResponseMessage NewOrderCodeSearch(string rightcode)
+ {
+ mes = ProductionManagementBLL.ProductInHouseOrderCodeSearch(rightcode);
+ return TJson.toJson(mes);
+ }
+ #endregion
+
+
+ #region[App鐗堟湰鍗囩骇鎺ュ彛]
+ /// <summary>
+ /// App鐗堟湰鍗囩骇鎺ュ彛
+ /// </summary>
+ /// <param name="rid">璁惧id</param>
+ /// <param name="vision">App褰撳墠浣跨敤鐗堟湰鍙�</param>
+ /// <returns></returns>
+ [Route(template: "AppUpgrade")]
+ [HttpPost]
+ public HttpResponseMessage AppUpgrade(string rid, string vision)
+ {
+ mes = SystemSettingBLL.AppUpgrade(rid, vision);
+ return TJson.toJson(mes);
+ }
+ #endregion
}
}
--
Gitblit v1.9.3