From 28c472364ba6a84641f68d07192b7777a313d588 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Tue, 28 Jan 2025 05:17:35 +0300 Subject: Add search keys --- RhSolutions.AddIn/AddIn/RhSolutionsFunctions.cs | 53 +++++++++++++++++-------- RhSolutions.ProductSku/ProductExtensions.cs | 9 +++++ 2 files changed, 46 insertions(+), 16 deletions(-) create mode 100644 RhSolutions.ProductSku/ProductExtensions.cs diff --git a/RhSolutions.AddIn/AddIn/RhSolutionsFunctions.cs b/RhSolutions.AddIn/AddIn/RhSolutionsFunctions.cs index aadc2c5..d795ef2 100644 --- a/RhSolutions.AddIn/AddIn/RhSolutionsFunctions.cs +++ b/RhSolutions.AddIn/AddIn/RhSolutionsFunctions.cs @@ -8,21 +8,9 @@ public static class RhSolutionsFunctions RhSolutionsAddIn.ServiceProvider.GetRequiredService(); [ExcelFunction(Name = "РЕХАУ")] - public static object ProductSearch(object[,] values) + public static object ProductSearch(object[,] values, string searchKey) { - List strings = new(); - int rows = values.GetLength(0); - int columns = values.GetLength(1); - for (int row = 0; row < rows; row++) - { - for (int column = 0; column < columns; column++) - { - object value = values[row, column]; - strings.Add(value.ToString()); - } - } - - string query = string.Join(" ", strings.ToArray()); + string query = MergeCellsValues(values); var functionName = nameof(ProductSearch); var parameters = new object[] { query }; if (ExcelAsyncUtil.RunTask(functionName, parameters, async () => @@ -38,8 +26,24 @@ public static class RhSolutionsFunctions } else { - var product = products.First(); - return $"{product.Id} {product.Name}"; + Product product = null; + if (string.IsNullOrEmpty(searchKey)) + { + Product mxProduct = products.FilterByName(new[] { "MX", "LX" }).FirstOrDefault(); + if (mxProduct != null) + { + product = mxProduct; + } + else + { + product = products.FirstOrDefault(); + } + } + else + { + product = products.FilterByName(new[] { searchKey }).FirstOrDefault(); + } + return product != null ? $"{product.Id} {product.Name}" : ExcelError.ExcelErrorNA; } } @@ -153,4 +157,21 @@ public static class RhSolutionsFunctions return Math.Round(requestResult, 2); } } + + private static string MergeCellsValues(object[,] values) + { + List strings = new(); + int rows = values.GetLength(0); + int columns = values.GetLength(1); + for (int row = 0; row < rows; row++) + { + for (int column = 0; column < columns; column++) + { + object value = values[row, column]; + strings.Add(value.ToString()); + } + } + + return string.Join(" ", strings.ToArray()); + } } \ No newline at end of file diff --git a/RhSolutions.ProductSku/ProductExtensions.cs b/RhSolutions.ProductSku/ProductExtensions.cs new file mode 100644 index 0000000..3976581 --- /dev/null +++ b/RhSolutions.ProductSku/ProductExtensions.cs @@ -0,0 +1,9 @@ +namespace RhSolutions.Models; + +public static class ProductExtensions +{ + public static IEnumerable FilterByName(this IEnumerable products, string[] searchKeys) + { + return products.Where(p => searchKeys.Any(k => p.Name.Contains(k))); + } +} \ No newline at end of file -- cgit v1.2.3