Volkswagen.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Xml.Linq;
  5. using GCHR.Model;
  6. using GCHR.Model.Konto;
  7. namespace GCHR.Mandantenschnittstelle
  8. {
  9. class Volkswagen : IMandant
  10. {
  11. /// <summary>
  12. /// V = Volkswagen,
  13. /// A = Audi,
  14. /// S = Seat,
  15. /// C = Skoda,
  16. /// E = Bentley,
  17. /// L = Lamborghini
  18. /// </summary>
  19. enum Hauptmarke { V, A, S, C, E, L };
  20. /// <summary>
  21. /// 1 = Istdaten,
  22. /// 2 = Plandaten
  23. /// </summary>
  24. private const string Level = "1";
  25. private const string Country = "DEU";
  26. private const string Currency = "EUR";
  27. private static readonly XNamespace Tns = "http://xmldefs.volkswagenag.com/Retail/AccountBalanceDTS/V1";
  28. private static XNamespace _tns1 = "http://xmldefs.volkswagenag.com/DD/BasicTypes";
  29. private static XNamespace _xsi = "http://www.w3.org/2001/XMLSchema-instance";
  30. private XDocument _xmlDocument;
  31. private readonly XElement _accounts = new XElement(Tns + "Accounts");
  32. private readonly Konfiguration _config = Konfiguration.GetInstance();
  33. public bool BalanceDatei
  34. {
  35. get
  36. {
  37. return true;
  38. }
  39. }
  40. public bool AccountsDatei
  41. {
  42. get { return false; }
  43. }
  44. public string BalanceHeader
  45. {
  46. get
  47. {
  48. _xmlDocument = new XDocument();
  49. _xmlDocument.Add(new XElement(Tns + "ShowAccountBalance",
  50. new XAttribute(XNamespace.Xmlns + "tns", Tns),
  51. // new XAttribute(XNamespace.Xmlns + "tns1", tns1),
  52. // new XAttribute(XNamespace.Xmlns + "xsi", xsi),
  53. // new XAttribute(xsi + "schemaLocation", "http://xmldefs.volkswagenag.com/Retail/AccountBalanceDTS/V1 AccountBalanceDTS.xsd"),
  54. new XElement(Tns + "PartnerKey",
  55. new XElement(Tns + "Country", Country),
  56. new XElement(Tns + "Brand", Hauptmarke.V),
  57. new XElement(Tns + "PartnerNumber", _config.Haendlernummer)
  58. ),
  59. new XElement(Tns + "IsCumulative", "true"),
  60. new XElement(Tns + "AccountingDate",
  61. new XElement(Tns + "AccountingMonth", _config.AktuellePeriode.Monat),
  62. new XElement(Tns + "AccountingYear", _config.AktuellePeriode.Jahr)
  63. ),
  64. new XElement(Tns + "Currency", Currency),
  65. new XElement(Tns + "Level", Level),
  66. _accounts
  67. ));
  68. return "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>";
  69. /*
  70. return String.Format("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" + Environment.NewLine +
  71. "<tns:ShowAccountBalance" + Environment.NewLine +
  72. " xmlns:tns=\"http://xmldefs.volkswagenag.com/Retail/AccountBalanceDTS/V1\" " + Environment.NewLine +
  73. " xmlns:tns1=\"http://xmldefs.volkswagenag.com/DD/BasicTypes\" " + Environment.NewLine +
  74. " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" " + Environment.NewLine +
  75. " xsi:schemaLocation=\"http://xmldefs.volkswagenag.com/Retail/AccountBalanceDTS/V1 AccountBalanceDTS.xsd\">" + Environment.NewLine +
  76. " <tns:PartnerKey>" + Environment.NewLine +
  77. " <tns:Country>{0}</tns:Country>" + Environment.NewLine +
  78. " <tns:Brand>{1}</tns:Brand>" + Environment.NewLine +
  79. " <tns:PartnerNumber>{2}</tns:PartnerNumber>" + Environment.NewLine +
  80. " </tns:PartnerKey>" + Environment.NewLine +
  81. " <tns:IsCumulative>true</tns:IsCumulative>" + Environment.NewLine +
  82. " <tns:AccountingDate>" + Environment.NewLine +
  83. " <tns:AccountingMonth>{3}</tns:AccountingMonth>" + Environment.NewLine +
  84. " <tns:AccountingYear>{4}</tns:AccountingYear>" + Environment.NewLine +
  85. " </tns:AccountingDate>" + Environment.NewLine +
  86. " <tns:Currency>{5}</tns:Currency>" + Environment.NewLine +
  87. " <tns:Level>{6}</tns:Level>" + Environment.NewLine +
  88. " <tns:Accounts>",
  89. country, Hauptmarke.V, config.Händlernummer, Konto.aktuellePeriode.Monat, Konto.aktuellePeriode.Jahr, currency, level);
  90. */
  91. }
  92. }
  93. public string BalanceFooter
  94. {
  95. get
  96. {
  97. return _xmlDocument.ToString();
  98. }
  99. }
  100. public string BalanceBody(HaendlerKonto konto)
  101. {
  102. _accounts.Add(new XElement(Tns + "Account",
  103. new XElement(Tns + "ProfitCenter", "00"),
  104. new XElement(Tns + "AccountKey",
  105. KontonummerFormatieren(konto)
  106. // accountAttributes(kto)
  107. ),
  108. new XElement(Tns + "AccountValue", AccountValue(konto))
  109. ));
  110. return String.Empty;
  111. }
  112. private XAttribute[] AccountAttributes(HaendlerKonto kto)
  113. {
  114. return (from attrib in AccountKeyDict(kto)
  115. select new XAttribute(attrib.Key, attrib.Value)).ToArray();
  116. }
  117. private static Dictionary<string, string> AccountKeyDict(HaendlerKonto konto)
  118. {
  119. var marke = konto.Marke.PadRight(6, '?');
  120. var kontonummer = konto.Kontonummer.PadRight(10, '?');
  121. return new Dictionary<string, string>
  122. {
  123. {"Brand", marke.Substring(0, 2)},
  124. {"ModelCode", marke.Substring(2)},
  125. {"Account", kontonummer.Substring(0, 4)},
  126. {"CostCentre", kontonummer.Substring(4, 2)},
  127. {"TradeChannel", kontonummer.Substring(6, 2)},
  128. {"CostUnit", kontonummer.Substring(8, 2)},
  129. {"Location", konto.Betrieb},
  130. {"TaxCode", "000"}
  131. };
  132. }
  133. private static string AccountValue(HaendlerKonto kto)
  134. {
  135. /*
  136. if (kto.KontoTyp == KontoTypen.SuSa)
  137. {
  138. return String.Format("{0:-0.00;+0.00;+0.00}", kto.Summe).Replace(',', '.');
  139. }*/
  140. return String.Format("{0:+0.00;-0.00;+0.00}", kto.Summe).Replace(',', '.');
  141. }
  142. public string AccountsHeader
  143. {
  144. get
  145. {
  146. return String.Empty;
  147. }
  148. }
  149. public string AccountsBody(HaendlerKonto kto)
  150. {
  151. return String.Empty;
  152. }
  153. public string AccountsFooter
  154. {
  155. get
  156. {
  157. return String.Empty;
  158. }
  159. }
  160. public string KontonummerFormatieren(HaendlerKonto konto)
  161. {
  162. return String.Join("", AccountKeyDict(konto).Values.ToArray());
  163. }
  164. }
  165. }