KontoTyp.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. using System;
  2. using System.Linq;
  3. namespace GCHR.Model.Uebersetzung
  4. {
  5. class KontoTyp
  6. {
  7. enum Typ { S, Q, M, V, D };
  8. enum Buchung { HH, HS, SH, SS };
  9. public KontoTyp(string typ)
  10. {
  11. if (typ.Length <= 0) return;
  12. _kontoTyp = TryParseKontoTyp(typ.Substring(0, 1));
  13. _negativ = typ.Contains('-');
  14. _alternativ = typ.Contains('A');
  15. if (_kontoTyp == Typ.V)
  16. {
  17. if (typ.Contains("HH")) _buchung = Buchung.HH;
  18. if (typ.Contains("HS")) _buchung = Buchung.HS;
  19. if (typ.Contains("SH")) _buchung = Buchung.SH;
  20. if (typ.Contains("SS")) _buchung = Buchung.SS;
  21. }
  22. }
  23. private static Typ TryParseKontoTyp(string typ)
  24. {
  25. try
  26. {
  27. return (Typ)Enum.Parse(typeof(Typ), typ);
  28. }
  29. catch (Exception)
  30. {
  31. return Typ.S;
  32. }
  33. }
  34. private readonly Typ _kontoTyp = Typ.S;
  35. private readonly bool _negativ;
  36. private readonly bool _alternativ;
  37. private readonly Buchung _buchung = Buchung.SH;
  38. public decimal Faktor
  39. {
  40. get { return (_negativ) ? -1m : 1m; }
  41. }
  42. public override bool Equals(object obj)
  43. {
  44. var typ = obj as KontoTyp;
  45. if (typ != null)
  46. {
  47. return EqualsTyp(typ._kontoTyp);
  48. }
  49. if (obj is Typ)
  50. {
  51. return EqualsTyp((Typ)obj);
  52. }
  53. var str = obj as string;
  54. if (str != null)
  55. {
  56. try
  57. {
  58. return EqualsTyp((Typ)Enum.Parse(typeof(Typ), str.Substring(0, 1)));
  59. }
  60. catch (Exception)
  61. {
  62. return false;
  63. }
  64. }
  65. return false;
  66. }
  67. private bool EqualsTyp(Typ typ)
  68. {
  69. if (typ == _kontoTyp)
  70. return true;
  71. if (typ == Typ.D || typ == Typ.D)
  72. return true;
  73. if ((typ == Typ.V && _kontoTyp == Typ.S) || (typ == Typ.S && _kontoTyp == Typ.V))
  74. return true;
  75. return false;
  76. }
  77. public override string ToString()
  78. {
  79. return _kontoTyp + ((_alternativ) ? "A" : "") + ((_kontoTyp == Typ.V) ? _buchung.ToString() : "") + ((_negativ) ? "-" : "");
  80. }
  81. public override int GetHashCode()
  82. {
  83. return ToString().GetHashCode();
  84. }
  85. }
  86. }