|
@@ -111,45 +111,41 @@ namespace GCHR.Mandantenschnittstelle
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public string BalanceBody(HaendlerKonto kto)
|
|
|
+ public string BalanceBody(HaendlerKonto konto)
|
|
|
{
|
|
|
_accounts.Add(new XElement(Tns + "Account",
|
|
|
new XElement(Tns + "ProfitCenter", "00"),
|
|
|
new XElement(Tns + "AccountKey",
|
|
|
- AccountKey(kto)
|
|
|
+ KontonummerFormatieren(konto)
|
|
|
// accountAttributes(kto)
|
|
|
),
|
|
|
- new XElement(Tns + "AccountValue", AccountValue(kto))
|
|
|
+ new XElement(Tns + "AccountValue", AccountValue(konto))
|
|
|
));
|
|
|
return String.Empty;
|
|
|
}
|
|
|
|
|
|
- private string AccountKey(HaendlerKonto kto)
|
|
|
- {
|
|
|
- return String.Join("", AccountKeyDict(kto).Values.ToArray());
|
|
|
- }
|
|
|
-
|
|
|
- private object[] AccountAttributes(HaendlerKonto kto)
|
|
|
+ private XAttribute[] AccountAttributes(HaendlerKonto kto)
|
|
|
{
|
|
|
return (from attrib in AccountKeyDict(kto)
|
|
|
select new XAttribute(attrib.Key, attrib.Value)).ToArray();
|
|
|
}
|
|
|
|
|
|
- private static Dictionary<string, string> AccountKeyDict(HaendlerKonto kto)
|
|
|
+ private static Dictionary<string, string> AccountKeyDict(HaendlerKonto konto)
|
|
|
{
|
|
|
- var marke = kto.Marke.PadRight(6, '?');
|
|
|
- var kontonummer = kto.Kontonummer.PadRight(10, '?');
|
|
|
-
|
|
|
- var dict = new Dictionary<string, string>();
|
|
|
- dict.Add("Brand", marke.Substring(0,2));
|
|
|
- dict.Add("ModelCode", marke.Substring(2));
|
|
|
- dict.Add("Account", kontonummer.Substring(0,4));
|
|
|
- dict.Add("CostCentre", kontonummer.Substring(4, 2));
|
|
|
- dict.Add("TradeChannel", kontonummer.Substring(6, 2));
|
|
|
- dict.Add("CostUnit", kontonummer.Substring(8, 2));
|
|
|
- dict.Add("Location", kto.Betrieb);
|
|
|
- dict.Add("TaxCode", "000");
|
|
|
- return dict;
|
|
|
+ var marke = konto.Marke.PadRight(6, '?');
|
|
|
+ var kontonummer = konto.Kontonummer.PadRight(10, '?');
|
|
|
+
|
|
|
+ return new Dictionary<string, string>
|
|
|
+ {
|
|
|
+ {"Brand", marke.Substring(0, 2)},
|
|
|
+ {"ModelCode", marke.Substring(2)},
|
|
|
+ {"Account", kontonummer.Substring(0, 4)},
|
|
|
+ {"CostCentre", kontonummer.Substring(4, 2)},
|
|
|
+ {"TradeChannel", kontonummer.Substring(6, 2)},
|
|
|
+ {"CostUnit", kontonummer.Substring(8, 2)},
|
|
|
+ {"Location", konto.Betrieb},
|
|
|
+ {"TaxCode", "000"}
|
|
|
+ };
|
|
|
}
|
|
|
|
|
|
private static string AccountValue(HaendlerKonto kto)
|
|
@@ -171,6 +167,11 @@ namespace GCHR.Mandantenschnittstelle
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public string AccountsBody(HaendlerKonto kto)
|
|
|
+ {
|
|
|
+ return String.Empty;
|
|
|
+ }
|
|
|
+
|
|
|
public string AccountsFooter
|
|
|
{
|
|
|
get
|
|
@@ -179,9 +180,9 @@ namespace GCHR.Mandantenschnittstelle
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public string AccountsBody(HaendlerKonto kto)
|
|
|
+ public string KontonummerFormatieren(HaendlerKonto konto)
|
|
|
{
|
|
|
- return String.Empty;
|
|
|
+ return String.Join("", AccountKeyDict(konto).Values.ToArray());
|
|
|
}
|
|
|
}
|
|
|
}
|