fix: select customer
This commit is contained in:
parent
a7392e44b4
commit
85a05c3a24
3 changed files with 31 additions and 11 deletions
|
|
@ -30,6 +30,7 @@ defineEmits<{
|
|||
type ExclusiveProps = {
|
||||
simple?: boolean;
|
||||
simpleBranchNo?: boolean;
|
||||
selectFirstValue?: boolean;
|
||||
};
|
||||
|
||||
const props = defineProps<SelectProps<typeof getList> & ExclusiveProps>();
|
||||
|
|
@ -64,10 +65,14 @@ onMounted(async () => {
|
|||
setFirstValue();
|
||||
}
|
||||
|
||||
await getSelectedOption();
|
||||
|
||||
valueOption.value = selectOptions.value.find((v) => v.id === value.value);
|
||||
if (props.selectFirstValue) {
|
||||
setDefaultValue();
|
||||
} else await getSelectedOption();
|
||||
});
|
||||
|
||||
function setDefaultValue() {
|
||||
setFirstValue();
|
||||
}
|
||||
</script>
|
||||
<template>
|
||||
<SelectInput
|
||||
|
|
@ -160,11 +165,9 @@ onMounted(async () => {
|
|||
</template>
|
||||
|
||||
<template #option="{ opt, scope }">
|
||||
<q-item @click="valueOption = opt" v-bind="scope.itemProps">
|
||||
<q-item v-bind="scope.itemProps" class="q-mx-sm bodrder">
|
||||
<SelectCustomerItem :data="opt" :simple :simple-branch-no />
|
||||
</q-item>
|
||||
|
||||
<q-separator class="q-mx-sm" />
|
||||
</template>
|
||||
|
||||
<template #append v-if="clearable">
|
||||
|
|
@ -177,3 +180,11 @@ onMounted(async () => {
|
|||
</template>
|
||||
</SelectInput>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.bodrder {
|
||||
border-bottom: solid;
|
||||
border-bottom-width: 1px;
|
||||
border-color: var(--border-color);
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -30,6 +30,8 @@ export const useCustomerForm = defineStore('form-customer', () => {
|
|||
|
||||
const registerAbleBranchOption = ref<{ id: string; name: string }[]>();
|
||||
|
||||
const currentBranchRootId = ref<string>('');
|
||||
|
||||
const tabFieldRequired = ref<{
|
||||
[key: string]: (keyof CustomerBranchCreate)[];
|
||||
}>({
|
||||
|
|
@ -160,6 +162,7 @@ export const useCustomerForm = defineStore('form-customer', () => {
|
|||
state.value.editCustomerCode = data.code;
|
||||
state.value.customerImageUrl = `${baseUrl}/customer/${id}/image/${data.selectedImage}`;
|
||||
state.value.defaultCustomerImageUrl = `${baseUrl}/customer/${id}/image/${data.selectedImage}`;
|
||||
currentBranchRootId.value = data.branch[0].id || '';
|
||||
|
||||
resetFormData.registeredBranchId = data.registeredBranchId;
|
||||
resetFormData.status = data.status;
|
||||
|
|
@ -500,6 +503,8 @@ export const useCustomerForm = defineStore('form-customer', () => {
|
|||
state,
|
||||
resetFormData,
|
||||
currentFormData,
|
||||
currentBranchRootId,
|
||||
|
||||
isFormDataDifferent,
|
||||
resetForm,
|
||||
assignFormData,
|
||||
|
|
@ -1663,6 +1668,7 @@ export const useEmployeeForm = defineStore('form-employee', () => {
|
|||
state,
|
||||
currentFromDataEmployee,
|
||||
resetEmployeeData,
|
||||
|
||||
addPassport,
|
||||
addVisa,
|
||||
addCheckup,
|
||||
|
|
|
|||
|
|
@ -60,7 +60,6 @@ const flowStore = useFlowStore();
|
|||
const userBranch = useMyBranch();
|
||||
const navigatorStore = useNavigator();
|
||||
const customerStore = useCustomerStore();
|
||||
|
||||
const {
|
||||
fetchListOfOptionBranch,
|
||||
customerFormUndo,
|
||||
|
|
@ -76,6 +75,7 @@ const {
|
|||
const {
|
||||
state: customerFormState,
|
||||
currentFormData: customerFormData,
|
||||
currentBranchRootId,
|
||||
registerAbleBranchOption,
|
||||
tabFieldRequired,
|
||||
} = storeToRefs(customerFormStore);
|
||||
|
|
@ -89,6 +89,8 @@ const fieldSelectedOption = computed(() => {
|
|||
value: v.name,
|
||||
}));
|
||||
});
|
||||
|
||||
const keyAddDialog = ref<number>(0);
|
||||
const special = ref(false);
|
||||
const branchId = ref('');
|
||||
const agentPrice = ref<boolean>(false);
|
||||
|
|
@ -865,6 +867,7 @@ async function filterBySellerId() {
|
|||
<!-- NOTE: START - Quotation Form, Add Quotation -->
|
||||
|
||||
<DialogForm
|
||||
:key="keyAddDialog"
|
||||
:title="$t('general.add', { text: $t('quotation.title') })"
|
||||
v-model:modal="pageState.addModal"
|
||||
:submit-label="$t('general.add', { text: $t('quotation.title') })"
|
||||
|
|
@ -880,7 +883,7 @@ async function filterBySellerId() {
|
|||
:close="
|
||||
() => {
|
||||
branchId = '';
|
||||
quotationFormData.customerBranchId = '';
|
||||
currentBranchRootId = '';
|
||||
}
|
||||
"
|
||||
:beforeClose="
|
||||
|
|
@ -930,7 +933,7 @@ async function filterBySellerId() {
|
|||
v-model:agent-price="agentPrice"
|
||||
v-model:branch-id="branchId"
|
||||
v-model:special="special"
|
||||
v-model:customer-branch-id="quotationFormData.customerBranchId"
|
||||
v-model:customer-branch-id="currentBranchRootId"
|
||||
@add-customer="triggerSelectTypeCustomerd()"
|
||||
/>
|
||||
</div>
|
||||
|
|
@ -999,6 +1002,7 @@ async function filterBySellerId() {
|
|||
() => {
|
||||
customerFormState.dialogModal = false;
|
||||
onCreateImageList = { selectedImage: '', list: [] };
|
||||
keyAddDialog++;
|
||||
}
|
||||
"
|
||||
>
|
||||
|
|
@ -1190,7 +1194,7 @@ async function filterBySellerId() {
|
|||
customerFormData.customerBranch[0].legalPersonNo
|
||||
"
|
||||
v-model:business-type="
|
||||
customerFormData.customerBranch[0].businessType
|
||||
customerFormData.customerBranch[0].businessTypeId
|
||||
"
|
||||
v-model:job-position="
|
||||
customerFormData.customerBranch[0].jobPosition
|
||||
|
|
@ -1271,7 +1275,6 @@ async function filterBySellerId() {
|
|||
res = await customerStore.createBranch({
|
||||
...customerFormData.customerBranch[idx],
|
||||
customerId: customerFormState.editCustomerId || '',
|
||||
id: undefined,
|
||||
});
|
||||
}
|
||||
if (res) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue