2022-12-20 12:27:47 +03:00
|
|
|
|
using RhSolutions.Models;
|
2022-02-12 16:02:55 +03:00
|
|
|
|
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
|
|
|
|
|
2022-12-20 12:27:47 +03:00
|
|
|
|
namespace RhSolutions.Controllers
|
2021-12-24 16:22:03 +03:00
|
|
|
|
{
|
2022-12-20 11:53:55 +03:00
|
|
|
|
internal class MergeTool : ToolBase
|
2021-12-24 16:22:03 +03:00
|
|
|
|
{
|
2022-02-12 16:02:55 +03:00
|
|
|
|
private List<SourcePriceList> SourceFiles { get; set; }
|
2022-01-27 17:34:03 +03:00
|
|
|
|
|
2022-02-12 16:02:55 +03:00
|
|
|
|
public MergeTool()
|
|
|
|
|
{
|
|
|
|
|
string[] files = Dialog.GetMultiplyFiles();
|
|
|
|
|
|
|
|
|
|
if (files != null)
|
|
|
|
|
{
|
|
|
|
|
SourceFiles = SourcePriceList.GetSourceLists(files);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Не выбраны файлы");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-30 12:26:18 +03:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|