This commit is contained in:
parent
48fd879622
commit
59aca78048
@ -64,7 +64,8 @@ namespace VEPROMS.CSLA.Library
|
||||
if (retval != string.Empty) return retval;
|
||||
proc = (ProcedureInfo)proc.ActiveParent;
|
||||
}
|
||||
DocVersionInfo docVersion = (DocVersionInfo)proc.ActiveParent;
|
||||
DocVersionInfo docVersion = proc.ActiveParent as DocVersionInfo;
|
||||
if (docVersion == null) return string.Empty;
|
||||
retval = docVersion.DocVersionConfig.GetValue(args.Group, args.Item);
|
||||
if (retval != string.Empty) return retval;
|
||||
for (FolderInfo folder = docVersion.MyFolder; folder != null; folder = folder.MyParent)
|
||||
|
@ -74,7 +74,8 @@ namespace VEPROMS.CSLA.Library
|
||||
if (retval != string.Empty) return retval;
|
||||
proc = (ProcedureInfo)proc.ActiveParent;
|
||||
}
|
||||
DocVersionInfo docVersion = (DocVersionInfo)proc.ActiveParent;
|
||||
DocVersionInfo docVersion = proc.ActiveParent as DocVersionInfo;
|
||||
if (docVersion == null) return string.Empty;
|
||||
retval = docVersion.DocVersionConfig.GetValue(args.Group, args.Item);
|
||||
if (retval != string.Empty) return retval;
|
||||
for (FolderInfo folder = docVersion.MyFolder; folder != null; folder = folder.MyParent)
|
||||
|
Loading…
x
Reference in New Issue
Block a user