RhSolutions-AddIn/src/PriceListTools/ExportTool.cs

97 lines
2.8 KiB
C#
Raw Normal View History

2022-01-27 17:34:03 +03:00
using Microsoft.Office.Interop.Excel;
2021-12-24 16:22:03 +03:00
using System;
using System.Collections.Generic;
2022-12-19 20:25:35 +03:00
using RhSolutions.Interface;
2021-12-24 16:22:03 +03:00
2022-12-19 20:25:35 +03:00
namespace RhSolutions.PriceListTools
2021-12-24 16:22:03 +03:00
{
2022-02-02 18:02:17 +03:00
internal class ExportTool : AbstractTool
2021-12-24 16:22:03 +03:00
{
private Dictionary<Position, double> PositionAmount;
2022-02-12 16:53:34 +03:00
private readonly Range Selection;
2021-12-24 16:22:03 +03:00
2022-02-05 13:04:18 +03:00
public ExportTool()
2021-12-24 16:22:03 +03:00
{
Selection = ExcelApp.Selection;
GetSelected();
if (PositionAmount.Count == 0)
{
throw new Exception("В выделенном диапазоне не найдены позиции для экспорта");
}
2021-12-24 16:22:03 +03:00
}
public override void FillTarget()
2021-12-24 16:22:03 +03:00
{
2022-04-01 17:55:36 +03:00
using (ProgressBar = new ProgressBar("Заполняю строки...", PositionAmount.Count))
using (ResultBar = new ResultBar())
{
2022-04-01 17:55:36 +03:00
foreach (var kvp in PositionAmount)
{
FillPositionAmountToColumns(kvp, TargetFile.AmountCell.Column);
ProgressBar.Update();
}
2022-04-01 17:55:36 +03:00
FilterByAmount();
ResultBar.Update();
}
2021-12-24 16:22:03 +03:00
}
2022-01-27 17:34:03 +03:00
private void GetSelected()
2021-12-24 16:22:03 +03:00
{
2022-04-01 17:55:36 +03:00
object[,] cells = Selection.Value2;
PositionAmount = new Dictionary<Position, double>();
2021-12-24 16:22:03 +03:00
int rowsCount = Selection.Rows.Count;
for (int row = 1; row <= rowsCount; row++)
{
if (cells[row, 1] == null || cells[row, 2] == null)
continue;
string sku = null;
double? amount = null;
for (int column = 1; column <= 2; column++)
{
object current = cells[row, column];
2022-07-04 09:21:44 +03:00
if (RauSku.TryParse(current.ToString(), out RauSku rauSku))
2021-12-24 16:22:03 +03:00
{
2022-07-04 09:16:07 +03:00
sku = rauSku.ToString();
2021-12-24 16:22:03 +03:00
}
else if (current.GetType() == typeof(string)
&& double.TryParse(current.ToString(), out _))
{
amount = double.Parse((string)current);
}
else if (current.GetType() == typeof(double))
{
amount = (double)current;
}
}
if (sku == null || amount == null)
2022-01-27 20:43:19 +03:00
{
2021-12-24 16:22:03 +03:00
continue;
2022-01-27 20:43:19 +03:00
}
2021-12-24 16:22:03 +03:00
Position position = new Position(null, sku, null);
if (PositionAmount.ContainsKey(position))
2022-01-27 20:43:19 +03:00
{
PositionAmount[position] += amount.Value;
2022-01-27 20:43:19 +03:00
}
2021-12-24 16:22:03 +03:00
else
2022-01-27 20:43:19 +03:00
{
PositionAmount.Add(position, amount.Value);
2022-01-27 20:43:19 +03:00
}
2021-12-24 16:22:03 +03:00
}
}
}
}