Periode.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. using System;
  2. using System.Globalization;
  3. using System.Text.RegularExpressions;
  4. namespace GCHR.Model
  5. {
  6. public class UngueltigePeriodeException : Exception
  7. {
  8. }
  9. public class Periode
  10. {
  11. public static string ErsterMonatImGeschaeftsjahr { get; set; }
  12. public static DateipfadeXml Dateipfade { get; set; }
  13. public string Jahr;
  14. public string Monat;
  15. public string JahrZweistellig { get { return Jahr.Substring(2, 2); } }
  16. private readonly bool _keinJahresabschluss;
  17. public Periode(string periode)
  18. : this(periode, false)
  19. {
  20. }
  21. public Periode(string periode, bool keinJahresabschluss)
  22. {
  23. if (string.IsNullOrEmpty(ErsterMonatImGeschaeftsjahr))
  24. {
  25. ErsterMonatImGeschaeftsjahr = "01";
  26. }
  27. if (Dateipfade == null)
  28. {
  29. Dateipfade = new DateipfadeXml();
  30. }
  31. if (periode.Length != 6 || !Regex.IsMatch(periode, @"2[012][0-9][0-9][01][0-9]")) throw new UngueltigePeriodeException();
  32. Jahr = periode.Substring(0, 4);
  33. Monat = periode.Substring(4, 2);
  34. var monat = Int32.Parse(Monat);
  35. if (monat > 12 || monat < 1) throw new UngueltigePeriodeException();
  36. _keinJahresabschluss = keinJahresabschluss;
  37. }
  38. public Periode Jahresbeginn
  39. {
  40. get { return Jahresbeginn2(false); }
  41. }
  42. public Periode Bilanzbeginn
  43. {
  44. get { return Jahresbeginn2(_keinJahresabschluss); }
  45. }
  46. private Periode Jahresbeginn2(bool keinJahresabschluss)
  47. {
  48. var aktJahr = Int32.Parse(Jahr);
  49. if (String.Compare(Monat, ErsterMonatImGeschaeftsjahr, StringComparison.Ordinal) < 0) aktJahr--;
  50. if (keinJahresabschluss) aktJahr--;
  51. return new Periode(aktJahr + ErsterMonatImGeschaeftsjahr);
  52. }
  53. public string Vormonat (int verschiebung)
  54. {
  55. var monat = Int32.Parse(Monat);
  56. var jahr = Int32.Parse(Jahr);
  57. monat -= verschiebung;
  58. if (monat < 1)
  59. {
  60. monat += 12;
  61. jahr--;
  62. }
  63. if (monat > 12)
  64. {
  65. monat -= 12;
  66. jahr++;
  67. }
  68. return (jahr + monat.ToString(CultureInfo.InvariantCulture).PadLeft(2, '0'));
  69. }
  70. public Periode Vorgaenger { get { return new Periode(Vormonat(1)); } }
  71. public Periode Nachfolger { get { return new Periode(Vormonat(-1)); } }
  72. public override string ToString()
  73. {
  74. return (Jahr + Monat);
  75. }
  76. public string Klartext
  77. {
  78. get { return (Monat + "/" + Jahr); }
  79. }
  80. public string BalanceDatei
  81. {
  82. get
  83. {
  84. return String.Format(Dateipfade.ExportBalance, Jahr, Monat, Jahresbeginn.Jahr);
  85. }
  86. }
  87. public string AccountsDatei
  88. {
  89. get
  90. {
  91. return String.Format(Dateipfade.ExportAccounts, Jahr, Monat, Jahresbeginn.Jahr);
  92. }
  93. }
  94. public string LogDatei
  95. {
  96. get
  97. {
  98. var datei = String.Format(Dateipfade.ExportLog, Jahr, Monat, Jahresbeginn.Jahr);
  99. return datei;
  100. }
  101. }
  102. public string ProtokollDatei
  103. {
  104. get
  105. {
  106. return String.Format(Dateipfade.ExportProtokoll, Jahr, Monat, Jahresbeginn.Jahr);
  107. }
  108. }
  109. public Ampelstatus Status
  110. {
  111. get { return Ampelstatus.Gelb; }
  112. }
  113. public string Stand
  114. {
  115. get { return "20.02.2013"; }
  116. }
  117. public string Info { get { return "Abweichung in Summe: 12.345 €"; } }
  118. }
  119. }