From 208ca42e1c20afafbe48d66259d553ee81eb48ed Mon Sep 17 00:00:00 2001 From: Shuxia Ning <NingShuxia0927@outlook.com> Date: 星期三, 13 十一月 2024 11:02:43 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/HStation/XHS.V1.0 --- WinFrmUI/HStation.WinFrmUI.Xhs.Core/00-core/AssetsMatchingHelper.cs | 977 ++++++++++++++++++++++++++++---------------------------- 1 files changed, 488 insertions(+), 489 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/00-core/AssetsMatchingHelper.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/00-core/AssetsMatchingHelper.cs index 34281f8..09d8b96 100644 --- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/00-core/AssetsMatchingHelper.cs +++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/00-core/AssetsMatchingHelper.cs @@ -1,5 +1,6 @@ 锘縰sing HStation.Vmo; using HStation.WinFrmUI.PhartRelation; +using System.Windows.Input; namespace HStation.WinFrmUI { @@ -12,87 +13,98 @@ private const double _headTolerance = 5; private const double _powerTolerance = 0.05; - //璧勪骇鑷姩鍖归厤 - public static async Task<bool> Matching(AssetsMatchingViewModel assetsAutoMatchingView) - { - bool IsMaching = false; - var pumpMain = new BLL.PumpMain(); - var adaptingManage = new BLL.AdaptingManage(); - var pipeLineManage = new BLL.PipeMain(); - var valveMain = new BLL.ValveMain(); - var elbowMain = new BLL.ElbowMain(); - var threeLinkMain = new BLL.ThreeLinkMain(); - var fourLinkMain = new BLL.FourLinkMain(); + private const double _valveLift = 10;//闃�闂ㄥ紑搴﹁寖鍥� + private const int _angle = 1;//瑙掑害鑼冨洿 - var allPump = await pumpMain.GetAll(); - var allAdapting = await adaptingManage.GetAll(); - var allPipeLine = await pipeLineManage.GetAll(); - var allValve = await valveMain.GetAll(); - var allElbow = await elbowMain.GetAll(); - var allThreeLink = await threeLinkMain.GetAll(); - var allFourLink = await fourLinkMain.GetAll(); - //娉靛尮閰� - foreach (var item in assetsAutoMatchingView.PumpMatchingList) + //璧勪骇鑷姩鍖归厤 + public static bool Matching(AssetsMatchingViewModel assetsAutoMatchingView, out string Error) + { + Error = string.Empty; + bool IsMaching = false; + var AssetsPumpMain = new BLL.AssetsPumpMain(); + var adaptingManage = new BLL.AdaptingManage(); + var pipeLineManage = new BLL.AssetsPipeMain(); + var AssetsValveMain = new BLL.AssetsValveMain(); + var AssetsElbowMain = new BLL.AssetsElbowMain(); + var AssetsThreelinkMain = new BLL.AssetsThreelinkMain(); + var AssetsFourlinkMain = new BLL.AssetsFourlinkMain(); + try { - if (await MatchingPumps(item, allPump)) + var allPump = Task.Run(async () => await AssetsPumpMain.GetAll()).Result; + var allAdapting = Task.Run(async () => await adaptingManage.GetAll()).Result; + var allPipeLine = Task.Run(async () => await pipeLineManage.GetAll()).Result; + var allValve = Task.Run(async () => await AssetsValveMain.GetAll()).Result; + var allElbow = Task.Run(async () => await AssetsElbowMain.GetAll()).Result; + var allThreeLink = Task.Run(async () => await AssetsThreelinkMain.GetAll()).Result; + var allFourLink = Task.Run(async () => await AssetsFourlinkMain.GetAll()).Result; + //娉靛尮閰� + foreach (var item in assetsAutoMatchingView.PumpMatchingList) { - IsMaching = true; + if (MatchingPumps(item, allPump)) + { + IsMaching = true; + } + } + //涓夐�氬尮閰� + foreach (var item in assetsAutoMatchingView.ThreelinkMatchingList) + { + if (MatchingThreelink(item, allThreeLink)) + { + IsMaching = true; + } + } + //鍥涢�氬尮閰� + foreach (var item in assetsAutoMatchingView.FourlinkMatchingList) + { + if (MatchingFourlink(item, allFourLink)) + { + IsMaching = true; + } + } + //绠¢亾鍖归厤 + foreach (var item in assetsAutoMatchingView.PipeMatchingList) + { + if (MatchingPipe(item, allPipeLine)) + { + IsMaching = true; + } + } + //闃�闂ㄥ尮閰� + foreach (var item in assetsAutoMatchingView.ValveMatchingList) + { + if (MatchingValve(item, allValve)) + { + IsMaching = true; + } + } + //寮ご鍖归厤 + foreach (var item in assetsAutoMatchingView.ElbowMatchingList) + { + if (MatchingElbow(item, allElbow)) + { + IsMaching = true; + } } } - //涓夐�氬尮閰� - foreach (var item in assetsAutoMatchingView.ThreelinkMatchingList) + catch (Exception ex) { - if (MatchingThreelink(item, allThreeLink)) - { - IsMaching = true; - } - } - //鍥涢�氬尮閰� - foreach (var item in assetsAutoMatchingView.FourlinkMatchingList) - { - if (MatchingFourlink(item, allFourLink)) - { - IsMaching = true; - } - } - //绠¢亾鍖归厤 - foreach (var item in assetsAutoMatchingView.PipeMatchingList) - { - if (MatchingPipe(item, allPipeLine)) - { - IsMaching = true; - } - } - //闃�闂ㄥ尮閰� - foreach (var item in assetsAutoMatchingView.ValveMatchingList) - { - if (MatchingValve(item, allValve)) - { - IsMaching = true; - } - } - //寮ご鍖归厤 - foreach (var item in assetsAutoMatchingView.ElbowMatchingList) - { - if (MatchingElbow(item, allElbow)) - { - IsMaching = true; - } + Error = ex.Message; + return false; } return IsMaching; } //娉靛尮閰� - public static async Task<bool> MatchingPumps(PumpMatchingViewModel InputModel, List<Vmo.PumpMainVmo> pumpMainVmos) + public static bool MatchingPumps(PumpMatchingViewModel InputModel, List<Vmo.AssetsPumpMainVmo> AssetsPumpMainVmos) { - if (pumpMainVmos == null) + if (AssetsPumpMainVmos == null) { return true; } - Vmo.PumpMainVmo vmo = null; + Vmo.AssetsPumpMainVmo vmo = null; int startCount = 0; // 灏濊瘯缁濆鍖归厤 - var absoluteMatch = pumpMainVmos.Where(item => + var absoluteMatch = AssetsPumpMainVmos.Where(item => (InputModel.RatedN == null || InputModel.RatedN == item.RatedSpeed) && (InputModel.RatedQ == null || InputModel.RatedQ == item.RatedFlow) && (InputModel.RatedH == null || InputModel.RatedH == item.RatedHead) && @@ -112,7 +124,7 @@ else { // 灏濊瘯鍖洪棿鍖归厤 - var rangeMatch = pumpMainVmos.Where(item => + var rangeMatch = AssetsPumpMainVmos.Where(item => (InputModel.RatedN.HasValue ? Math.Abs(InputModel.RatedN.Value - item.RatedSpeed) <= _speedTolerance : true) && (InputModel.RatedQ.HasValue ? Math.Abs(InputModel.RatedQ.Value - item.RatedFlow) <= _flowTolerance : true) && (InputModel.RatedH.HasValue ? Math.Abs(InputModel.RatedH.Value - item.RatedHead) <= _headTolerance : true) && @@ -133,7 +145,7 @@ // if (vmo == null) { - foreach (var item in pumpMainVmos) + foreach (var item in AssetsPumpMainVmos) { int commonCount = GetIntersect(InputModel.ModelType, item.Name); if (commonCount > startCount) @@ -151,13 +163,14 @@ InputModel.MatchingRatedP = vmo.RatedPower; InputModel.MatchingDbId = vmo.ID.ToString(); InputModel.MatchingModelType = vmo.Name; - var list = await new BLL.XhsPumpMainPhartMappingExtensions().GetByPumpMainID(vmo.ID); + var list = Task.Run(async () => await new BLL.XhsPumpMainPhartMappingExtensions().GetByPumpMainID(vmo.ID)).Result; if (list != null && list.Count > 0) { - InputModel.MatchingCurveDbId = list.First().ID.ToString(); - var graph_qh = list.First().Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.PumpQH); - var graph_qe = list.First().Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.PumpQE); - var graph_qp = list.First().Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.PumpQP); + var maxImportanceItem = list.OrderByDescending(x => x.Importance).First(); + InputModel.MatchingCurveDbId = maxImportanceItem.ID.ToString(); + var graph_qh = maxImportanceItem.Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.PumpQH); + var graph_qe = maxImportanceItem.Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.PumpQE); + var graph_qp = maxImportanceItem.Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.PumpQP); if (graph_qh != null) { var points_qh = PhartPerformCurveHelper.GetFeatPointList(graph_qh.GraphType, graph_qh.GeometryInfo, 100, null); @@ -192,524 +205,510 @@ } //闃�闂ㄥ尮閰� - public static bool MatchingValve(ValveMatchingViewModel input, List<Vmo.ValveMainVmo> adaptingManageVmos) + public static bool MatchingValve(ValveMatchingViewModel input, List<Vmo.AssetsValveMainVmo> adaptingManageVmos) { if (adaptingManageVmos == null) { return true; } - HStation.Vmo.ValveMainVmo vmo = null; - int firstCount = 0; + HStation.Vmo.AssetsValveMainVmo vmo = null; //鍙e緞鏈�灏忓樊鍊� // 缁濆鍖归厤 - var absoluteMatch = adaptingManageVmos.Where(i => - ((i.Caliber == null) || i.Caliber == input.Diameter) && - ((input.Material == null) || i.MaterialName == input.Material)).ToList(); - if (absoluteMatch.Any()) + adaptingManageVmos = adaptingManageVmos.Where(x => x.ValveType == input.ValveType).ToList(); + + var nameMatching = adaptingManageVmos.Where(x => + (x.KeyWord != null && x.KeyWord.Any(keyword => GetIntersect(keyword, input.ModelType) >= 1)) || + (x.KeyWord == null || !x.KeyWord.Any()) && GetIntersect(x.Name, input.ModelType) >= 1 + ) //鍏堣繘琛岀瓫閫�,鍚庤繘琛屼粠澶у埌灏忔帓搴� + .OrderByDescending(x => + (x.KeyWord != null && x.KeyWord.Any(keyword => GetIntersect(keyword, input.ModelType) >= 1)) || + (x.KeyWord == null || !x.KeyWord.Any()) && GetIntersect(x.Name, input.ModelType) >= 1) + .ToList();//浣跨敤鍨嬪彿鍚嶆垨鑰呭叧閿瓧鎵惧嚭鐩稿悓瀛楃鍦�1浠ヤ笂骞朵笖杩涜鎺掑簭 + + if (nameMatching.Count > 0) { - foreach (var range in absoluteMatch) + var absoluteMatching = nameMatching.Where(i => + ((i.Caliber == null) || Math.Abs(Convert.ToInt64(i.Caliber) - input.Diameter) <= _caliberTolerance) && //鐩村緞绾︽潫 + i.Material == input.Material //鏉愭枡绾︽潫 + ).ToList(); + if (absoluteMatching.Count > 1) { - int commonCount = GetIntersect(input.ModelType, range.KeyWord); - if (commonCount > firstCount) - { - vmo = range; - firstCount = commonCount; - } + return false; } + else if (absoluteMatching.Count == 1) + { + vmo = absoluteMatching.First(); + } + else + return false; + } + else if (nameMatching.Count == 1) + { + vmo = nameMatching.First(); } else { - //鍖洪棿鍖归厤 - var rangeMatch = adaptingManageVmos.Where(item => + var absoluteMatching = adaptingManageVmos.Where(i => + ((i.Caliber == null) || Math.Abs(Convert.ToInt64(i.Caliber) - input.Diameter) <= _caliberTolerance) && //鐩村緞绾︽潫 + i.Material == input.Material //鏉愭枡绾︽潫 + ).ToList(); + if (absoluteMatching.Count > 1) { - if (item.Caliber.HasValue) - { - return Math.Abs(Convert.ToInt64(item.Caliber - input.Diameter)) <= _caliberTolerance; - } - else - { - if (item.Caliber == null) - { - return true; - } - } return false; - }) - .ToList(); - if (rangeMatch != null && rangeMatch.Count > 0) - { - var materialList = new List<Vmo.ValveMainVmo>(); - foreach (var range in rangeMatch) - { - //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� - if (range.MaterialName == null) - { - materialList.Add(range); - } - else - { - int commonCount = GetIntersect(input.Material, range.MaterialName); - if (commonCount > firstCount) - { - materialList.Add(range); - firstCount = commonCount; - } - } - } - //鐢ㄥ凡缁忕瓫閫夊畬鎴愮殑鍒楄〃涓互鍚嶇О绛涢�� - firstCount = 0; - foreach (var material in materialList) - { - int commonCount = GetIntersect(input.ModelType, material.KeyWord); - if (commonCount > firstCount) - { - vmo = material; - firstCount = commonCount; - } - } } - } - //鍙e緞鍜屾潗鏂欓兘娌℃湁鍖归厤涓�,灏辩敤鍨嬪彿鍚嶅尮閰� - firstCount = 0; - if (vmo == null) - { - foreach (var item in adaptingManageVmos) + else if (absoluteMatching.Count == 1) { - int commonCount = GetIntersect(input.ModelType, item.KeyWord); - if (commonCount > firstCount) - { - vmo = item; - firstCount = commonCount; - } + vmo = absoluteMatching.First(); } + else + return false; } if (vmo != null) { - input.MatchingMinorLoss = vmo.Coefficient; + input.MatchingMinorLoss = vmo.MinorLoss; input.MatchingDbId = vmo.ID.ToString(); input.MatchingDiameter = vmo.Caliber; - input.MatchingMaterial = vmo.MaterialName; + input.MatchingMaterial = vmo.Material; input.MatchingModelType = vmo.Name; - // input.MatchingValveSetting = - input.MatchingValveType = vmo.SeriesType.ToString(); - return true; + input.MatchingValveSetting = vmo.ValveSetting; + input.MatchingValveType = vmo.ValveType; + if (vmo.ValveType == HStation.Assets.eValveType.GPV) + { + var list = Task.Run(async () => await new BLL.XhsPumpMainPhartMappingExtensions().GetByPumpMainID(vmo.ID)).Result; + if (list != null && list.Count > 0) + { + var maxImportanceItem = list.OrderByDescending(x => x.Importance).First(); + input.MatchingCurveDbId = maxImportanceItem.ID.ToString(); + var graph_ql = maxImportanceItem.Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.ValveQL); + var graph_ol = maxImportanceItem.Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.ValveOL); + if (graph_ql != null) + { + var points_qh = PhartPerformCurveHelper.GetFeatPointList(graph_ql.GraphType, graph_ql.GeometryInfo, 100, null); + input.MatchingCurveQL = new List<CurvePointMatchingViewModel>(); + foreach (var item in points_qh) + { + input.MatchingCurveQL.Add(new CurvePointMatchingViewModel(item.X, item.Y)); + } + } + } + return true; + } + else if (vmo.ValveType == HStation.Assets.eValveType.TCV) + { + var list = Task.Run(async () => await new BLL.XhsPumpMainPhartMappingExtensions().GetByPumpMainID(vmo.ID)).Result; + if (list != null && list.Count > 0) + { + var maxImportanceItem = list.OrderByDescending(x => x.Importance).First(); + input.MatchingCurveDbId = maxImportanceItem.ID.ToString(); + var graph_ol = maxImportanceItem.Diagram.GraphList.Find(x => x.GraphType == HStation.PhartRelation.eGraphType.ValveOL); + if (graph_ol != null) + { + var points_qh = PhartPerformCurveHelper.GetFeatPointList(graph_ol.GraphType, graph_ol.GeometryInfo, 100, null); + input.MatchingCurveOL = new List<CurvePointMatchingViewModel>(); + foreach (var item in points_qh) + { + input.MatchingCurveOL.Add(new CurvePointMatchingViewModel(item.X, item.Y)); + } + } + } + return true; + } } return false; } //绠¢亾鍖归厤 - public static bool MatchingPipe(PipeMatchingViewModel input, List<Vmo.PipeMainVmo> pipeLineManageVmos) + public static bool MatchingPipe(PipeMatchingViewModel input, List<Vmo.AssetsPipeMainVmo> pipeLineManageVmos) { - if (pipeLineManageVmos == null) - { - return true; - } - Vmo.PipeMainVmo vmo = null; - int StartCount = 0; - //鍙e緞鏈�灏忓樊鍊� - // 缁濆鍖归厤 - var absoluteMatch = pipeLineManageVmos.Where(i => - ((i.Caliber == null) || i.Caliber == input.Diameter) && - ((input.Material == null) || i.MaterialName == input.Material)).ToList(); - if (absoluteMatch.Any()) - { - foreach (var range in absoluteMatch) - { - int commonCount = GetIntersect(input.ModelType, range.KeyWord); - if (commonCount > StartCount) - { - vmo = range; - StartCount = commonCount; - } - } - } - else - { - //鍖洪棿鍖归厤 - var rangeMatch = pipeLineManageVmos.Where(item => - { - if (item.Caliber != null) - { - return Math.Abs(Convert.ToInt64(item.Caliber - input.Diameter)) <= _caliberTolerance; - } - return false; - }) - .ToList(); - if (rangeMatch != null) - { - foreach (var range in rangeMatch) - { - //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� - int commonCount = GetIntersect(input.Material, range.MaterialName); - if (commonCount > StartCount) - { - vmo = range; - StartCount = commonCount; - } - } - } - } - //鍙e緞鍜屾潗鏂欓兘娌℃湁鍖归厤涓�,灏辩敤鍨嬪彿鍚嶅尮閰� - if (vmo == null) - { - foreach (var item in pipeLineManageVmos) - { - int commonCount = GetIntersect(input.ModelType, item.KeyWord); - if (commonCount > StartCount) - { - vmo = item; - StartCount = commonCount; - } - } - } - if (vmo != null) - { - switch (input.eAlgorithmType) - { - case HStation.Assets.eAlgorithmType.Hazen: - input.MatchingRoughness = vmo.Hazen; - break; + /* if (pipeLineManageVmos == null) + { + return true; + } + Vmo.AssetsPipeMainVmo vmo = null; + int firstCount = 0; + //鍙e緞鏈�灏忓樊鍊� + // 缁濆鍖归厤 + var absoluteMatch = pipeLineManageVmos.Where(i => + ((i.Caliber == null) || i.Caliber == input.Diameter) && + ((input.Material == null) || i.Material == input.Material)).ToList(); + if (absoluteMatch.Count > 1) + { + } + else if (absoluteMatch.Count == 1) + { + vmo = absoluteMatch.First(); + } + else + { + //鍖洪棿鍖归厤 + var rangeMatch = pipeLineManageVmos + .Where(item => + item.Caliber == null || + Math.Abs(Convert.ToInt64(item.Caliber) - Convert.ToInt64(input.Diameter)) <= _caliberTolerance) + .ToList(); + if (rangeMatch != null) + { + var materialList = new List<Vmo.AssetsPipeMainVmo>(); + foreach (var range in rangeMatch) + { + //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� + if (range.Material == null) + { + materialList.Add(range); + } + else + { + int commonCount = GetIntersect(input.Material, range.Material); + if (commonCount > firstCount) + { + materialList.Add(range); + firstCount = commonCount; + } + } + } + firstCount = 0; + if (materialList.Count < 1) + return false; + var allMatchingList = materialList + .Where(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType) >= 2) + .OrderByDescending(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType)) + .ToList();//鎵惧嚭鐩稿悓瀛楃鍦�2浠ヤ笂骞朵笖杩涜鎺掑簭 + if (allMatchingList.Count < 1) + return false;//閫氳繃鍨嬪彿鍚嶆病鏈夋壘鍒�,鍒欒涓烘病鏈夊尮閰嶅埌 + foreach (var item in allMatchingList) + { + if (item.IsDefault) + { + vmo = item; + } + } + vmo = allMatchingList.First();//濡傛灉娌℃湁璁剧疆榛樿鍊�,鍒欓粯璁よ繑鍥炲尮閰嶅瓧绗︽渶澶氱殑涓�鏉℃暟鎹� + } + } + //鍙e緞鍜屾潗鏂欓兘娌℃湁鍖归厤涓�,灏辩敤鍨嬪彿鍚嶅尮閰� + if (vmo != null) + { + switch (input.eAlgorithmType) + { + case HStation.Assets.eAlgorithmType.Hazen: + input.MatchingRoughness = vmo.Hazen; + break; - case HStation.Assets.eAlgorithmType.Manning: - input.MatchingRoughness = vmo.Manning; - break; + case HStation.Assets.eAlgorithmType.Manning: + input.MatchingRoughness = vmo.Manning; + break; - case HStation.Assets.eAlgorithmType.Darcy: - input.MatchingRoughness = vmo.Darcy; - break; + case HStation.Assets.eAlgorithmType.Darcy: + input.MatchingRoughness = vmo.Darcy; + break; - default: - input.MatchingRoughness = vmo.Hazen; - break; - } - input.MatchingDbId = vmo.ID.ToString(); - input.MatchingMaterial = vmo.MaterialName; - input.MatchingModelType = vmo.Name; - input.MatchingMinorLoss = vmo.Coefficient; - return true; - } + default: + input.MatchingRoughness = vmo.Hazen; + break; + } + input.MatchingDbId = vmo.ID.ToString(); + input.MatchingMaterial = vmo.Material; + input.MatchingModelType = vmo.Name; + input.MatchingMinorLoss = vmo.MinorLoss; + return true; + }*/ return false; } //寮ご鍖归厤 - public static bool MatchingElbow(ElbowMatchingViewModel input, List<Vmo.ElbowMainVmo> adaptingManageVmos) + public static bool MatchingElbow(ElbowMatchingViewModel input, List<Vmo.AssetsElbowMainVmo> adaptingManageVmos) { if (adaptingManageVmos == null) { return true; } - Vmo.ElbowMainVmo vmo = null; + Vmo.AssetsElbowMainVmo vmo = null; int firstCount = 0; - //鍙e緞鏈�灏忓樊鍊� // 缁濆鍖归厤 - var absoluteMatch = adaptingManageVmos.Where(i => - ((input.Caliber == null && i.Caliber == null) || i.Caliber == input.Caliber) && - ((input.Material == null) || i.MaterialName == input.Material)).ToList(); - if (absoluteMatch.Any()) - { - foreach (var range in absoluteMatch) + /* var absoluteMatch = adaptingManageVmos.Where(i => + ((input.Caliber == null && i.Caliber == null) || i.Caliber == input.Caliber) && + ((input.Material == null) || i.Material == input.Material)).ToList(); + if (absoluteMatch.Count > 1) { - int commonCount = GetIntersect(input.ModelType, range.KeyWord); - if (commonCount > firstCount) + var allMatchingList = absoluteMatch + .Where(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType) >= 2) + .OrderByDescending(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType)) + .ToList();//鎵惧嚭鐩稿悓瀛楃鍦�2浠ヤ笂骞朵笖杩涜鎺掑簭 + if (allMatchingList.Count < 1) + return false;//閫氳繃鍨嬪彿鍚嶆病鏈夋壘鍒�,鍒欒涓烘病鏈夊尮閰嶅埌 + foreach (var item in allMatchingList) { - vmo = range; - firstCount = commonCount; + if (item.IsDefault) + { + vmo = item; + } } + vmo = allMatchingList.First();//濡傛灉娌℃湁璁剧疆榛樿鍊�,鍒欓粯璁よ繑鍥炲尮閰嶅瓧绗︽渶澶氱殑涓�鏉℃暟鎹� } - } - else - { - //鍖洪棿鍖归厤 - var rangeMatch = adaptingManageVmos.Where(item => + else if (absoluteMatch.Count == 1) { - if (item.Caliber != null && input.Caliber != null) - { - return Math.Abs(Convert.ToInt64(item.Caliber - input.Caliber)) <= _caliberTolerance; - } - else - { - if (item.Caliber == null) - { - return true; - } - } - return false; - }) - .ToList(); - if (rangeMatch != null && rangeMatch.Count > 0) + vmo = absoluteMatch.First(); + } + else { - var materialList = new List<Vmo.ElbowMainVmo>(); - foreach (var range in rangeMatch) + //鍖洪棿鍖归厤 + var rangeMatch = adaptingManageVmos + .Where(item => + (input.Caliber == null && input.Caliber == null) + || (item.Caliber.HasValue && input.Caliber.HasValue) && //瀛樺湪鍊�,鍒欒繘琛屼笅闈㈠樊鍊煎垽鏂� + Math.Abs(Convert.ToInt64(item.Caliber) - Convert.ToInt64(input.Caliber)) <= _caliberTolerance + || item.ElbowLengthType == input.ElbowLengthType + || (item.Angle.HasValue && input.Angle.HasValue) && //瀛樺湪鍊�,鍒欒繘琛屼笅闈㈠樊鍊煎垽鏂� + Math.Abs(Convert.ToInt64(item.Angle) - Convert.ToInt64(input.Angle)) <= _angle) + .ToList(); + if (rangeMatch != null && rangeMatch.Count > 0) { - //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� - if (range.MaterialName == null) + var materialList = new List<Vmo.AssetsElbowMainVmo>(); + foreach (var range in rangeMatch) { - materialList.Add(range); - } - else - { - int commonCount = GetIntersect(input.Material, range.MaterialName); - if (commonCount > firstCount) + //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� + if (range.Material == null) { materialList.Add(range); - firstCount = commonCount; + } + else + { + int commonCount = GetIntersect(input.Material, range.Material); + if (commonCount > firstCount) + { + materialList.Add(range); + firstCount = commonCount; + } } } - } - //鐢ㄥ凡缁忕瓫閫夊畬鎴愮殑鍒楄〃涓互鍚嶇О绛涢�� - firstCount = 0; - foreach (var material in materialList) - { - int commonCount = GetIntersect(input.ModelType, material.KeyWord); - if (commonCount > firstCount) + //鐢ㄥ凡缁忕瓫閫夊畬鎴愮殑鍒楄〃涓互鍚嶇О绛涢�� + firstCount = 0; + if (materialList.Count < 1) + return false; + var allMatchingList = materialList + .Where(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType) >= 2) + .OrderByDescending(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType)) + .ToList();//鎵惧嚭鐩稿悓瀛楃鍦�2浠ヤ笂骞朵笖杩涜鎺掑簭 + if (allMatchingList.Count < 1) + return false;//閫氳繃鍨嬪彿鍚嶆病鏈夋壘鍒�,鍒欒涓烘病鏈夊尮閰嶅埌 + foreach (var item in allMatchingList) { - vmo = material; - firstCount = commonCount; + if (item.IsDefault) + { + vmo = item; + } } + vmo = allMatchingList.First();//濡傛灉娌℃湁璁剧疆榛樿鍊�,鍒欓粯璁よ繑鍥炲尮閰嶅瓧绗︽渶澶氱殑涓�鏉℃暟鎹� } } - } - //鍙e緞鍜屾潗鏂欓兘娌℃湁鍖归厤涓�,灏辩敤鍨嬪彿鍚嶅尮閰� - firstCount = 0; - if (vmo == null) - { - foreach (var item in adaptingManageVmos) + //绮剧‘鍖归厤鍜岀矖绯欏尮閰嶉兘娌℃湁鍖归厤鍒板氨杩斿洖閿欒 + firstCount = 0; + if (vmo != null) { - int commonCount = GetIntersect(input.ModelType, item.Name); - if (commonCount > firstCount) - { - vmo = item; - firstCount = commonCount; - } - } - } - if (vmo != null) - { - input.MatchingMinorLoss = vmo.Coefficient; - input.MatchingDbId = vmo.ID.ToString(); - input.MatchingMaterial = vmo.MaterialName; - input.MatchingModelType = vmo.Name; - return true; - } + input.MatchingMinorLoss = vmo.MinorLoss; + input.MatchingDbId = vmo.ID.ToString(); + input.MatchingMaterial = vmo.Material; + input.MatchingModelType = vmo.Name; + input.MatchingConnectionLength = vmo.ElbowLengthType; + input.MatchingAngle = vmo.Angle; + return true; + }*/ return false; } //涓夐�氬尮閰� - public static bool MatchingThreelink(ThreelinkMatchingViewModel input, List<Vmo.ThreeLinkMainVmo> adaptingManageVmos) + public static bool MatchingThreelink(ThreelinkMatchingViewModel input, List<Vmo.AssetsThreelinkMainVmo> adaptingManageVmos) { - if (adaptingManageVmos == null) - { - return true; - } - Vmo.ThreeLinkMainVmo vmo = null; - int firstCount = 0; - //鍙e緞鏈�灏忓樊鍊� - // 缁濆鍖归厤 - var absoluteMatch = adaptingManageVmos.Where(i => - ((input.Caliber == null && i.Caliber == null) || i.Caliber == input.Caliber) && - ((input.Material == null) || i.MaterialName == input.Material)).ToList(); - if (absoluteMatch.Any()) - { - foreach (var range in absoluteMatch) + /* if (adaptingManageVmos == null) { - int commonCount = GetIntersect(input.ModelType, range.Name); - if (commonCount > firstCount) - { - vmo = range; - firstCount = commonCount; - } + return true; } - } - else - { - //鍖洪棿鍖归厤 - var rangeMatch = adaptingManageVmos.Where(item => + Vmo.AssetsThreelinkMainVmo vmo = null; + int firstCount = 0; + // 缁濆鍖归厤 + var absoluteMatch = adaptingManageVmos.Where(i => + ((input.Caliber == null && i.Caliber == null) || i.Caliber == input.Caliber) && + ((input.Material == null) || i.Material == input.Material)).ToList(); + if (absoluteMatch.Count > 1) { - if (item.Caliber != null && input.Caliber != null) + var allMatchingList = absoluteMatch + .Where(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType) >= 2) + .OrderByDescending(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType)) + .ToList();//鎵惧嚭鐩稿悓瀛楃鍦�2浠ヤ笂骞朵笖杩涜鎺掑簭 + if (allMatchingList.Count < 1) + return false;//閫氳繃鍨嬪彿鍚嶆病鏈夋壘鍒�,鍒欒涓烘病鏈夊尮閰嶅埌 + foreach (var item in allMatchingList) { - return Math.Abs(Convert.ToInt64(item.Caliber - input.Caliber)) <= _caliberTolerance; - } - else - { - if (item.Caliber == null) + if (item.IsDefault) { - return true; + vmo = item; } } - return false; - }) - .ToList(); - if (rangeMatch != null && rangeMatch.Count > 0) + vmo = allMatchingList.First();//濡傛灉娌℃湁璁剧疆榛樿鍊�,鍒欓粯璁よ繑鍥炲尮閰嶅瓧绗︽渶澶氱殑涓�鏉℃暟鎹� + } + else if (absoluteMatch.Count == 1) { - var materialList = new List<Vmo.ThreeLinkMainVmo>(); - foreach (var range in rangeMatch) + vmo = absoluteMatch.First(); + } + else + { + //鍖洪棿鍖归厤 + var rangeMatch = adaptingManageVmos + .Where(item => + input.Caliber == null || + item.Caliber == null || + Math.Abs(Convert.ToInt64(item.Caliber) - Convert.ToInt64(input.Caliber)) <= _caliberTolerance) + .ToList(); + if (rangeMatch != null && rangeMatch.Count > 0) { - //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� - if (range.MaterialName == null) + var materialList = new List<Vmo.AssetsThreelinkMainVmo>(); + foreach (var range in rangeMatch) { - materialList.Add(range); - } - else - { - int commonCount = GetIntersect(input.Material, range.MaterialName); - if (commonCount > firstCount) + //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� + if (range.Material == null) { materialList.Add(range); - firstCount = commonCount; + } + else + { + int commonCount = GetIntersect(input.Material, range.Material); + if (commonCount > firstCount) + { + materialList.Add(range); + firstCount = commonCount; + } } } - } - //鐢ㄥ凡缁忕瓫閫夊畬鎴愮殑鍒楄〃涓互鍚嶇О绛涢�� - firstCount = 0; - foreach (var material in materialList) - { - int commonCount = GetIntersect(input.ModelType, material.Name); - if (commonCount > firstCount) + //鐢ㄥ凡缁忕瓫閫夊畬鎴愮殑鍒楄〃涓互鍚嶇О绛涢�� + firstCount = 0; + if (materialList.Count < 1) + return false; + var allMatchingList = materialList + .Where(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType) >= 2) + .OrderByDescending(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType)) + .ToList();//鎵惧嚭鐩稿悓瀛楃鍦�2浠ヤ笂骞朵笖杩涜鎺掑簭 + if (allMatchingList.Count < 1) + return false;//閫氳繃鍨嬪彿鍚嶆病鏈夋壘鍒�,鍒欒涓烘病鏈夊尮閰嶅埌 + foreach (var item in allMatchingList) { - vmo = material; - firstCount = commonCount; + if (item.IsDefault) + { + vmo = item; + } } + vmo = allMatchingList.First();//濡傛灉娌℃湁璁剧疆榛樿鍊�,鍒欓粯璁よ繑鍥炲尮閰嶅瓧绗︽渶澶氱殑涓�鏉℃暟鎹� } } - } - //鍙e緞鍜屾潗鏂欓兘娌℃湁鍖归厤涓�,灏辩敤鍨嬪彿鍚嶅尮閰� - firstCount = 0; - if (vmo == null) - { - foreach (var item in adaptingManageVmos) + //绮剧‘鍖归厤鍜岀矖绯欏尮閰嶉兘娌℃湁鍖归厤鍒板氨杩斿洖閿欒 + firstCount = 0; + if (vmo != null) { - int commonCount = GetIntersect(input.ModelType, item.Name); - if (commonCount > firstCount) - { - vmo = item; - firstCount = commonCount; - } + input.MatchingMinorLoss = vmo.MinorLoss; + input.MatchingDbId = vmo.ID.ToString(); + input.MatchingMaterial = vmo.Material; + input.MatchingModelType = vmo.Name; + input.MatchingRunThroughCoefficient = vmo.RunThroughCoefficient; + input.MatchingBranchThroughCoefficient = vmo.BranchThroughCoefficient; + return true; } - } - if (vmo != null) - { - input.MatchingMinorLoss = vmo.Coefficient; - input.MatchingDbId = vmo.ID.ToString(); - input.MatchingMaterial = vmo.MaterialName; - input.MatchingModelType = vmo.Name; - return true; - } + return false;*/ return false; } //鍥涢�氬尮閰� - public static bool MatchingFourlink(FourlinkMatchingViewModel input, List<Vmo.FourLinkMainVmo> adaptingManageVmos) + public static bool MatchingFourlink(FourlinkMatchingViewModel input, List<Vmo.AssetsFourlinkMainVmo> adaptingManageVmos) { - if (adaptingManageVmos == null) - { - return true; - } - Vmo.FourLinkMainVmo vmo = null; - int firstCount = 0; - //鍙e緞鏈�灏忓樊鍊� - // 缁濆鍖归厤 - var absoluteMatch = adaptingManageVmos.Where(i => - ((input.Caliber == null && i.Caliber == null) || i.Caliber == input.Caliber) && - ((input.Material == null) || i.MaterialName == input.Material)).ToList(); - if (absoluteMatch.Any()) - { - foreach (var range in absoluteMatch) - { - int commonCount = GetIntersect(input.ModelType, range.Name); - if (commonCount > firstCount) - { - vmo = range; - firstCount = commonCount; - } - } - } - else - { - //鍖洪棿鍖归厤 - var rangeMatch = adaptingManageVmos.Where(item => - { - if (item.Caliber != null && input.Caliber != null) - { - return Math.Abs(Convert.ToInt64(item.Caliber - input.Caliber)) <= _caliberTolerance; - } - else - { - if (item.Caliber == null) - { - return true; - } - } - return false; - }) - .ToList(); - if (rangeMatch != null && rangeMatch.Count > 0) - { - var materialList = new List<Vmo.FourLinkMainVmo>(); - foreach (var range in rangeMatch) - { - //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� - if (range.MaterialName == null) - { - materialList.Add(range); - } - else - { - int commonCount = GetIntersect(input.Material, range.MaterialName); - if (commonCount > firstCount) - { - materialList.Add(range); - firstCount = commonCount; - } - } - } - //鐢ㄥ凡缁忕瓫閫夊畬鎴愮殑鍒楄〃涓互鍚嶇О绛涢�� - firstCount = 0; - foreach (var material in materialList) - { - int commonCount = GetIntersect(input.ModelType, material.Name); - if (commonCount > firstCount) - { - vmo = material; - firstCount = commonCount; - } - } - } - } - //鍙e緞鍜屾潗鏂欓兘娌℃湁鍖归厤涓�,灏辩敤鍨嬪彿鍚嶅尮閰� - firstCount = 0; - if (vmo == null) - { - foreach (var item in adaptingManageVmos) - { - int commonCount = GetIntersect(input.ModelType, item.KeyWord); - if (commonCount > firstCount) - { - vmo = item; - firstCount = commonCount; - } - } - } - if (vmo != null) - { - input.MatchingMinorLoss = vmo.Coefficient; - input.MatchingDbId = vmo.ID.ToString(); - input.MatchingMaterial = vmo.MaterialName; - input.MatchingModelType = vmo.Name; - return true; - } + /* if (adaptingManageVmos == null) + { + return true; + } + Vmo.AssetsFourlinkMainVmo vmo = null; + int firstCount = 0; + // 缁濆鍖归厤 + var absoluteMatch = adaptingManageVmos.Where(i => + ((input.Caliber == null && i.Caliber == null) || i.Caliber == input.Caliber) && + ((input.Material == null) || i.Material == input.Material)).ToList(); + if (absoluteMatch.Count > 1) + { + var allMatchingList = absoluteMatch + .Where(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType) >= 2) + .OrderByDescending(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType)) + .ToList();//鎵惧嚭鐩稿悓瀛楃鍦�2浠ヤ笂骞朵笖杩涜鎺掑簭 + if (allMatchingList.Count < 1) + return false;//閫氳繃鍨嬪彿鍚嶆病鏈夋壘鍒�,鍒欒涓烘病鏈夊尮閰嶅埌 + foreach (var item in allMatchingList) + { + } + vmo = allMatchingList.First();//濡傛灉娌℃湁璁剧疆榛樿鍊�,鍒欓粯璁よ繑鍥炲尮閰嶅瓧绗︽渶澶氱殑涓�鏉℃暟鎹� + } + else if (absoluteMatch.Count == 1) + { + vmo = absoluteMatch.First(); + } + else + { + //鍖洪棿鍖归厤 + var rangeMatch = adaptingManageVmos + .Where(item => + input.Caliber == null || + item.Caliber == null || + Math.Abs(Convert.ToInt64(item.Caliber) - Convert.ToInt64(input.Caliber)) <= _caliberTolerance) + .ToList(); + if (rangeMatch != null && rangeMatch.Count > 0) + { + var materialList = new List<Vmo.AssetsFourlinkMainVmo>(); + foreach (var range in rangeMatch) + { + //浠ユ潗鏂欎负鏉′欢寮�濮嬪尮閰� + if (range.Material == null) + { + materialList.Add(range); + } + else + { + int commonCount = GetIntersect(input.Material, range.Material); + if (commonCount > firstCount) + { + materialList.Add(range); + firstCount = commonCount; + } + } + } + //鐢ㄥ凡缁忕瓫閫夊畬鎴愮殑鍒楄〃涓互鍚嶇О绛涢�� + firstCount = 0; + if (materialList.Count < 1) + return false; + var allMatchingList = materialList + .Where(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType) >= 2) + .OrderByDescending(x => GetIntersect(x.KeyWord == string.Empty ? x.Name : x.KeyWord, input.ModelType)) + .ToList();//鎵惧嚭鐩稿悓瀛楃鍦�2浠ヤ笂骞朵笖杩涜鎺掑簭 + if (allMatchingList.Count < 1) + return false;//閫氳繃鍨嬪彿鍚嶆病鏈夋壘鍒�,鍒欒涓烘病鏈夊尮閰嶅埌 + foreach (var item in allMatchingList) + { + } + vmo = allMatchingList.First();//濡傛灉娌℃湁璁剧疆榛樿鍊�,鍒欓粯璁よ繑鍥炲尮閰嶅瓧绗︽渶澶氱殑涓�鏉℃暟鎹� + } + } + //绮剧‘鍖归厤鍜岀矖绯欏尮閰嶉兘娌℃湁鍖归厤鍒板氨杩斿洖閿欒 + firstCount = 0; + if (vmo != null) + { + input.MatchingMinorLoss = vmo.MinorLoss; + input.MatchingDbId = vmo.ID.ToString(); + input.MatchingMaterial = vmo.Material; + input.MatchingModelType = vmo.Name; + return true; + }*/ return false; } /// <summary> /// 鑾峰彇涓や釜瀛楃涓茬殑鎵�鏈変氦闆� /// </summary> - /// <param name="str1"></param> - /// <param name="str2"></param> - /// <returns></returns> public static int GetIntersect(string str1, string str2) { if (str1 == null || str2 == null) return 0; - return string.Join("", str1.Intersect(str2)).Count(); } } -- Gitblit v1.9.3