From adc150efb13a0506f45a3c344c3ee2ef2dba8e90 Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期四, 01 七月 2021 15:19:13 +0800
Subject: [PATCH] 合并嘉乐lc代码

---
 HDL_ON/UI/UI2/3-Intelligence/Automation/Send.cs |   66 ++++++++++++++++----------------
 1 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/HDL_ON/UI/UI2/3-Intelligence/Automation/Send.cs b/HDL_ON/UI/UI2/3-Intelligence/Automation/Send.cs
index 838ba08..241b0c6 100644
--- a/HDL_ON/UI/UI2/3-Intelligence/Automation/Send.cs
+++ b/HDL_ON/UI/UI2/3-Intelligence/Automation/Send.cs
@@ -4,33 +4,11 @@
 using HDL_ON.DAL.Server;
 using Newtonsoft.Json.Linq;
 using System.Collections.Generic;
-using HDL_ON.Entity;
 
 namespace HDL_ON.UI.UI2.Intelligence.Automation
 {
     public  class Send
     {
-
-        /// <summary>
-        /// 璋冪敤鑾峰彇浣忓畢瀛愯处鍙峰垪琛�
-        /// </summary>
-        public static List<ResidenceMemberInfo> GetResidenceMemberAccount()
-        {
-
-            var responePack = new HttpServerRequest().GetResidenceMemberAccount();
-            if (responePack.Code == StateCode.SUCCESS)
-            {
-                return Newtonsoft.Json.JsonConvert.DeserializeObject<List<ResidenceMemberInfo>>(responePack.Data.ToString());
-            }
-            //澶辫触
-            else
-            {
-                //鎻愮ず
-                IMessageCommon.Current.ShowErrorInfoAlter(responePack.Code);
-            }
-            return new List<ResidenceMemberInfo>();
-        }
-
         /// <summary>
         /// 鑾峰彇閫昏緫ID鍒楄〃
         /// </summary>
@@ -114,6 +92,7 @@
                 {
                     var outputTypeJOb = new JObject { };
                     outputTypeJOb.Add("sid", dictionary.sid);
+                    outputTypeJOb.Add("delay", dictionary.delay);
                     outputTypeJOb.Add("target_type", dictionary.target_type);
                     var statusArray = new JArray { };
                     foreach (var dic in dictionary.status)
@@ -127,6 +106,12 @@
                     outputArray.Add(outputTypeJOb);
                 }
 
+<<<<<<< HEAD
+
+                var noticeConfigJObject = new JObject();
+                noticeConfigJObject.Add("enable", logic.noticeConfig.enable);
+                noticeConfigJObject.Add("noticeContent", logic.noticeConfig.noticeContent);
+
                 var pushConfigsArray = new JArray { };
                 if (logic.pushConfigs.Count > 0)
                 {   //聽鎺ㄩ�佹枃鏈�
@@ -135,7 +120,6 @@
                        
                         var pushConfigJob = new JObject { };
                         pushConfigJob.Add("pushMethod", pushConfig.pushMethod);
-                        pushConfigJob.Add("pushContent", pushConfig.pushContent);
                         var accountArray = new JArray { };
                         foreach (var account in pushConfig.pushTarget)
                         {
@@ -146,6 +130,8 @@
                     }
                 }
 
+=======
+>>>>>>> origin/CJL-LC
                 var logicjArray = new JArray { };
                 var logicIfon = new JObject { };
                 logicIfon.Add("sid", logic.sid);
@@ -156,24 +142,25 @@
                 logicIfon.Add("cycle", cycleJObject);
                 logicIfon.Add("input", inputArray);
                 logicIfon.Add("output", outputArray);
+<<<<<<< HEAD
+                logicIfon.Add("noticeConfig", noticeConfigJObject);
                 logicIfon.Add("pushConfigs", pushConfigsArray);
+=======
+>>>>>>> origin/CJL-LC
                 logicjArray.Add(logicIfon);
                 var jObject = new JObject { { "homeId", LogicMethod.HomeId }, { "logics", logicjArray } };
-                responsePackNew = RequestServerhomeId(jObject, NewAPI.API_POST_Logic_Add);
+                responsePackNew = RequestServerhomeId(jObject, NewAPI.API_POST_Logic_Add,5);
                 //濡傛灉鏄痶oken杩囨湡鍒欏埛鏂皌oken
                 if (responsePackNew.Code == StateCode.TOKEN_EXPIRED)
                 {
                     RefreshToken();
                     AddLogic(logic);
                 }
-
             }
             catch (Exception e)
             {
                 var dd = e.Message;
             }
-
-
             return responsePackNew;
         }
         /// <summary>
@@ -207,7 +194,10 @@
                     {
                         var conditionJOb = new JObject { };
                         conditionJOb.Add("key", dic["key"]);
-                        conditionJOb.Add("comparator", dic["comparator"]);
+                        var c1 = "";
+                        dic.TryGetValue("comparator", out c1);
+                        c1 = string.IsNullOrEmpty(c1) ? "" : c1;
+                        conditionJOb.TryAdd("comparator", c1);
                         conditionJOb.Add("data_type", dic["data_type"]);
                         conditionJOb.Add("value", dic["value"]);
                         conditionArray.Add(conditionJOb);
@@ -221,6 +211,7 @@
                 {
                     var outputTypeJOb = new JObject { };
                     outputTypeJOb.Add("sid", dictionary.sid);
+                    outputTypeJOb.Add("delay", dictionary.delay);
                     outputTypeJOb.Add("target_type", dictionary.target_type);
                     var statusArray = new JArray { };
                     foreach (var dic in dictionary.status)
@@ -234,15 +225,20 @@
                     outputArray.Add(outputTypeJOb);
                 }
 
+<<<<<<< HEAD
+                var noticeConfigJObject = new JObject();
+                noticeConfigJObject.Add("enable", logic.noticeConfig.enable);
+                noticeConfigJObject.Add("noticeContent", logic.noticeConfig.noticeContent);
+
                 var pushConfigsArray = new JArray { };
                 if (logic.pushConfigs.Count > 0)
-                {   //聽鎺ㄩ�佹枃鏈�
+                {
+                    //聽鎺ㄩ�佹枃鏈�
                     foreach (var pushConfig in logic.pushConfigs)
                     {
 
                         var pushConfigJob = new JObject { };
                         pushConfigJob.Add("pushMethod", pushConfig.pushMethod);
-                        pushConfigJob.Add("pushContent", pushConfig.pushContent);
                         var accountArray = new JArray { };
                         foreach (var account in pushConfig.pushTarget)
                         {
@@ -253,6 +249,8 @@
                     }
                 }
 
+=======
+>>>>>>> origin/CJL-LC
                 var logicjArray = new JArray { };
                 var logicIfon = new JObject { };
                 logicIfon.Add("userLogicId", logic.userLogicId);
@@ -264,11 +262,15 @@
                 logicIfon.Add("cycle", cycleJObject);
                 logicIfon.Add("input", inputArray);
                 logicIfon.Add("output", outputArray);
+<<<<<<< HEAD
+                logicIfon.Add("noticeConfig", noticeConfigJObject);
                 logicIfon.Add("pushConfigs", pushConfigsArray);
 
+=======
+>>>>>>> origin/CJL-LC
                 logicjArray.Add(logicIfon);
                 var jObject = new JObject { { "homeId", LogicMethod.HomeId }, { "logics", logicjArray } };
-                responsePackNew = RequestServerhomeId(jObject, NewAPI.API_POST_Logic_Update);
+                responsePackNew = RequestServerhomeId(jObject, NewAPI.API_POST_Logic_Update,5);
                 //濡傛灉鏄痶oken杩囨湡鍒欏埛鏂皌oken
                 if (responsePackNew.Code == StateCode.TOKEN_EXPIRED)
                 {
@@ -280,8 +282,6 @@
             {
                 var dd = e.Message;
             }
-
-
             return responsePackNew;
         } 
         /// <summary>

--
Gitblit v1.8.0