From db198cb7d019316704ff2525460c7252f8127502 Mon Sep 17 00:00:00 2001 From: John Jenko Date: Mon, 27 Jul 2026 11:08:35 -0400 Subject: [PATCH] B2026-066 Fixed issue of the Update RO Values button and Working Draft context menu item, not being disabled after Updating RO Values. --- PROMS/VEPROMS.CSLA.Library/Extension/ROFSTExt.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ROFSTExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ROFSTExt.cs index f2e4ffc2..50ff8877 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ROFSTExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ROFSTExt.cs @@ -262,8 +262,10 @@ namespace VEPROMS.CSLA.Library if (dvi.DocVersionAssociations[0].MyROFst.ROFstID != newfstid) { dv.DocVersionAssociations[0].MyROFst = localROFst.GetJustROFst(); - SetAssociationLastCompleted(dv, DateTime.Now.ToString()); } + // B2026-066 moved this out of if statement above + // - was not resetting the datetime and thus not disabling the Update RO Values button and menu item + SetAssociationLastCompleted(dv, DateTime.Now.ToString()); } }