From 0979b03acc920f7ab2135ba0dcd46641e01e8c7a Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Fri, 22 Aug 2025 13:50:15 +0700 Subject: [PATCH] refactor: get contact number and name --- src/components/05_quotation/FormAbout.vue | 9 +++++++++ src/pages/05_quotation/QuotationForm.vue | 14 ++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/src/components/05_quotation/FormAbout.vue b/src/components/05_quotation/FormAbout.vue index 1fec0148..e5505eff 100644 --- a/src/components/05_quotation/FormAbout.vue +++ b/src/components/05_quotation/FormAbout.vue @@ -2,11 +2,18 @@ import SelectCustomer from '../shared/select/SelectCustomer.vue'; import SelectBranch from '../shared/select/SelectBranch.vue'; +import { CustomerBranch } from 'src/stores/customer'; +import { ref } from 'vue'; + const branchId = defineModel('branchId'); const customerBranchId = defineModel('customerBranchId'); const agentPrice = defineModel('agentPrice'); const special = defineModel('special'); +const customerBranchOption = defineModel( + 'customerBranchOption', +); + defineProps<{ outlined?: boolean; readonly?: boolean; @@ -67,10 +74,12 @@ defineEmits<{ required :readonly /> +