Disable Approve Some Procedures option when more than on user is in a procedure set.

This commit is contained in:
John Jenko 2016-03-04 03:00:38 +00:00
parent e609d8b974
commit a203dd1846

View File

@ -1031,8 +1031,10 @@ namespace Volian.Controls.Library
foreach (MenuItem itm in cm.MenuItems) foreach (MenuItem itm in cm.MenuItems)
{ {
if (itm.Text == "Approve All Procedures" || itm.Text == "Report All Procedures Inconsistencies" || if (itm.Text == "Approve All Procedures" || itm.Text == "Report All Procedures Inconsistencies" ||
itm.Text == "Working Draft Specific Information" || itm.Text == "Approve All Procedures for") itm.Text == "Working Draft Specific Information" || itm.Text == "Approve All Procedures for" ||
itm.Text == "Approve Some Procedures" || itm.Text == "Approve Some Procedures for")
itm.Enabled = false; itm.Enabled = false;
} }
} }
} }