Added second overloaded method SetParentSectionAnDocVersion to ItemInfo class to support multi unit

Added IsApplicable property to ItemInfo class
Changed DisplayText method to handle <u> in text
Changed DisplayNumber methid to handle <U-ID> and <S\u8209?ID> in number
Added TransistionLookup class to suppport transition updates in multi unit
Added property MyLookup to ProcedureInfo class
Added GetItemAndChildrenByUnit method to ProcedureInfo class
Changed ProcedureConfig property of ProcedureInfo class to support multi unit
Removed AddToCache call in CopyPasteItemInfoFetch of ItemInfo class
Removed AddToCache call in NewItemInfoFetch method of ItemInfo class
This commit is contained in:
Rich
2012-12-04 22:58:08 +00:00
parent bdf8150326
commit 3036b5fb7d
2 changed files with 319 additions and 26 deletions

View File

@@ -394,7 +394,6 @@ namespace VEPROMS.CSLA.Library
else
tmp = DataPortal.Fetch<StepInfo>(new PastingPartCriteria(copyStartID, itemID, addType, type, fromType, DateTime.Now, Volian.Base.Library.VlnSettings.UserID));
}
AddToCache(tmp);
return tmp;
}
@@ -456,7 +455,6 @@ namespace VEPROMS.CSLA.Library
else
tmp = DataPortal.Fetch<StepInfo>(new AddingPartCriteria(itemID, addType, number, text, type, fromType, formatID, config, dts, userID));
}
AddToCache(tmp);
return tmp;
}
public void UpdateTransitionText()