diff --git a/src/components/ADempiere/Form/VPOS/BusinessPartner/addAddress.vue b/src/components/ADempiere/Form/VPOS/BusinessPartner/addAddress.vue index 1e77bcef53..5fbbf061dd 100644 --- a/src/components/ADempiere/Form/VPOS/BusinessPartner/addAddress.vue +++ b/src/components/ADempiere/Form/VPOS/BusinessPartner/addAddress.vue @@ -416,7 +416,8 @@ export default { } const newAddress = { uuid: customer.uuid, value: customer.value, taxId: customer.taxId, name: customer.name, addresses, posUuid: this.$store.getters.posAttributes.currentPointOfSales.uuid } newAddress.uuid = this.isEmptyValue(customer.uuid) ? this.$store.getters.getValueOfField({ containerUuid: this.$route.meta.uuid, columnName: 'C_BPartner_ID_UUID' }) : customer.uuid - newAddress.value = this.isEmptyValue(customer.value) ? this.addressToUpdate.value : customer.value + newAddress.value = this.isEmptyValue(this.$store.getters.getNewCustomer.value) ? this.addressToUpdate.value : this.$store.getters.getNewCustomer.value + newAddress.name = this.$store.getters.getNewCustomer.name updateCustomer(newAddress) .then(response => { const orderUuid = this.$store.getters.posAttributes.currentPointOfSales.currentOrder.uuid diff --git a/src/components/ADempiere/Form/VPOS/BusinessPartner/fieldsListSearch.js b/src/components/ADempiere/Form/VPOS/BusinessPartner/fieldsListSearch.js index 25076c1207..a497e50b34 100644 --- a/src/components/ADempiere/Form/VPOS/BusinessPartner/fieldsListSearch.js +++ b/src/components/ADempiere/Form/VPOS/BusinessPartner/fieldsListSearch.js @@ -23,6 +23,7 @@ export default [ overwriteDefinition: { sequence: 0, size: 6, + componentPath: 'FieldText', isCustomField: true } }, @@ -33,6 +34,7 @@ export default [ isFromDictionary: true, overwriteDefinition: { sequence: 1, + componentPath: 'FieldText', size: 6, isCustomField: true } diff --git a/src/components/ADempiere/Form/VPOS/Collection/overdrawnInvoice/index.vue b/src/components/ADempiere/Form/VPOS/Collection/overdrawnInvoice/index.vue index 6b4d15d1b0..6bad7347ff 100644 --- a/src/components/ADempiere/Form/VPOS/Collection/overdrawnInvoice/index.vue +++ b/src/components/ADempiere/Form/VPOS/Collection/overdrawnInvoice/index.vue @@ -717,7 +717,7 @@ export default { const clear = false this.clearAccountData(clear) this.currentFieldPaymentMethods = this.isEmptyValue(this.searchPaymentMethods) ? '' : this.searchPaymentMethods[0].uuid - if (this.isEmptyValue(value) && this.showDialogo) { + if (this.isEmptyValue(value) && this.showDialogo && !this.isEmptyValue(this.selectionTypeRefund.refund_reference_currency)) { this.findRefundCurrencyConversion(this.selectionTypeRefund.refund_reference_currency) } }, @@ -993,7 +993,7 @@ export default { const fieldBank = this.fieldsList.find(fields => fields.columnName === 'C_Bank_ID') let listBank if (!this.isEmptyValue(fieldBank) && fieldBank.reference) { - listBank = this.$store.getters.getLookupList({ + listBank = this.$store.getters.getStoredLookupList({ containerUuid: this.metadata.containerUuid, query: fieldBank.reference.query, tableName: fieldBank.reference.tableName @@ -1088,7 +1088,7 @@ export default { }, { columnName: 'C_Bank_ID', - value: value.bank.id + value: value.bank.value }, { columnName: 'C_Bank_ID_UUID', diff --git a/src/components/ADempiere/Form/VPOS/Options/AssignSeller/index.vue b/src/components/ADempiere/Form/VPOS/Options/AssignSeller/index.vue index 5565288368..405119166d 100644 --- a/src/components/ADempiere/Form/VPOS/Options/AssignSeller/index.vue +++ b/src/components/ADempiere/Form/VPOS/Options/AssignSeller/index.vue @@ -21,7 +21,7 @@ -