You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (newRow != null && newRow.containsKey("performedby") && newRow.get("performedby") == null)
30
28
{
31
-
if (newRow.containsKey("QCStateLabel") && newRow.get("QCStateLabel").equals("Completed"))
32
-
errors.addFieldError("performedby", "Performed by must be entered in all " + table.getTitle() + " records before submitting final.");
29
+
if (!newRow.containsKey("QCStateLabel") || newRow.get("QCStateLabel") == null)
30
+
{
31
+
errors.addFieldError("performedby", "Record in " + table.getTitle() + " cannot be submitted without Performed By if QCStateLabel is not found. Contact your administrator.");
0 commit comments