From d6502baa8e5610c04127fbee92ff6111e40956f8 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期二, 13 六月 2023 09:50:02 +0800
Subject: [PATCH] 生产入库、采购入库接口提交

---
 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