SageExporter - Unterscheidung Konto Fahrtpauschale

SupportOID=168622
This commit is contained in:
2026-07-21 10:00:34 +02:00
parent bb7ce87448
commit 806b2f7d28

View File

@@ -84,7 +84,11 @@ ib.AccountingPeriodEnd,
sb.Append(";");
sb.Append(String.Format("{0}", row[7])); // Sollkonto - Debitornr. Orga bzw. bei Allgemeiner Rechnung Dummy
sb.Append(";");
String hbnKto = "S82035";
String hbnKto = "S82035";
if (row[8].ToString().Contains("Fahrtpauschale"))
{
hbnKto = "S82029";
}
sb.Append(String.Format("{0}", hbnKto)); // Habenkonto
sb.Append(";");
sb.Append(String.Format("{0:0.00}", row[3]));