close #3212 Fixed: Document payment change account currency then changed symbol issue

This commit is contained in:
Cüneyt Şentürk 2024-09-28 10:25:47 +01:00
parent 90b30b98a0
commit 479163e26e
1 changed files with 3 additions and 0 deletions

View File

@ -298,10 +298,13 @@ export default {
this.form.currency_code = response.data.currency_code;
this.form.currency_rate = response.data.currency_rate;
this.currency.code = response.data.currency_code;
this.currency.decimal = response.data.decimal_mark;
this.currency.thousands = response.data.thousands_separator;
this.currency.prefix = (response.data.symbol_first) ? response.data.symbol : '';
this.currency.suffix = (! response.data.symbol_first) ? response.data.symbol : '';
this.currency.symbol = response.data.symbol;
this.currency.symbol_first = response.data.symbol_first;
this.currency.precision = parseInt(response.data.precision);
this.onChangeCurrencyPaymentAccount(response.data.currency_code);