Added NextDueDate into Corrective Actions model and tables
This commit is contained in:
@ -241,6 +241,7 @@ namespace Fab2ApprovalSystem.Models
|
|||||||
public string ICAValidationActivities { get; set; }
|
public string ICAValidationActivities { get; set; }
|
||||||
public string RootCauseVerification { get; set; }
|
public string RootCauseVerification { get; set; }
|
||||||
public string EscapePoint { get; set; }
|
public string EscapePoint { get; set; }
|
||||||
|
public DateTime? NextDueDate { get; set; }
|
||||||
public DateTime? FollowUpDate { get; set; }
|
public DateTime? FollowUpDate { get; set; }
|
||||||
public bool CASubmitted { get; set; }
|
public bool CASubmitted { get; set; }
|
||||||
|
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
columns.Bound(l => l.PendingApprovers);
|
columns.Bound(l => l.PendingApprovers);
|
||||||
columns.Bound(l => l.PendingAIOwners).Title("Action Item Owners");
|
columns.Bound(l => l.PendingAIOwners).Title("Action Item Owners");
|
||||||
columns.Bound(l => l.D8DueDate).Format("{0:MM/dd/yy}");
|
columns.Bound(l => l.D8DueDate).Format("{0:MM/dd/yy}");
|
||||||
|
columns.Bound(l => l.NextDueDate).Format("{0:MM/dd/yy}");
|
||||||
columns.Bound(l => l.ClosedDate).Format("{0:MM/dd/yy}");
|
columns.Bound(l => l.ClosedDate).Format("{0:MM/dd/yy}");
|
||||||
if ((bool)Session[GlobalVars.IS_ADMIN])
|
if ((bool)Session[GlobalVars.IS_ADMIN])
|
||||||
columns.Template(t => { }).HeaderTemplate("").ClientTemplate(@"<a href='javascript: void(0)' class='abutton delete' onclick='deleteRowCA(this)' title='button delete'>button delete</a>");
|
columns.Template(t => { }).HeaderTemplate("").ClientTemplate(@"<a href='javascript: void(0)' class='abutton delete' onclick='deleteRowCA(this)' title='button delete'>button delete</a>");
|
||||||
|
Reference in New Issue
Block a user