C2020-049-Add-the-ability-for-PROMS-to-remember-the-procedure-tabs-that-were-open-when-you-closed-PROMS-4 #420

Merged
mschill merged 3 commits from C2020-049-Add-the-ability-for-PROMS-to-remember-the-procedure-tabs-that-were-open-when-you-closed-PROMS-4 into Development 2024-10-07 11:51:37 -04:00
Showing only changes of commit dc77984c10 - Show all commits

View File

@ -23798,7 +23798,7 @@ BEGIN TRY -- Try Block
--then remove the link from the copy
--if original item was not linked, update new items to not be linked
DECLARE @xconfig XML = (Select cast(config as xml) xconfig from Contents where ContentID = @ContentID);
IF @xconfig.exist('//Enhanced[1]') = 0
mschill marked this conversation as resolved Outdated

this change needs to remain in / may need to resubmit with get latest.

this was a change based on what Paul Linn found with the Paste/Replace testing this morning.

this change needs to remain in / may need to resubmit with get latest. this was a change based on what Paul Linn found with the Paste/Replace testing this morning.

I did get latest, and the change was included.

I did get latest, and the change was included.

It is still not showing / line 23801 is showing as:
IF @xconfig.exist('//Enhanced[1]') = 0

instead of:

IF ISNULL(@xconfig.exist('//Enhanced[1]'),0) = 0

Let me know if you have any questions - I can do a screenshare to show what I am seeing.

It is still not showing / line 23801 is showing as: IF @xconfig.exist('//Enhanced[1]') = 0 instead of: IF ISNULL(@xconfig.exist('//Enhanced[1]'),0) = 0 Let me know if you have any questions - I can do a screenshare to show what I am seeing.
IF ISNULL(@xconfig.exist('//Enhanced[1]'),0) = 0
BEGIN
UPDATE Contents SET Config = dbo.vefn_RemoveEnhanced(Contents.Config)
Where ContentID in (Select ContentID FROM vefn_ChildItems(@NewItemID))