diff --git a/src/pages/05_quotation/MainPage.vue b/src/pages/05_quotation/MainPage.vue index db693382..8c09854f 100644 --- a/src/pages/05_quotation/MainPage.vue +++ b/src/pages/05_quotation/MainPage.vue @@ -59,10 +59,12 @@ const { state: customerFormState, currentFormData: customerFormData } = const { currentMyBranch } = storeToRefs(userBranch); const fieldSelectedOption = computed(() => { - return columnQuotation.map((v) => ({ - label: v.label, - value: v.name, - })); + return columnQuotation + .filter((v) => v.name !== 'action') + .map((v) => ({ + label: v.label, + value: v.name, + })); }); const special = ref(false); const branchId = ref('');