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()); if (missing.Count > 0)
System.Windows.Forms.MessageBox.Show {
($"{missing.Count} артикулов отсутствует в таблице заказов {RegistryUtil.PriceListPath}", System.Windows.Forms.MessageBox.Show
"Отсутствует позиция в конечной таблице заказов", ($"{missing.Count} артикулов отсутствует в таблице заказов {RegistryUtil.PriceListPath}",
System.Windows.Forms.MessageBoxButtons.OK, "Отсутствует позиция в конечной таблице заказов",
System.Windows.Forms.MessageBoxIcon.Information); System.Windows.Forms.MessageBoxButtons.OK,
System.Windows.Forms.MessageBoxIcon.Information);
}
} }
protected private void FilterByAmount() protected private void FilterByAmount()