This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user