duheng
2024-11-06 31e3f4ffdf7d566db391a5fcb94984f23e0abb02
WinFrmUI/HStation.WinFrmUI.Xhs.Core/00-core/AssetsMatchingHelper.cs
@@ -214,7 +214,7 @@
            HStation.Vmo.AssetsValveMainVmo vmo = null;
            //口径最小差值
            // 绝对匹配
            adaptingManageVmos = adaptingManageVmos.Where(x => x.ValveType.ToString() == input.ValveType).ToList();
            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)) ||
@@ -263,82 +263,6 @@
                else
                    return false;
            }
            /*   var absoluteMatch = adaptingManageVmos.Where(i =>
                ((i.Caliber == null) || i.Caliber == input.Diameter) &&
                 ((input.Material == null && i.Materia == null) || i.Materia == 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)
                  {
                      if (item.IsDefault)
                      {
                          vmo = item;
                      }
                  }
                  vmo = allMatchingList.First();//如果没有设置默认值,则默认返回匹配字符最多的一条数据
              }
              else if (absoluteMatch.Count == 1)
              {
                  vmo = absoluteMatch.First();
              }
              else
              {
                  //区间匹配
                  var rangeMatch = adaptingManageVmos
                 .Where(item =>
                      item.Caliber == null ||
                     Math.Abs(Convert.ToInt64(item.Caliber) - Convert.ToInt64(input.Diameter)) <= _caliberTolerance
                     || Math.Abs(Convert.ToInt64(item.ValveLift) - Convert.ToInt64(input.ValveLift)) <= _valveLift)
                 .ToList();
                  if (rangeMatch != null && rangeMatch.Count > 0)
                  {
                      var materialList = new List<Vmo.AssetsValveMainVmo>();
                      foreach (var range in rangeMatch)
                      {
                          //以材料为条件开始匹配
                          if (range.Materia == null)
                          {
                              materialList.Add(range);
                          }
                          else
                          {
                              int commonCount = GetIntersect(input.Material, range.Materia);
                              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();//如果没有设置默认值,则默认返回匹配字符最多的一条数据
                  }
              }
              //口径和材料都没有匹配上,就用型号名匹配
              firstCount = 0;*/
            if (vmo != null)
            {
                input.MatchingMinorLoss = vmo.MinorLoss;
@@ -347,8 +271,48 @@
                input.MatchingMaterial = vmo.Material;
                input.MatchingModelType = vmo.Name;
                input.MatchingValveSetting = vmo.ValveSetting;
                input.MatchingValveType = vmo.ValveType.ToString();
                return true;
                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.MatchingChartDbId = 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.MatchingChartDbId = 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;
        }
@@ -461,70 +425,15 @@
            Vmo.AssetsElbowMainVmo vmo = null;
            int firstCount = 0;
            // 绝对匹配
            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.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)
            /*    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.IsDefault)
                    {
                        vmo = item;
                    }
                }
                vmo = allMatchingList.First();//如果没有设置默认值,则默认返回匹配字符最多的一条数据
            }
            else if (absoluteMatch.Count == 1)
            {
                vmo = absoluteMatch.First();
            }
            else
            {
                //区间匹配
                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.ConnectionLength == input.ConnectionLength
       || (item.Angle.HasValue && input.Angle.HasValue) &&      //存在值,则进行下面差值判断
       Math.Abs(Convert.ToInt64(item.Angle) - Convert.ToInt64(input.Angle)) <= _angle)
    .ToList();
                if (rangeMatch != null && rangeMatch.Count > 0)
                {
                    var materialList = new List<Vmo.AssetsElbowMainVmo>();
                    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;
                    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以上并且进行排序
                    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)
@@ -536,19 +445,74 @@
                    }
                    vmo = allMatchingList.First();//如果没有设置默认值,则默认返回匹配字符最多的一条数据
                }
            }
            //精确匹配和粗糙匹配都没有匹配到就返回错误
            firstCount = 0;
            if (vmo != null)
            {
                input.MatchingMinorLoss = vmo.Coefficient;
                input.MatchingDbId = vmo.ID.ToString();
                input.MatchingMaterial = vmo.MaterialName;
                input.MatchingModelType = vmo.Name;
                input.MatchingConnectionLength = vmo.ConnectionLength;
                input.MatchingAngle = vmo.Angle;
                return true;
            }
                else if (absoluteMatch.Count == 1)
                {
                    vmo = absoluteMatch.First();
                }
                else
                {
                    //区间匹配
                    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)
                    {
                        var materialList = new List<Vmo.AssetsElbowMainVmo>();
                        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();//如果没有设置默认值,则默认返回匹配字符最多的一条数据
                    }
                }
                //精确匹配和粗糙匹配都没有匹配到就返回错误
                firstCount = 0;
                if (vmo != null)
                {
                    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;
        }