RhSolutions-AddIn/RhSolutions.AddIn/Tools/WorksheetExtensions.cs

49 lines
1.1 KiB
C#
Raw Normal View History

2023-04-06 08:29:39 +03:00
#if !NET472
using System.Runtime.Versioning;
2023-04-06 16:40:00 +03:00
using RhSolutions;
using RhSolutions.Services;
using RhSolutions.Tools;
2023-04-06 08:29:39 +03:00
#endif
2023-04-01 15:24:04 +03:00
2023-04-06 16:40:00 +03:00
namespace RhSolutions.Tools;
2023-04-06 08:29:39 +03:00
#if !NET472
[SupportedOSPlatform("windows")]
#endif
2023-03-28 10:36:36 +03:00
public static class WorksheetExtensions
{
2023-04-06 08:49:12 +03:00
public static bool IsValidSource(this Worksheet worksheet)
{
2023-03-28 10:36:36 +03:00
Range amountCell;
Range skuCell;
2023-04-06 08:29:39 +03:00
Range programLineCell;
2023-03-28 10:36:36 +03:00
Range nameCell;
2023-04-06 08:49:12 +03:00
var pricelistParameters = RhSolutionsAddIn.Configuration.GetPriceListHeaders();
2023-04-01 15:24:04 +03:00
2023-03-28 10:36:36 +03:00
Range[] cells = new[]
{
2023-04-01 15:24:04 +03:00
amountCell = worksheet.Cells.Find(pricelistParameters["Amount"]),
skuCell = worksheet.Cells.Find(pricelistParameters["Sku"]),
2023-04-06 08:29:39 +03:00
programLineCell = worksheet.Cells.Find(pricelistParameters["ProductLine"]),
2023-04-01 15:24:04 +03:00
nameCell = worksheet.Cells.Find(pricelistParameters["Name"])
2023-03-28 10:36:36 +03:00
};
2023-03-28 10:36:36 +03:00
return cells.All(x => x != null);
}
2023-03-28 10:36:36 +03:00
public static void AddValue(this Range range, double value)
{
if (range.Value2 == null)
{
range.Value2 = value;
}
2022-02-08 16:19:49 +03:00
2023-03-28 10:36:36 +03:00
else
2022-02-08 16:19:49 +03:00
{
2023-03-28 10:36:36 +03:00
range.Value2 += value;
2022-02-08 16:19:49 +03:00
}
}
}