This commit is contained in:
2010-07-23 15:58:52 +00:00
parent 66e7690661
commit 5a924f4a0a
5 changed files with 305 additions and 195 deletions

View File

@@ -958,7 +958,7 @@ namespace VEPROMS.CSLA.Library
#region ProcedureConfig
[NonSerialized]
private ProcedureConfig _ProcedureConfig = null;
public ProcedureConfig.PrintChangeBar PrintChangeBar
public PrintChangeBar PrintChangeBar
{
get
{
@@ -966,7 +966,7 @@ namespace VEPROMS.CSLA.Library
return _ProcedureConfig.Print_ChangeBar;
}
}
public ProcedureConfig.PrintChangeBarLoc PrintChangeBarLoc
public PrintChangeBarLoc PrintChangeBarLoc
{
get
{
@@ -974,7 +974,7 @@ namespace VEPROMS.CSLA.Library
return _ProcedureConfig.Print_ChangeBarLoc;
}
}
public ProcedureConfig.PrintChangeBarText PrintChangeBarText
public PrintChangeBarText PrintChangeBarText
{
get
{
@@ -1485,6 +1485,22 @@ namespace VEPROMS.CSLA.Library
}
}
private DocVersionInfo _MyDocVersion = null;
public DocVersionInfo MyDocVersion
{
get
{
if (_MyDocVersion == null)
{
if (ActiveParent is DocVersionInfo)
_MyDocVersion = ActiveParent as DocVersionInfo;
else
_MyDocVersion = (ActiveParent as ItemInfo).MyDocVersion;
}
return _MyDocVersion;
}
}
private IVEDrillDownReadOnly _ActiveParent = null;
public IVEDrillDownReadOnly MyActiveParent { get { return _ActiveParent; } }
public IVEDrillDownReadOnly ActiveParent