2022-01-09 10:37:25 +03:00
|
|
|
|
using Microsoft.Office.Interop.Excel;
|
2022-01-07 19:04:07 +03:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace RehauSku.PriceListTools
|
|
|
|
|
{
|
2022-01-09 10:37:25 +03:00
|
|
|
|
internal class CombineTool : AbstractPriceListTool, IDisposable
|
2022-01-07 19:04:07 +03:00
|
|
|
|
{
|
2022-01-09 10:37:25 +03:00
|
|
|
|
public override void FillPriceList()
|
2022-01-07 19:04:07 +03:00
|
|
|
|
{
|
2022-01-26 18:17:44 +03:00
|
|
|
|
PriceList offer = NewPriceList;
|
2022-01-09 10:37:25 +03:00
|
|
|
|
offer.Sheet.Activate();
|
2022-01-07 19:04:07 +03:00
|
|
|
|
|
2022-01-09 10:37:25 +03:00
|
|
|
|
int exportedValues = 0;
|
2022-01-07 19:04:07 +03:00
|
|
|
|
|
2022-01-26 18:17:44 +03:00
|
|
|
|
foreach (var sheet in sourcePriceLists)
|
2022-01-07 19:04:07 +03:00
|
|
|
|
{
|
2022-01-26 17:41:46 +03:00
|
|
|
|
if (sheet.SkuAmount.Count == 0)
|
|
|
|
|
continue;
|
2022-01-09 10:37:25 +03:00
|
|
|
|
|
2022-01-26 17:50:07 +03:00
|
|
|
|
offer.Sheet.Columns[offer.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)
|
|
|
|
|
{
|
2022-01-26 17:50:07 +03:00
|
|
|
|
Range cell = offer.Sheet.Columns[offer.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
|
|
|
|
|
{
|
2022-01-26 18:17:44 +03:00
|
|
|
|
offer.Sheet.Cells[cell.Row, offer.amountCell.Column - 1].Value2 = kvp.Value;
|
|
|
|
|
Range sumCell = offer.Sheet.Cells[cell.Row, offer.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
|
|
|
|
|
2022-01-26 18:17:44 +03:00
|
|
|
|
offer.Sheet.Cells[offer.amountCell.Row, offer.amountCell.Column - 1].Value2 = $"{sheet.Name}";
|
2022-01-07 19:04:07 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-09 10:37:25 +03:00
|
|
|
|
AutoFilter filter = offer.Sheet.AutoFilter;
|
2022-01-07 19:04:07 +03:00
|
|
|
|
|
2022-01-26 18:17:44 +03:00
|
|
|
|
filter.Range.AutoFilter(offer.amountCell.Column, "<>");
|
2022-01-09 10:37:25 +03:00
|
|
|
|
offer.Sheet.Range["A1"].Activate();
|
2022-01-07 19:04:07 +03:00
|
|
|
|
|
2022-01-09 15:47:54 +03:00
|
|
|
|
AddIn.Excel.StatusBar = $"Экспортировано {exportedValues} строк из {sourcePriceLists.Count} файлов";
|
|
|
|
|
|
|
|
|
|
Forms.Dialog.SaveWorkbookAs();
|
2022-01-07 19:04:07 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|