diff --git a/src/components/ADempiere/Form/VPOS/Order/line/index.vue b/src/components/ADempiere/Form/VPOS/Order/line/index.vue index 9b8dfec5..0d3ad55f 100644 --- a/src/components/ADempiere/Form/VPOS/Order/line/index.vue +++ b/src/components/ADempiere/Form/VPOS/Order/line/index.vue @@ -31,6 +31,7 @@ :ref="field.columnName" :metadata-field="{ ...field, + labelCurrency: currencyPointOfSales, isReadOnly: !isModifyPrice }" /> @@ -156,8 +157,15 @@ export default { }, validatePin() { return this.$store.state['pointOfSales/orderLine/index'].validatePin + }, + currencyPointOfSales() { + if (!this.isEmptyValue(this.currentPointOfSales)) { + return this.currentPointOfSales.priceList.currency + } + return {} } }, + watch: { showField(value) { this.visible = false