Upped revision number to 1.8

C2020-033: 2021 UPGRADE Handling of incoming transitions on delete or review
This commit is contained in:
2021-01-06 15:07:57 +00:00
parent ba2e72baeb
commit fdd59a5d6b
18 changed files with 1564 additions and 1005 deletions

View File

@@ -149,6 +149,29 @@ namespace VEPROMS.CSLA.Library
get { return (_Folder != null ? _Folder.ShortName : _FolderInfo.ShortName); }
set { if (_Folder != null)_Folder.ShortName = value; }
}
// C2020-033: Handling of external transitions - let admin decide who can convert transitions to text
[Category("General")]
[DisplayName("Non-Admin Convert Incoming Transitions To Text")]
[RefreshProperties(RefreshProperties.All)]
[Description("Non-Admin Convert Incoming Transitions To Text")]
public bool General_IncTranCvtPerm
{
get
{
string s = _Xp["General", "IncTranCvtPemr"];// get the saved value
//Dont't bother getting parent value, this is stored on 'top' node
if (s == string.Empty)
return false;
if (s.ToUpper() == "TRUE") return true;
return false;
}
set
{
_Xp["General", "IncTranCvtPemr"] = value ? "TRUE" : "FALSE";
OnPropertyChanged("General_IncTranCvtPerm");
}
}
[Category("Format Settings")]
[DisplayName("Format")]
[Description("Format")]