From 453edbb28ea372cbe547fc16eebf3baa0fb39e2c Mon Sep 17 00:00:00 2001 From: mschill Date: Thu, 30 Jul 2026 10:54:24 -0400 Subject: [PATCH] =?UTF-8?q?B2026-069=20=E2=80=93=20Updated=20Messaging=20r?= =?UTF-8?q?elated=20to=20Checking=20out=20working=20Drafts=20when=20ROs=20?= =?UTF-8?q?are=20being=20checked=20if=20they=20need=20updated.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Volian.Controls.Library/DisplayRO.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/PROMS/Volian.Controls.Library/DisplayRO.cs b/PROMS/Volian.Controls.Library/DisplayRO.cs index 86ff26cb..d8b59abd 100644 --- a/PROMS/Volian.Controls.Library/DisplayRO.cs +++ b/PROMS/Volian.Controls.Library/DisplayRO.cs @@ -643,10 +643,9 @@ namespace Volian.Controls.Library if (_docVersionInfo != null && fstid != -1 && fstid != MyROFSTLookup.RofstID) { string message = string.Empty; - if (_progressBar?.Text != "Cannot check-out Working Draft" && !MySessionInfo.CanCheckOutItem(_docVersionInfo.VersionID, CheckOutType.DocVersion, ref message)) + if (_progressBar?.Text != "RO Check Paused - Other Users In Set" && !MySessionInfo.CanCheckOutItem(_docVersionInfo.VersionID, CheckOutType.DocVersion, ref message)) { - FlexibleMessageBox.Show(this, message, "Working Draft Has Items Already Checked Out", MessageBoxButtons.OK, MessageBoxIcon.Warning); - FinalProgressBarMessage = "Cannot check-out Working Draft"; + FinalProgressBarMessage = "RO Check Paused - Other Users In Set"; } else if (!MySessionInfo.CanCheckOutItem(_docVersionInfo.VersionID, CheckOutType.DocVersion, ref message)) { @@ -719,7 +718,7 @@ namespace Volian.Controls.Library if (tmpROID != null) ExpandNode(ROFSTLookup.FormatRoidKey(tmpROID, true)); //doc version would have updated (if needed) so reset flag - if (_progressBar?.Text != "Cannot check-out Working Draft") + if (_progressBar?.Text != "RO Check Paused - Other Users In Set") { changedDocVersion = false; }