Do not show missing dialog on empty missing list

This commit is contained in:
Sergey Chebotar 2022-01-28 09:14:56 +03:00
parent 722de64dad
commit 35930ebda4

View File

@ -82,12 +82,14 @@ namespace RehauSku.PriceListTools
}
}
string values = string.Join("\n", missing.Select(kvp => kvp.Key).ToArray());
System.Windows.Forms.MessageBox.Show
($"{missing.Count} артикулов отсутствует в таблице заказов {RegistryUtil.PriceListPath}",
"Отсутствует позиция в конечной таблице заказов",
System.Windows.Forms.MessageBoxButtons.OK,
System.Windows.Forms.MessageBoxIcon.Information);
if (missing.Count > 0)
{
System.Windows.Forms.MessageBox.Show
($"{missing.Count} артикулов отсутствует в таблице заказов {RegistryUtil.PriceListPath}",
"Отсутствует позиция в конечной таблице заказов",
System.Windows.Forms.MessageBoxButtons.OK,
System.Windows.Forms.MessageBoxIcon.Information);
}
}
protected private void FilterByAmount()