Datenimport.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.Specialized;
  4. using System.Data.Odbc;
  5. using System.IO;
  6. using System.Linq;
  7. using System.Net;
  8. using System.Text;
  9. using GCHR.Model;
  10. using GCHR.Model.Konto;
  11. namespace GCHR.Control.Tasks
  12. {
  13. class Datenimport : Task
  14. {
  15. public static Datenimport DatenimportSuSa(int id, string name)
  16. {
  17. return new Datenimport(id, name) {_kontoTyp = KontoTypen.SuSa};
  18. }
  19. public static Datenimport DatenimportStat(int id, string name)
  20. {
  21. return new Datenimport(id, name) {_kontoTyp = KontoTypen.Stat};
  22. }
  23. private Datenimport(int id, string name)
  24. : base(id, name) { }
  25. private KontoTypen _kontoTyp;
  26. private string QueryStr
  27. {
  28. get { return (_kontoTyp == KontoTypen.SuSa) ? Config.SuSaKontenQuery : Config.StatKontenQuery; }
  29. }
  30. protected override void AufgabeAusfuehren()
  31. {
  32. if (_kontoTyp == KontoTypen.Stat && !Config.StatKontenImportieren) return;
  33. var import = Importieren();
  34. Data.AddKonten(ImportInKontenUmwandeln(import));
  35. }
  36. private IEnumerable<string> Importieren()
  37. {
  38. List<string> import;
  39. if (Data.Offlinemodus && File.Exists(Dateiname))
  40. {
  41. import = File.ReadAllLines(Dateiname).ToList();
  42. }
  43. else if (Config.WebserviceAktiv)
  44. {
  45. import = KontenVonWebserviceLaden();
  46. }
  47. else
  48. {
  49. import = KontenVonOdbcLaden();
  50. }
  51. if (Data.ImportdatenSichern)
  52. {
  53. ImportdatenSichern(import);
  54. }
  55. return import;
  56. }
  57. private List<string> KontenVonWebserviceLaden()
  58. {
  59. var args = new NameValueCollection
  60. {
  61. { "dsn", "odbc:" + Config.OdbcConnectionString },
  62. { "query", QueryStr }
  63. };
  64. using (var web = new WebClient())
  65. {
  66. web.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
  67. var responsebytes = web.UploadValues(Config.Webservice, "POST", args);
  68. return Encoding.UTF8.GetString(responsebytes).Split(new[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries).ToList();
  69. }
  70. }
  71. private List<string> KontenVonOdbcLaden()
  72. {
  73. var result = new List<string>();
  74. using (var con = new OdbcConnection(Config.OdbcConnectionString))
  75. {
  76. con.ConnectionTimeout = 300;
  77. con.Open();
  78. var query = new OdbcCommand(QueryStr, con) {CommandTimeout = 300};
  79. var reader = query.ExecuteReader();
  80. while (reader.Read())
  81. {
  82. var zeile = reader.GetString(0).Trim();
  83. for (var i = 1; i < reader.FieldCount; i++)
  84. {
  85. zeile += ";" + reader.GetString(i).Trim();
  86. }
  87. result.Add(zeile);
  88. }
  89. reader.Close();
  90. con.Close();
  91. }
  92. return result;
  93. }
  94. private void ImportdatenSichern(List<string> import)
  95. {
  96. using (var sw = new StreamWriter(Dateiname, false, Constants.CsvEncoding))
  97. {
  98. sw.WriteLine(String.Join(Environment.NewLine, import.ToArray()));
  99. }
  100. }
  101. private string Dateiname
  102. {
  103. get { return String.Format(Config.Importdaten, Config.AktuellePeriode, _kontoTyp); }
  104. }
  105. private List<HaendlerKonto> ImportInKontenUmwandeln(IEnumerable<string> import)
  106. {
  107. var konten = (from tempZeile in import
  108. select tempZeile.Split(';') into feld
  109. group feld by (feld[0] + ";" + feld[3]) into kontoSaldi
  110. select NeuesKonto(kontoSaldi.ToList())).ToList();
  111. if (_kontoTyp == KontoTypen.SuSa)
  112. {
  113. SummeSaldiPruefen(konten.Sum(konto => konto.Summe));
  114. }
  115. ReportProgress(80);
  116. return konten;
  117. }
  118. private void SummeSaldiPruefen(Decimal summe)
  119. {
  120. var summeString = String.Format(Constants.Zahlenformat, "{0:c}", summe);
  121. Logger.Progress("Summe über alle SuSa-Konten: " + summeString);
  122. if (summe != 0.0m)
  123. {
  124. ReportProgress(75, "Beim Import der SuSa-Konten trat ein Fehler auf." + Environment.NewLine +
  125. "Die Summe über alle SuSa-Konten ist " + summeString);
  126. }
  127. }
  128. private HaendlerKonto NeuesKonto(IList<string[]> kontoSaldi)
  129. {
  130. var neuesKonto = new HaendlerKonto(_kontoTyp);
  131. var feld = kontoSaldi.First();
  132. neuesKonto.Kontonummer = Config.HaendlerKontonummerFormatieren(feld[0].Trim());
  133. neuesKonto.DepartmentImport = feld[3].Trim();
  134. Config.DepartmentAnpassen(neuesKonto);
  135. if (PeriodeMitgeliefert(feld))
  136. {
  137. foreach (var saldo in kontoSaldi)
  138. {
  139. neuesKonto.SaldoZuordnen(saldo[4].Substring(0,6), ToDecimal(saldo[1]), ToDecimal(saldo[2]));
  140. }
  141. }
  142. else
  143. {
  144. neuesKonto.Soll = (from saldo in kontoSaldi
  145. select ToDecimal(saldo[1])).Sum();
  146. neuesKonto.Haben = (from saldo in kontoSaldi
  147. select ToDecimal(saldo[2])).Sum();
  148. }
  149. if (KontoartMitgeliefert(feld))
  150. {
  151. neuesKonto.Kontoart = feld[5];
  152. }
  153. return neuesKonto;
  154. }
  155. private static Decimal ToDecimal(string feld)
  156. {
  157. return Decimal.Parse(feld, Constants.ZahlenformatImport);
  158. }
  159. private static bool PeriodeMitgeliefert(IEnumerable<string> feld)
  160. {
  161. return feld.Count() > 4;
  162. }
  163. private static bool KontoartMitgeliefert(IEnumerable<string> feld)
  164. {
  165. return feld.Count() > 5;
  166. }
  167. }
  168. }