RhSolutions-AddIn/src/PriceListTools/CombineTool.cs

57 lines
2.2 KiB
C#
Raw Normal View History

2022-01-09 10:37:25 +03:00
using Microsoft.Office.Interop.Excel;
using System;
namespace RehauSku.PriceListTools
{
2022-01-27 10:22:30 +03:00
internal class CombineTool : PriceListTool
{
2022-01-27 10:22:30 +03:00
public override void FillTarget()
{
2022-01-09 10:37:25 +03:00
int exportedValues = 0;
2022-01-26 18:17:44 +03:00
foreach (var sheet in sourcePriceLists)
{
2022-01-26 17:41:46 +03:00
if (sheet.SkuAmount.Count == 0)
continue;
2022-01-09 10:37:25 +03:00
NewPriceList.Sheet.Columns[NewPriceList.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-01-26 17:41:46 +03:00
foreach (var kvp in sheet.SkuAmount)
{
Range cell = NewPriceList.Sheet.Columns[NewPriceList.skuCell.Column].Find(kvp.Key);
2022-01-09 10:37:25 +03:00
2022-01-26 17:41:46 +03:00
if (cell == null)
{
System.Windows.Forms.MessageBox.Show
($"Артикул {kvp.Key} отсутствует в таблице заказов {RegistryUtil.PriceListPath}",
"Отсутствует позиция в конечной таблице заказов",
System.Windows.Forms.MessageBoxButtons.OK,
System.Windows.Forms.MessageBoxIcon.Information);
}
2022-01-09 10:37:25 +03:00
2022-01-26 17:41:46 +03:00
else
{
NewPriceList.Sheet.Cells[cell.Row, NewPriceList.amountCell.Column - 1].Value2 = kvp.Value;
Range sumCell = NewPriceList.Sheet.Cells[cell.Row, NewPriceList.amountCell.Column];
2022-01-09 10:37:25 +03:00
2022-01-26 17:41:46 +03:00
if (sumCell.Value2 == null)
sumCell.Value2 = kvp.Value;
else
sumCell.Value2 += kvp.Value;
2022-01-09 10:37:25 +03:00
2022-01-26 17:41:46 +03:00
exportedValues++;
2022-01-09 10:37:25 +03:00
}
2022-01-26 17:41:46 +03:00
NewPriceList.Sheet.Cells[NewPriceList.amountCell.Row, NewPriceList.amountCell.Column - 1].Value2 = $"{sheet.Name}";
}
}
FilterByAmount();
2022-01-09 15:47:54 +03:00
AddIn.Excel.StatusBar = $"Экспортировано {exportedValues} строк из {sourcePriceLists.Count} файлов";
Forms.Dialog.SaveWorkbookAs();
}
}
}