Do not show missing dialog on empty missing list
This commit is contained in:
parent
722de64dad
commit
35930ebda4
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user