Compare commits
7 Commits
C2021-058_
...
B2025-047
Author | SHA1 | Date | |
---|---|---|---|
9da91e460f | |||
2634cf7de9 | |||
7417091f3f | |||
f9aad50f46 | |||
535cd5af2e | |||
4a8e469736 | |||
7d89f711fe |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -20588,11 +20588,6 @@ GO
|
||||
GO
|
||||
|
||||
|
||||
|
||||
-- Delete All Existing Rofst Table Data
|
||||
Delete From RofstHeader;
|
||||
|
||||
|
||||
/*
|
||||
==========================================================================================================
|
||||
End: B2022-083: Support Conditional RO Values (v2.1)
|
||||
|
@@ -614,7 +614,7 @@ namespace Volian.Controls.Library
|
||||
AddDummyGroup(db, tn);
|
||||
}
|
||||
|
||||
_currRofstID = (int?)MyROFST.ROFstID;
|
||||
_currRofstID = (IsRofstValid) ? (int?)_myROFST.ROFstID : null;
|
||||
_currDocVersionID = null;
|
||||
|
||||
if(_docVersionInfo != null) _currDocVersionID = (int?)_docVersionInfo.VersionID;
|
||||
@@ -789,7 +789,7 @@ namespace Volian.Controls.Library
|
||||
|
||||
private void AddDummyGroup(ROFSTLookup.rodbi rodbi, TreeNode tn)
|
||||
{
|
||||
if (MyROFSTLookup.HasChildren(ref rodbi))
|
||||
if (IsRofstValid && MyROFSTLookup.HasChildren(ref rodbi))
|
||||
{
|
||||
TreeNode tmp = new TreeNode(DummyNodeText);
|
||||
tn.Nodes.Add(tmp);
|
||||
|
Reference in New Issue
Block a user