KontoTyp.cs 2.6 KB

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