C2023-017: Added logic to filter the format list when selecting a format to be applied to a section #126

Merged
cglavan merged 4 commits from C2023-017 into Development 2023-10-03 11:34:24 -04:00
2 changed files with 822 additions and 761 deletions
Showing only changes of commit b83ec3520b - Show all commits

File diff suppressed because it is too large Load Diff

View File

@ -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)
{ {