diff --git a/Fab2ApprovalSystem/Models/EightDModel.cs b/Fab2ApprovalSystem/Models/EightDModel.cs index 414e2e5..f12e401 100644 --- a/Fab2ApprovalSystem/Models/EightDModel.cs +++ b/Fab2ApprovalSystem/Models/EightDModel.cs @@ -241,6 +241,7 @@ namespace Fab2ApprovalSystem.Models public string ICAValidationActivities { get; set; } public string RootCauseVerification { get; set; } public string EscapePoint { get; set; } + public DateTime? NextDueDate { get; set; } public DateTime? FollowUpDate { get; set; } public bool CASubmitted { get; set; } diff --git a/Fab2ApprovalSystem/Views/Home/CorrectiveActionList.cshtml b/Fab2ApprovalSystem/Views/Home/CorrectiveActionList.cshtml index ce75e48..f0b82bc 100644 --- a/Fab2ApprovalSystem/Views/Home/CorrectiveActionList.cshtml +++ b/Fab2ApprovalSystem/Views/Home/CorrectiveActionList.cshtml @@ -36,6 +36,7 @@ columns.Bound(l => l.PendingApprovers); columns.Bound(l => l.PendingAIOwners).Title("Action Item Owners"); 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}"); if ((bool)Session[GlobalVars.IS_ADMIN]) columns.Template(t => { }).HeaderTemplate("").ClientTemplate(@"button delete");