RhSolutions-AddIn/RhSolutions.AddIn/Controllers/MergeTool.cs

57 lines
1.7 KiB
C#
Raw Normal View History

2023-03-28 09:58:43 +03:00
using RhSolutions.AddIn;
using RhSolutions.Models;
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
{
private List<SourcePriceList> SourceFiles { get; set; }
2022-01-27 17:34:03 +03:00
public MergeTool()
{
2023-03-28 09:58:43 +03:00
var dialog = RhSolutionsAddIn.Excel.FileDialog[Microsoft.Office.Core.MsoFileDialogType.msoFileDialogFilePicker];
dialog.AllowMultiSelect = true;
dialog.Filters.Add("Файлы Excel", "*.xls; *.xlsx; *.xlsm");
2023-03-28 09:58:43 +03:00
if ( dialog.Show() < 0)
{
2023-03-28 09:58:43 +03:00
List<string> files = new();
foreach (string file in dialog.SelectedItems)
{
files.Add(file);
}
SourceFiles = SourcePriceList.GetSourceLists(files.ToArray());
}
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
}
}