RhSolutions-AddIn/src/PriceListTools/ConvertTool.cs

38 lines
981 B
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
{
internal class ConvertTool : PriceListTool
{
private Source Current;
public void GetCurrent()
{
2022-01-28 09:27:19 +03:00
try
{
Current = new Source(ExcelApp.ActiveWorkbook);
}
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()
{
foreach (var kvp in Current.PositionAmount)
FillColumnsWithDictionary(kvp, TargetFile.amountCell.Column);
2022-01-28 09:16:10 +03:00
FilterByAmount();
2022-02-02 09:46:47 +03:00
Dialog.SaveWorkbookAs();
2022-01-28 09:16:10 +03:00
}
}
}