From 2a88b9b559fd20f42d163d08b582f2d19ff329f4 Mon Sep 17 00:00:00 2001 From: wxr <wxr@hdlchina.com.cn> Date: 星期一, 30 九月 2024 17:05:58 +0800 Subject: [PATCH] Update HDLLinphone.cs --- HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs b/HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs index c0e43e7..89f04ba 100644 --- a/HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs +++ b/HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs @@ -231,6 +231,10 @@ }; foreach (var f in room.GetRoomFunctions(false)) { + //if(f.spk == SPK.OtherCommon) + //{ + // continue; + //} if (f.trait_on_off.curValue.ToString() == "on") { btn.Visible = true; @@ -401,6 +405,14 @@ { switch (functionCategory) { + case ShowFunction.FreshAir: + List<Function> faList = new List<Function>(); + foreach (var f in FunctionList.List.GetAirFreshList()) + { + faList.Add(f); + } + Control.Ins.SwtichFunctions(onoff == "on", faList); + break; case ShowFunction.AC: List<Function> acList = new List<Function>(); foreach(var f in FunctionList.List.GetAcList()) @@ -448,7 +460,7 @@ } catch (Exception ex) { - MainPage.Log($"{functionCategory}鍏ㄥ紑鍏ㄥ叧澶辫触:{ex.Message}"); + MainPage.Log("Error", $"{functionCategory}鍏ㄥ紑鍏ㄥ叧澶辫触:{ex.Message}"); } finally { -- Gitblit v1.8.0