diff --git a/resources/assets/js/components/AkauntingCurrencyConversion.vue b/resources/assets/js/components/AkauntingCurrencyConversion.vue index 691c54767..58122ca50 100644 --- a/resources/assets/js/components/AkauntingCurrencyConversion.vue +++ b/resources/assets/js/components/AkauntingCurrencyConversion.vue @@ -2,90 +2,116 @@
{{ texts[0] }} - {{ texts[1] }} - + decimal: this.currencySymbol.decimal_mark, + thousands: this.currencySymbol.thousands_separator, + prefix: (this.currencySymbol.symbol_first) ? this.currencySymbol.symbol : '', + suffix: (!this.currencySymbol.symbol_first) ? this.currencySymbol.symbol : '', + precision: parseInt(this.currencySymbol.precision), + masked: true + }" + :value="price" + disabled size="5" + masked + class="disabled-money text-right mr-1 js-conversion-input text-xs px-1" + > + + + {{ texts[1] }} + + +