Neu Nur eine Währung bei der AB und Rechnung

Chirsqaio

Aktives Mitglied
3. März 2020
14
1
Hallo JTL Community,
leider werden auf unseren Dollar Rechnungen immer beide Währungen angezeigt.
Wisst Ihr wie man einstellen kann das es nur eine gibt? Und zwar die die hinterlegt ist?

Rechnung und AB.


cond(@OneCurrency, LocCurrL$(TotalsSalesOrder.NetPriceTotal, @InvoiceCulture), "") +

cond(@TwoCurrencies,
cond(Report.CurrencyISO <> Report.ShipFromCountryCurrencyISO,
LocCurrL$(TotalsSalesOrder.NetPriceTotal, @InvoiceCulture) + " / " +
LocCurrL$(TotalsSalesOrder.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
, cond(Report.CurrencyISO <> Report.TaxCountryCurrencyISO,
LocCurrL$(TotalsSalesOrder.NetPriceTotal, @InvoiceCulture) + " / " +
LocCurrL$(TotalsSalesOrder.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)
, LocCurrL$(TotalsSalesOrder.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(TotalsSalesOrder.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)))
, "") +


cond(@ThreeCurrencies, LocCurrL$(TotalsSalesOrder.NetPriceTotal, @InvoiceCulture)
+ " / " +
LocCurrL$(TotalsSalesOrder.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(TotalsSalesOrder.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture), "")

Ich freue mich auf eure Rückmeldung.

Chrisqaio
 

Ähnliche Themen