RhSolutions-AddIn/src/PriceListTools/MergeTool.cs

47 lines
1.3 KiB
C#
Raw Normal View History

2022-02-02 09:46:47 +03:00
using RehauSku.Interface;
using System;
2022-02-02 09:46:47 +03:00
using System.Collections.Generic;
2022-02-02 10:23:50 +03:00
using System.Linq;
2022-01-27 17:34:03 +03:00
namespace RehauSku.PriceListTools
2021-12-24 16:22:03 +03:00
{
2022-02-02 18:02:17 +03:00
internal class MergeTool : AbstractTool
2021-12-24 16:22:03 +03:00
{
private List<SourcePriceList> SourceFiles { get; set; }
2022-01-27 17:34:03 +03:00
public MergeTool()
{
string[] files = Dialog.GetMultiplyFiles();
if (files != null)
{
SourceFiles = SourcePriceList.GetSourceLists(files);
}
else
{
throw new Exception("Не выбраны файлы");
}
}
public override void FillTarget()
2022-01-27 17:34:03 +03:00
{
2022-04-01 17:55:36 +03:00
using (ProgressBar = new ProgressBar("Заполняю строки...", SourceFiles.Sum(x => x.PositionAmount.Count)))
using (ResultBar = new ResultBar())
2022-01-27 20:43:19 +03:00
{
2022-04-01 17:55:36 +03:00
foreach (SourcePriceList source in SourceFiles)
2022-02-02 10:23:50 +03:00
{
2022-04-01 17:55:36 +03:00
foreach (var kvp in source.PositionAmount)
{
FillPositionAmountToColumns(kvp, TargetFile.AmountCell.Column);
ProgressBar.Update();
}
2022-02-02 10:23:50 +03:00
}
2022-01-27 20:43:19 +03:00
2022-04-01 17:55:36 +03:00
FilterByAmount();
ResultBar.Update();
}
2022-01-27 17:34:03 +03:00
}
2021-12-24 16:22:03 +03:00
}
}