Olbrich Handel & Dienstl.
Aktives Mitglied
Moin,
standardmäßig wird die Gesamtnettosumme bei Verwendung beider Steuersätze in jeweils einer Zeile ausgegeben. Wie kann ich diese aber in einer Zeile ausweisen?
Standardmäßig steht nachfolgender Code in Total Block:
cond(@OneCurrency, LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture), "") +
cond(@TwoCurrencies,
cond(Report.CurrencyISO <> Report.ShipFromCountryCurrencyISO,
LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture) + " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
, cond(Report.CurrencyISO <> Report.TaxCountryCurrencyISO,
LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture) + " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)
, LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)))
, "") +
cond(@ThreeCurrencies, LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture), "")
Besten Dank schon mal im Voraus.
standardmäßig wird die Gesamtnettosumme bei Verwendung beider Steuersätze in jeweils einer Zeile ausgegeben. Wie kann ich diese aber in einer Zeile ausweisen?
Standardmäßig steht nachfolgender Code in Total Block:
cond(@OneCurrency, LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture), "") +
cond(@TwoCurrencies,
cond(Report.CurrencyISO <> Report.ShipFromCountryCurrencyISO,
LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture) + " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
, cond(Report.CurrencyISO <> Report.TaxCountryCurrencyISO,
LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture) + " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)
, LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)))
, "") +
cond(@ThreeCurrencies, LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture), "")
Besten Dank schon mal im Voraus.