Fixed Cache for ItemInfo - This was causing steps to not be undated in the editor or the tree.
Unique Key for ROFst Lookup
This commit is contained in:
@@ -174,7 +174,8 @@ namespace VEPROMS.CSLA.Library
|
||||
public ROFSTLookup GetROFSTLookup(DocVersionInfo dvi)
|
||||
{
|
||||
//string key = string.Format("{0}.{1}",dvi.DocVersionAssociations[0].ROFstID,dvi.DocVersionConfig.SelectedSlave);
|
||||
string key = string.Format("{0}.{1}.{2}", ROFstID, dvi.DocVersionConfig.MaxSlaveIndex, dvi.DocVersionConfig.SelectedSlave); if (!dicLookups.ContainsKey(key))
|
||||
string key = string.Format("{0}.{1}.{2}", ROFstID, dvi.DocVersionConfig.MaxSlaveIndex, dvi.DocVersionConfig.SelectedSlave);
|
||||
if (!dicLookups.ContainsKey(key))
|
||||
dicLookups.Add(key, new ROFSTLookup(this, dvi));
|
||||
return dicLookups[key];
|
||||
}
|
||||
|
Reference in New Issue
Block a user