diff --git a/shared/currency/currency-format.bpmn b/shared/currency/currency-format.bpmn index 83692f5c..171a6f31 100644 --- a/shared/currency/currency-format.bpmn +++ b/shared/currency/currency-format.bpmn @@ -52,7 +52,14 @@ elif curSymbolLocation == "Right" # Add Currency Code curAmount_str = curAmount_str + " " + curCode -# +# Check if separaters need to be swapped +if curThousandsSeparator == ".": + main_currency, fractional_currency = currency.split(".")[0], currency.split(".")[1] + new_main_currency = main_currency.replace(",", ".") + currency = new_main_currency + fractional_separator + fractional_currency + + + "curSymbol": "$", "addNew": false,