close #3212 Fixed: Document payment change account currency then changed symbol issue
This commit is contained in:
parent
90b30b98a0
commit
479163e26e
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue