Show message box if sku is not found during export
This commit is contained in:
parent
54fc3320e7
commit
df1a2f9d91
@ -44,6 +44,15 @@ namespace RehauSku.PriceListTools
|
|||||||
foreach (KeyValuePair<string, double> kvp in values)
|
foreach (KeyValuePair<string, double> kvp in values)
|
||||||
{
|
{
|
||||||
Range cell = ws.Columns[skuColumn].Find(kvp.Key);
|
Range cell = ws.Columns[skuColumn].Find(kvp.Key);
|
||||||
|
if (cell == null)
|
||||||
|
{
|
||||||
|
System.Windows.Forms.MessageBox.Show
|
||||||
|
($"Артикул {kvp.Key} отсутствует в таблице заказов {RegistryUtil.PriceListPath}",
|
||||||
|
"Отсутствует позиция в конечной таблице заказов",
|
||||||
|
System.Windows.Forms.MessageBoxButtons.OK,
|
||||||
|
System.Windows.Forms.MessageBoxIcon.Information);
|
||||||
|
}
|
||||||
|
else
|
||||||
ws.Cells[cell.Row, amountColumn].Value = kvp.Value;
|
ws.Cells[cell.Row, amountColumn].Value = kvp.Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user