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 /> +