- Löschrechtprüfung an FaC angepasst. - Ziele und Maßnahmen sind alphabetisch absteigend sortiert wie im FaC. - Reports bei Klienten verbessert. - Bargeldtransaktionshistorie eingebaut.
48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
namespace BS.Shared.DataContracts
|
|
{
|
|
public partial class BargeldtransaktionshistoryDC
|
|
{
|
|
public string HistoryTypeString
|
|
{
|
|
get
|
|
{
|
|
switch(ChangeType)
|
|
{
|
|
case StatementType.Insert:
|
|
return "Neu angelegt";
|
|
case StatementType.Update:
|
|
return "Geändert";
|
|
case StatementType.Delete:
|
|
return "Gelöscht";
|
|
case StatementType.Signature:
|
|
return "Unterschrift";
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
|
|
public string SignatureStateString
|
|
{
|
|
get
|
|
{
|
|
switch(SignatureState)
|
|
{
|
|
case SignatureStateType.None:
|
|
return "Keine";
|
|
case SignatureStateType.Invalid:
|
|
return "Ungültig";
|
|
case SignatureStateType.Valid:
|
|
return "Gültig";
|
|
case SignatureStateType.AutomaticallyDeleted:
|
|
return "Autmatisch gelöscht";
|
|
case SignatureStateType.ManuallyDeleted:
|
|
return "Manuell gelöscht";
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|