Add message on recognition fault

This commit is contained in:
Sergey Chebotar 2022-01-28 09:27:45 +03:00
parent 539d22fb1e
commit f7949badda

View File

@ -63,9 +63,9 @@ namespace RehauSku.PriceListTools
if (missing.Count > 0) if (missing.Count > 0)
{ {
System.Windows.Forms.MessageBox.Show System.Windows.Forms.MessageBox.Show
($"{missing.Count} артикулов отсутствует в таблице заказов {RegistryUtil.PriceListPath}", ($"{missing.Count} артикулов отсутствует в таблице заказов {RegistryUtil.PriceListPath} Попробовать найти новый вариант?",
"Отсутствует позиция в конечной таблице заказов", "Отсутствует позиция в конечной таблице заказов",
System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxButtons.YesNo,
System.Windows.Forms.MessageBoxIcon.Information); System.Windows.Forms.MessageBoxIcon.Information);
} }
} }