diff --git a/src/pages/InvoiceOut/InvoiceOutGlobalForm.vue b/src/pages/InvoiceOut/InvoiceOutGlobalForm.vue index 3fd3104bf..e6c689523 100644 --- a/src/pages/InvoiceOut/InvoiceOutGlobalForm.vue +++ b/src/pages/InvoiceOut/InvoiceOutGlobalForm.vue @@ -115,6 +115,9 @@ onMounted(async () => { [ label: t('salesTicketsTable.payMethod'), name: 'payMethod', align: 'left', - columnFilter: false, + columnFilter: { + component: 'select', + url: 'PayMethods', + attrs: { + options: PayMethodOpts.value, + optionValue: 'id', + optionLabel: 'name', + dense: true, + }, + }, }, { label: t('salesTicketsTable.total'), @@ -244,11 +254,8 @@ const columns = computed(() => [ align: 'left', columnFilter: { component: 'select', - url: 'Departments', attrs: { options: DepartmentOpts.value, - optionValue: 'name', - optionLabel: 'name', dense: true, }, }, @@ -364,6 +371,15 @@ const openTab = (id) => auto-load @on-fetch="(data) => (DepartmentOpts = data)" /> +