Added DROUsages table to capture ROUsages in Documents

Changed lookup to use ROID rather than id when expanding the tree
to show the selected RO.  Previously used GetRoChildFromID which
was not working
This commit is contained in:
Rich
2011-01-20 20:23:35 +00:00
parent c4344f2308
commit 52a088a775
8 changed files with 3838 additions and 1 deletions

View File

@@ -401,7 +401,9 @@ namespace Volian.Controls.Library
{
path.Insert(0, myid);
myid = rochld.ParentID;
rochld = MyROFST.ROFSTLookup.GetRoChildFromID(myid);
String pROID = string.Format("{0}{1:X08}",db,myid);
rochld = MyROFST.ROFSTLookup.GetRoChild(pROID);
//rochld = MyROFST.ROFSTLookup.GetRoChildFromID(myid); Did not include db
if (rochld.ID == -1) myid = -1;
}
TreeNode tnExpand = null;