2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00

fix: Show currency in Currency field

This commit is contained in:
Faris Ansari 2019-12-03 13:46:53 +05:30
parent ca9e8fcbf3
commit bdab355bdf

View File

@ -1,8 +1,66 @@
<template>
<div>
<div class="text-gray-600 text-sm mb-1" v-if="showLabel">
{{ df.label }}
</div>
<input
v-show="showInput"
ref="input"
:class="inputClasses"
:type="inputType"
:value="value"
:placeholder="inputPlaceholder"
:readonly="isReadOnly"
@blur="onBlur"
@focus="onFocus"
@input="e => $emit('input', e)"
/>
<div
v-show="!showInput"
:class="[inputClasses, 'cursor-text']"
@click="activateInput"
@focus="activateInput"
tabindex="0"
>
{{ formattedValue }}
</div>
</div>
</template>
<script>
import frappe from 'frappejs';
import { round } from 'frappejs/utils/numberFormat';
import Float from './Float';
export default {
name: 'Currency',
extends: Float
extends: Float,
data() {
return {
showInput: false,
currencySymbol: ''
};
},
methods: {
onFocus(e) {
this.showInput = true;
this.$emit('focus', e);
},
onBlur(e) {
this.showInput = false;
this.triggerChange(e.target.value);
},
activateInput() {
this.showInput = true;
this.$nextTick(() => {
this.focus();
});
}
},
computed: {
formattedValue() {
return frappe.format(this.value, this.df, this.doc);
}
}
};
</script>