Hallo,
wir haben das Problem, dass bei den Rechnungen der Zahlbetrag (bei zwei oder mehreren Zahlungen) nicht richtig angezeigt wird.
Auf den Aufträgen wird alles richtig angezeigt:
Auftrag:

Rechnung:

In den Druckvorlagen ist bei beiden derselbe Code hinterlegt:
cond(@OneCurrency, LocCurrL$(Report.TotalGrossPrice, @InvoiceCulture), "") +
cond(@TwoCurrencies,
cond(Report.CurrencyISO <> Report.ShipFromCountryCurrencyISO,
LocCurrL$(Report.TotalGrossPrice,@InvoiceCulture) + " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
, cond(Report.CurrencyISO <> Report.TaxCountryCurrencyISO,
LocCurrL$(Report.TotalGrossPrice, @InvoiceCulture) + " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)
, LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)))
, "") +
cond(@ThreeCurrencies, LocCurrL$(Report.TotalGrossPrice, @InvoiceCulture)
+ " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture), "")
Woran könnte das liegen?
wir haben das Problem, dass bei den Rechnungen der Zahlbetrag (bei zwei oder mehreren Zahlungen) nicht richtig angezeigt wird.
Auf den Aufträgen wird alles richtig angezeigt:
Auftrag:

Rechnung:

In den Druckvorlagen ist bei beiden derselbe Code hinterlegt:
cond(@OneCurrency, LocCurrL$(Report.TotalGrossPrice, @InvoiceCulture), "") +
cond(@TwoCurrencies,
cond(Report.CurrencyISO <> Report.ShipFromCountryCurrencyISO,
LocCurrL$(Report.TotalGrossPrice,@InvoiceCulture) + " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
, cond(Report.CurrencyISO <> Report.TaxCountryCurrencyISO,
LocCurrL$(Report.TotalGrossPrice, @InvoiceCulture) + " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)
, LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)))
, "") +
cond(@ThreeCurrencies, LocCurrL$(Report.TotalGrossPrice, @InvoiceCulture)
+ " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(Report.TotalGrossPrice / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture), "")
Woran könnte das liegen?