mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
fix: Show currency in Currency field
This commit is contained in:
parent
ca9e8fcbf3
commit
bdab355bdf
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user