C2023-017: Added logic to filter the format list when selecting a format to be applied to a section
This commit is contained in:
parent
350b943066
commit
b83ec3520b
File diff suppressed because it is too large
Load Diff
@ -192,6 +192,16 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return _UserID;
|
return _UserID;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private int _ApplicablePlant = 0;
|
||||||
|
public int ApplicablePlant
|
||||||
|
{
|
||||||
|
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||||
|
get
|
||||||
|
{
|
||||||
|
CanReadProperty("ApplicablePlant", true);
|
||||||
|
return _ApplicablePlant;
|
||||||
|
}
|
||||||
|
}
|
||||||
private int _FormatContentCount = 0;
|
private int _FormatContentCount = 0;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Count of FormatContents for this Format
|
/// Count of FormatContents for this Format
|
||||||
@ -518,6 +528,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
_FormatDocVersionCount = dr.GetInt32("DocVersionCount");
|
_FormatDocVersionCount = dr.GetInt32("DocVersionCount");
|
||||||
_FormatFolderCount = dr.GetInt32("FolderCount");
|
_FormatFolderCount = dr.GetInt32("FolderCount");
|
||||||
_ChildFormatCount = dr.GetInt32("ChildCount");
|
_ChildFormatCount = dr.GetInt32("ChildCount");
|
||||||
|
_ApplicablePlant = dr.GetInt32("ApplicablePlant");
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user