RhSolutions-AddIn/src/PriceListTools/CombineTool.cs

56 lines
1.7 KiB
C#
Raw Normal View History

2022-01-09 10:37:25 +03:00
using Microsoft.Office.Interop.Excel;
2022-02-02 10:23:50 +03:00
using RehauSku.Interface;
using System;
using System.Collections.Generic;
2022-02-02 10:23:50 +03:00
using System.Linq;
using Dialog = RehauSku.Interface.Dialog;
namespace RehauSku.PriceListTools
{
2022-02-02 18:02:17 +03:00
internal class CombineTool : AbstractTool
{
private List<SourcePriceList> SourceFiles { get; set; }
public CombineTool()
{
string[] files = Dialog.GetMultiplyFiles();
if (files != null)
{
SourceFiles = SourcePriceList.GetSourceLists(files);
}
else
{
throw new Exception("Не выбраны файлы");
}
}
2022-01-27 17:34:03 +03:00
public override void FillTarget()
{
2022-02-04 09:17:12 +03:00
ProgressBar = new ProgressBar("Заполняю строки...", SourceFiles.Sum(file => file.PositionAmount.Count));
ResultBar = new ResultBar();
2022-02-02 10:23:50 +03:00
2022-02-02 18:05:49 +03:00
foreach (SourcePriceList source in SourceFiles)
{
2022-02-12 16:53:34 +03:00
TargetFile.Sheet.Columns[TargetFile.AmountCell.Column]
2022-01-26 17:41:46 +03:00
.EntireColumn
.Insert(XlInsertShiftDirection.xlShiftToRight, XlInsertFormatOrigin.xlFormatFromRightOrBelow);
2022-01-09 10:37:25 +03:00
2022-02-12 16:53:34 +03:00
Range newColumnHeader = TargetFile.Sheet.Cells[TargetFile.AmountCell.Row, TargetFile.AmountCell.Column - 1];
2022-01-28 12:37:02 +03:00
newColumnHeader.Value2 = $"{source.Name}";
newColumnHeader.WrapText = true;
2022-01-27 17:34:03 +03:00
2022-02-02 10:23:50 +03:00
foreach (var kvp in source.PositionAmount)
{
2022-02-12 16:53:34 +03:00
FillPositionAmountToColumns(kvp, TargetFile.AmountCell.Column - 1, TargetFile.AmountCell.Column);
2022-02-04 09:17:12 +03:00
ProgressBar.Update();
2022-02-02 10:23:50 +03:00
}
2022-01-27 20:43:19 +03:00
}
2022-01-09 10:37:25 +03:00
2022-01-27 20:43:19 +03:00
FilterByAmount();
2022-02-04 09:17:12 +03:00
ResultBar.Update();
}
}
}