RhSolutions-AddIn/src/PriceListTools/ConvertTool.cs

46 lines
1.3 KiB
C#
Raw Normal View History

2022-02-02 09:46:47 +03:00
using RehauSku.Interface;
using System;
2022-01-28 09:27:19 +03:00
namespace RehauSku.PriceListTools
2022-01-28 09:16:10 +03:00
{
2022-02-02 18:02:17 +03:00
internal class ConvertTool : AbstractTool
2022-01-28 09:16:10 +03:00
{
2022-02-02 18:05:49 +03:00
private SourcePriceList Current;
2022-01-28 09:16:10 +03:00
public void GetCurrent()
{
2022-01-28 09:27:19 +03:00
try
{
2022-02-02 18:05:49 +03:00
Current = new SourcePriceList(ExcelApp.ActiveWorkbook);
2022-01-28 09:27:19 +03:00
}
catch (Exception exception)
{
System.Windows.Forms.MessageBox.Show
(exception.Message,
"Ошибка распознавания",
System.Windows.Forms.MessageBoxButtons.OK,
System.Windows.Forms.MessageBoxIcon.Information);
throw exception;
}
2022-01-28 09:16:10 +03:00
}
public void FillTarget()
{
2022-02-04 09:17:12 +03:00
ProgressBar = new ProgressBar("Заполняю строки...", Current.PositionAmount.Count);
ResultBar = new ResultBar();
2022-02-02 10:23:50 +03:00
foreach (var kvp in Current.PositionAmount)
2022-02-02 10:23:50 +03:00
{
2022-02-03 21:44:24 +03:00
FillPositionAmountToColumns(kvp, TargetFile.amountCell.Column);
2022-02-04 09:17:12 +03:00
ProgressBar.Update();
2022-02-02 10:23:50 +03:00
}
2022-01-28 09:16:10 +03:00
FilterByAmount();
2022-02-04 09:17:12 +03:00
ResultBar.Update();
2022-01-28 09:16:10 +03:00
//Dialog.SaveWorkbookAs();
2022-02-04 09:17:12 +03:00
ExcelApp.StatusBar = false;
2022-01-28 09:16:10 +03:00
}
}
}