Volkswagen.cs 7.5 KB

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