2023-04-01 15:24:04 +03:00
|
|
|
|
using RhSolutions.AddIn;
|
|
|
|
|
|
|
|
|
|
namespace RhSolutions.Services;
|
2022-02-04 17:13:47 +03:00
|
|
|
|
|
2023-03-28 10:36:36 +03:00
|
|
|
|
public static class WorksheetExtensions
|
2022-02-04 17:13:47 +03:00
|
|
|
|
{
|
2023-03-28 10:36:36 +03:00
|
|
|
|
public static bool IsRehauSource(this Worksheet worksheet)
|
2022-02-04 17:13:47 +03:00
|
|
|
|
{
|
2023-03-28 10:36:36 +03:00
|
|
|
|
Range amountCell;
|
|
|
|
|
Range skuCell;
|
|
|
|
|
Range groupCell;
|
|
|
|
|
Range nameCell;
|
|
|
|
|
|
2023-04-01 15:24:04 +03:00
|
|
|
|
var pricelistParameters = RhSolutionsAddIn.Configuration.GetPriceListParameters();
|
|
|
|
|
|
2023-03-28 10:36:36 +03:00
|
|
|
|
Range[] cells = new[]
|
2022-02-04 17:13:47 +03:00
|
|
|
|
{
|
2023-04-01 15:24:04 +03:00
|
|
|
|
amountCell = worksheet.Cells.Find(pricelistParameters["Amount"]),
|
|
|
|
|
skuCell = worksheet.Cells.Find(pricelistParameters["Sku"]),
|
|
|
|
|
groupCell = worksheet.Cells.Find(pricelistParameters["Group"]),
|
|
|
|
|
nameCell = worksheet.Cells.Find(pricelistParameters["Name"])
|
2023-03-28 10:36:36 +03:00
|
|
|
|
};
|
2022-02-04 17:13:47 +03:00
|
|
|
|
|
2023-03-28 10:36:36 +03:00
|
|
|
|
return cells.All(x => x != null);
|
|
|
|
|
}
|
2022-02-04 17:13:47 +03:00
|
|
|
|
|
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-04 17:13:47 +03:00
|
|
|
|
}
|
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
|
|
|
|
}
|
2022-02-04 17:13:47 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|