refactor: เพิ่ม registeredBranchId สินค้า
This commit is contained in:
parent
9b76806d24
commit
3ad024e6f5
1 changed files with 33 additions and 2 deletions
|
|
@ -27,6 +27,12 @@ import NoData from 'components/NoData.vue';
|
||||||
import PaginationComponent from 'src/components/PaginationComponent.vue';
|
import PaginationComponent from 'src/components/PaginationComponent.vue';
|
||||||
|
|
||||||
import useFlowStore from 'src/stores/flow';
|
import useFlowStore from 'src/stores/flow';
|
||||||
|
import useMyBranchStore from 'src/stores/my-branch';
|
||||||
|
|
||||||
|
const useMyBranch = useMyBranchStore();
|
||||||
|
|
||||||
|
const { fetchListOptionBranch } = useMyBranch;
|
||||||
|
|
||||||
import { Status } from 'src/stores/types';
|
import { Status } from 'src/stores/types';
|
||||||
|
|
||||||
import useUtilsStore, { dialog, dialogWarningClose } from 'src/stores/utils';
|
import useUtilsStore, { dialog, dialogWarningClose } from 'src/stores/utils';
|
||||||
|
|
@ -151,6 +157,7 @@ const formDataGroup = ref<ProductGroupCreate>({
|
||||||
});
|
});
|
||||||
|
|
||||||
const formDataProduct = ref<ProductCreate>({
|
const formDataProduct = ref<ProductCreate>({
|
||||||
|
registeredBranchId: '',
|
||||||
productTypeId: '',
|
productTypeId: '',
|
||||||
remark: '',
|
remark: '',
|
||||||
serviceCharge: 0,
|
serviceCharge: 0,
|
||||||
|
|
@ -172,6 +179,7 @@ const formDataProductService = ref<ServiceCreate>({
|
||||||
name: '',
|
name: '',
|
||||||
code: '',
|
code: '',
|
||||||
productTypeId: '',
|
productTypeId: '',
|
||||||
|
registeredBranchId: '',
|
||||||
});
|
});
|
||||||
|
|
||||||
const serviceTab = [
|
const serviceTab = [
|
||||||
|
|
@ -217,6 +225,8 @@ const currentIdType = ref<string>('');
|
||||||
const currentIdService = ref<string>('');
|
const currentIdService = ref<string>('');
|
||||||
const currentIdProduct = ref<string>('');
|
const currentIdProduct = ref<string>('');
|
||||||
|
|
||||||
|
const branchOption = ref<{ id: string; name: string }[]>([]);
|
||||||
|
|
||||||
const currentStatus = ref<Status | 'All'>('All');
|
const currentStatus = ref<Status | 'All'>('All');
|
||||||
|
|
||||||
const inputFile = (() => {
|
const inputFile = (() => {
|
||||||
|
|
@ -268,6 +278,12 @@ async function featchStatsService() {
|
||||||
flowStore.rotate();
|
flowStore.rotate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function fetchListOfOptionBranch() {
|
||||||
|
const res = await fetchListOptionBranch({ pageSize: 999 });
|
||||||
|
|
||||||
|
if (res) branchOption.value = res.result;
|
||||||
|
}
|
||||||
|
|
||||||
async function featchStatsProduct() {
|
async function featchStatsProduct() {
|
||||||
const resStatsProduct = await fetchStatsProduct({
|
const resStatsProduct = await fetchStatsProduct({
|
||||||
productTypeId: currentIdType.value,
|
productTypeId: currentIdType.value,
|
||||||
|
|
@ -627,6 +643,7 @@ const prevService = ref<ServiceCreate>({
|
||||||
name: '',
|
name: '',
|
||||||
code: '',
|
code: '',
|
||||||
productTypeId: '',
|
productTypeId: '',
|
||||||
|
registeredBranchId: '',
|
||||||
});
|
});
|
||||||
|
|
||||||
const currentService = ref<ServiceById>();
|
const currentService = ref<ServiceById>();
|
||||||
|
|
@ -649,6 +666,7 @@ async function assignFormDataProductService(id: string) {
|
||||||
work: [],
|
work: [],
|
||||||
status: res.status,
|
status: res.status,
|
||||||
productTypeId: res.productTypeId,
|
productTypeId: res.productTypeId,
|
||||||
|
registeredBranchId: res.registeredBranchId,
|
||||||
};
|
};
|
||||||
|
|
||||||
formDataProductService.value = { ...prevService.value };
|
formDataProductService.value = { ...prevService.value };
|
||||||
|
|
@ -692,6 +710,7 @@ const prevProduct = ref<ProductCreate>({
|
||||||
name: '',
|
name: '',
|
||||||
code: '',
|
code: '',
|
||||||
image: undefined,
|
image: undefined,
|
||||||
|
registeredBranchId: '',
|
||||||
});
|
});
|
||||||
|
|
||||||
function assignFormDataProduct(data: ProductList) {
|
function assignFormDataProduct(data: ProductList) {
|
||||||
|
|
@ -711,6 +730,7 @@ function assignFormDataProduct(data: ProductList) {
|
||||||
name: data.name,
|
name: data.name,
|
||||||
code: data.code,
|
code: data.code,
|
||||||
image: undefined,
|
image: undefined,
|
||||||
|
registeredBranchId: data.registeredBranchId,
|
||||||
};
|
};
|
||||||
|
|
||||||
formDataProduct.value = { ...prevProduct.value };
|
formDataProduct.value = { ...prevProduct.value };
|
||||||
|
|
@ -739,6 +759,7 @@ function clearFormProduct() {
|
||||||
name: '',
|
name: '',
|
||||||
code: '',
|
code: '',
|
||||||
image: undefined,
|
image: undefined,
|
||||||
|
registeredBranchId: '',
|
||||||
};
|
};
|
||||||
imageProduct.value = undefined;
|
imageProduct.value = undefined;
|
||||||
dialogProduct.value = false;
|
dialogProduct.value = false;
|
||||||
|
|
@ -758,6 +779,7 @@ function clearFormService() {
|
||||||
work: [],
|
work: [],
|
||||||
status: undefined,
|
status: undefined,
|
||||||
productTypeId: '',
|
productTypeId: '',
|
||||||
|
registeredBranchId: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
workItems.value = [];
|
workItems.value = [];
|
||||||
|
|
@ -1061,6 +1083,7 @@ watch(inputSearchProductAndService, async () => {
|
||||||
@click="
|
@click="
|
||||||
() => {
|
() => {
|
||||||
clearFormProduct();
|
clearFormProduct();
|
||||||
|
fetchListOfOptionBranch();
|
||||||
dialogProduct = true;
|
dialogProduct = true;
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
|
|
@ -1077,6 +1100,7 @@ watch(inputSearchProductAndService, async () => {
|
||||||
() => {
|
() => {
|
||||||
clearFormGroup();
|
clearFormGroup();
|
||||||
clearFormService();
|
clearFormService();
|
||||||
|
fetchListOfOptionBranch();
|
||||||
currentServiceTab = 'serviceInformation';
|
currentServiceTab = 'serviceInformation';
|
||||||
dialogService = true;
|
dialogService = true;
|
||||||
}
|
}
|
||||||
|
|
@ -1634,7 +1658,7 @@ watch(inputSearchProductAndService, async () => {
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
@menuViewDetail="
|
@menuViewDetail="
|
||||||
() => {
|
async () => {
|
||||||
if (i.type === 'product') {
|
if (i.type === 'product') {
|
||||||
currentIdProduct = i.id;
|
currentIdProduct = i.id;
|
||||||
assignFormDataProduct(i);
|
assignFormDataProduct(i);
|
||||||
|
|
@ -1646,10 +1670,11 @@ watch(inputSearchProductAndService, async () => {
|
||||||
assignFormDataProductService(i.id);
|
assignFormDataProductService(i.id);
|
||||||
dialogServiceEdit = true;
|
dialogServiceEdit = true;
|
||||||
}
|
}
|
||||||
|
await fetchListOfOptionBranch();
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
@menuEdit="
|
@menuEdit="
|
||||||
() => {
|
async () => {
|
||||||
if (i.type === 'product') {
|
if (i.type === 'product') {
|
||||||
currentIdProduct = i.id;
|
currentIdProduct = i.id;
|
||||||
infoProductEdit = true;
|
infoProductEdit = true;
|
||||||
|
|
@ -1662,6 +1687,8 @@ watch(inputSearchProductAndService, async () => {
|
||||||
assignFormDataProductService(i.id);
|
assignFormDataProductService(i.id);
|
||||||
dialogServiceEdit = true;
|
dialogServiceEdit = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await fetchListOfOptionBranch();
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
|
|
@ -1919,6 +1946,8 @@ watch(inputSearchProductAndService, async () => {
|
||||||
|
|
||||||
<template #information>
|
<template #information>
|
||||||
<BasicInfoProduct
|
<BasicInfoProduct
|
||||||
|
:options-branch="branchOption"
|
||||||
|
v-model:registered-branch-id="formDataProduct.registeredBranchId"
|
||||||
v-model:detail="formDataProduct.detail"
|
v-model:detail="formDataProduct.detail"
|
||||||
v-model:remark="formDataProduct.remark"
|
v-model:remark="formDataProduct.remark"
|
||||||
v-model:name="formDataProduct.name"
|
v-model:name="formDataProduct.name"
|
||||||
|
|
@ -1983,7 +2012,9 @@ watch(inputSearchProductAndService, async () => {
|
||||||
|
|
||||||
<template #information>
|
<template #information>
|
||||||
<BasicInfoProduct
|
<BasicInfoProduct
|
||||||
|
:options-branch="branchOption"
|
||||||
:readonly="!infoProductEdit"
|
:readonly="!infoProductEdit"
|
||||||
|
v-model:registered-branch-id="formDataProduct.registeredBranchId"
|
||||||
v-model:detail="formDataProduct.detail"
|
v-model:detail="formDataProduct.detail"
|
||||||
v-model:remark="formDataProduct.remark"
|
v-model:remark="formDataProduct.remark"
|
||||||
v-model:name="formDataProduct.name"
|
v-model:name="formDataProduct.name"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue