Datenimport.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. if (Data.ImportdatenSichern)
  35. {
  36. ImportdatenSichern(import);
  37. }
  38. var konten = ImportInKontenUmwandeln(import);
  39. ReportProgress(80);
  40. if (_kontoTyp == KontoTypen.SuSa)
  41. {
  42. SummeSaldiPruefen(konten.Sum(konto => konto.Summe));
  43. }
  44. Data.AddKonten(konten);
  45. }
  46. private IList<string> Importieren()
  47. {
  48. if (Data.Offlinemodus && File.Exists(Dateiname))
  49. {
  50. return File.ReadAllLines(Dateiname).ToList();
  51. }
  52. return (Config.WebserviceAktiv) ? KontenVonWebserviceLaden() : KontenVonOdbcLaden();
  53. }
  54. private IList<string> KontenVonWebserviceLaden()
  55. {
  56. var args = new NameValueCollection
  57. {
  58. { "dsn", "odbc:" + Config.OdbcConnectionString },
  59. { "query", QueryStr }
  60. };
  61. using (var web = new WebClient())
  62. {
  63. web.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
  64. var responsebytes = web.UploadValues(Config.Webservice, "POST", args);
  65. return Encoding.UTF8.GetString(responsebytes).Split(new[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries).ToList();
  66. }
  67. }
  68. private IList<string> KontenVonOdbcLaden()
  69. {
  70. var result = new List<string>();
  71. using (var con = new OdbcConnection(Config.OdbcConnectionString))
  72. {
  73. con.ConnectionTimeout = 300;
  74. con.Open();
  75. var query = new OdbcCommand(QueryStr, con) {CommandTimeout = 300};
  76. var reader = query.ExecuteReader();
  77. while (reader.Read())
  78. {
  79. var zeile = reader.GetString(0).Trim();
  80. for (var i = 1; i < reader.FieldCount; i++)
  81. {
  82. zeile += ";" + reader.GetString(i).Trim();
  83. }
  84. result.Add(zeile);
  85. }
  86. reader.Close();
  87. con.Close();
  88. }
  89. return result;
  90. }
  91. private void ImportdatenSichern(IEnumerable<string> import)
  92. {
  93. using (var sw = new StreamWriter(Dateiname, false, Constants.CsvEncoding))
  94. {
  95. sw.WriteLine(string.Join(Environment.NewLine, import.ToArray()));
  96. }
  97. }
  98. private string Dateiname
  99. {
  100. get { return String.Format(Config.Importdaten, Config.AktuellePeriode, _kontoTyp); }
  101. }
  102. private IList<HaendlerKonto> ImportInKontenUmwandeln(IList<string> import)
  103. {
  104. if (import == null || !import.Any())
  105. {
  106. ReportProgress(90, "Die Abfrage '" + _kontoTyp + "' lieferte keine Ergebnisse.");
  107. return new List<HaendlerKonto>();
  108. }
  109. try
  110. {
  111. return (from tempZeile in import
  112. select tempZeile.Split(';')
  113. into feld
  114. group feld by (feld[0] + ";" + feld[3])
  115. into kontoSaldi
  116. select NeuesKonto(kontoSaldi.ToList())).ToList();
  117. }
  118. catch (IndexOutOfRangeException ex)
  119. {
  120. Logger.Info("Fehler in der Abfrage '" + _kontoTyp + "':" + ex.Message);
  121. if (import.Count() > 10)
  122. {
  123. Logger.Info("Erste Zeile: " + import[0]);
  124. }
  125. else
  126. {
  127. Logger.Info("Import: " + Environment.NewLine + string.Join(Environment.NewLine, import.ToArray()));
  128. }
  129. ReportProgress(90, "Fehler in der Abfrage '" + _kontoTyp + "':" + Environment.NewLine + "Erste Zeile: " + import[0]);
  130. return new List<HaendlerKonto>();
  131. }
  132. }
  133. private void SummeSaldiPruefen(Decimal summe)
  134. {
  135. var summeString = String.Format(Constants.Zahlenformat, "{0:c}", summe);
  136. Logger.Progress("Summe über alle SuSa-Konten: " + summeString);
  137. if (summe != 0.0m)
  138. {
  139. ReportProgress(75, "Beim Import der SuSa-Konten trat ein Fehler auf." + Environment.NewLine +
  140. "Die Summe über alle SuSa-Konten ist " + summeString);
  141. }
  142. }
  143. private HaendlerKonto NeuesKonto(IList<string[]> kontoSaldi)
  144. {
  145. var neuesKonto = new HaendlerKonto(_kontoTyp);
  146. var feld = kontoSaldi.First();
  147. neuesKonto.Kontonummer = Config.HaendlerKontonummerFormatieren(feld[0].Trim());
  148. neuesKonto.DepartmentImport = feld[3].Trim();
  149. Config.DepartmentAnpassen(neuesKonto);
  150. if (PeriodeMitgeliefert(feld))
  151. {
  152. foreach (var saldo in kontoSaldi)
  153. {
  154. neuesKonto.SaldoZuordnen(saldo[4].Substring(0,6), ToDecimal(saldo[1]), ToDecimal(saldo[2]));
  155. }
  156. }
  157. else
  158. {
  159. neuesKonto.Soll = (from saldo in kontoSaldi
  160. select ToDecimal(saldo[1])).Sum();
  161. neuesKonto.Haben = (from saldo in kontoSaldi
  162. select ToDecimal(saldo[2])).Sum();
  163. }
  164. if (KontoartMitgeliefert(feld))
  165. {
  166. neuesKonto.Kontoart = feld[5];
  167. }
  168. return neuesKonto;
  169. }
  170. private static Decimal ToDecimal(string feld)
  171. {
  172. return Decimal.Parse(feld, Constants.ZahlenformatImport);
  173. }
  174. private static bool PeriodeMitgeliefert(IEnumerable<string> feld)
  175. {
  176. return feld.Count() > 4;
  177. }
  178. private static bool KontoartMitgeliefert(IEnumerable<string> feld)
  179. {
  180. return feld.Count() > 5;
  181. }
  182. }
  183. }