From 3e9b79b84905b1cf7a282d1bf03e6de3e85b91bb Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期四, 02 十一月 2023 15:52:22 +0800
Subject: [PATCH] 1.生产开报工、报表增加销售订单号查询字段及列表字段
---
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