diff --git a/src/components/ADempiere/ContextMenu/contextMenuMixin.js b/src/components/ADempiere/ContextMenu/contextMenuMixin.js index 02c767e0..3a3b5867 100644 --- a/src/components/ADempiere/ContextMenu/contextMenuMixin.js +++ b/src/components/ADempiere/ContextMenu/contextMenuMixin.js @@ -345,12 +345,12 @@ export const contextMixin = { } this.actions = this.metadataMenu.actions if (this.panelType === 'window') { - var processAction = this.actions.find(item => { + const processAction = this.actions.find(item => { if (item.name === 'Procesar Orden' || (item.name === 'Process Order')) { return item } }) - this.$store.dispatch('setOrden', processAction) + this.$store.dispatch('setOrder', processAction) } if (this.actions && this.actions.length) { diff --git a/src/components/ADempiere/Field/fieldPopovers/fieldContextInfo.vue b/src/components/ADempiere/Field/fieldPopovers/fieldContextInfo.vue index 53c3995e..6121e92b 100644 --- a/src/components/ADempiere/Field/fieldPopovers/fieldContextInfo.vue +++ b/src/components/ADempiere/Field/fieldPopovers/fieldContextInfo.vue @@ -1,7 +1,6 @@