This commit is contained in:
parent
a4a101712c
commit
1d38dbc6cf
1 changed files with 40 additions and 64 deletions
|
|
@ -104,10 +104,6 @@ const {
|
||||||
importProduct,
|
importProduct,
|
||||||
} = productServiceStore;
|
} = productServiceStore;
|
||||||
|
|
||||||
const currentCopy = ref<{
|
|
||||||
id: string | undefined;
|
|
||||||
type: 'service' | 'product';
|
|
||||||
}>();
|
|
||||||
const { workNameItems } = storeToRefs(productServiceStore);
|
const { workNameItems } = storeToRefs(productServiceStore);
|
||||||
const allStat = ref<{ mode: string; count: number }[]>([]);
|
const allStat = ref<{ mode: string; count: number }[]>([]);
|
||||||
|
|
||||||
|
|
@ -1848,65 +1844,49 @@ function handleSubmitSameWorkflow() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function paste() {
|
async function copy(id: string) {
|
||||||
if (
|
{
|
||||||
!!currentCopy.value &&
|
const res = await fetchListServiceById(id);
|
||||||
currentCopy.value.type === 'service' &&
|
if (res) {
|
||||||
!!currentCopy.value.id
|
formService.value = {
|
||||||
)
|
code: res.code,
|
||||||
dialogWarningClose(t, {
|
name: res.name,
|
||||||
message: t('dialog.message.warningPaste'),
|
detail: res.detail,
|
||||||
action: async () => {
|
attributes: res.attributes,
|
||||||
const res = await fetchListServiceById(currentCopy.value.id);
|
work: res.work.map((v) => ({
|
||||||
if (res) {
|
id: v.id,
|
||||||
formService.value = {
|
name: v.name,
|
||||||
code: res.code,
|
attributes: v.attributes,
|
||||||
name: res.name,
|
product: v.productOnWork.map((productOnWorkItem) => ({
|
||||||
detail: res.detail,
|
id: productOnWorkItem.product.id,
|
||||||
attributes: res.attributes,
|
installmentNo: productOnWorkItem.installmentNo,
|
||||||
work: res.work.map((v) => ({
|
stepCount: productOnWorkItem.stepCount,
|
||||||
id: v.id,
|
})),
|
||||||
name: v.name,
|
})),
|
||||||
attributes: v.attributes,
|
status: res.status,
|
||||||
product: v.productOnWork.map((productOnWorkItem) => ({
|
productGroupId: res.productGroupId,
|
||||||
id: productOnWorkItem.product.id,
|
selectedImage: res.selectedImage,
|
||||||
installmentNo: productOnWorkItem.installmentNo,
|
installments: res.installments,
|
||||||
stepCount: productOnWorkItem.stepCount,
|
};
|
||||||
})),
|
|
||||||
})),
|
|
||||||
status: res.status,
|
|
||||||
productGroupId: res.productGroupId,
|
|
||||||
selectedImage: res.selectedImage,
|
|
||||||
installments: res.installments,
|
|
||||||
};
|
|
||||||
|
|
||||||
workItems.value = res.work.map((item) => {
|
workItems.value = res.work.map((item) => {
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
name: item.name,
|
||||||
|
attributes: item.attributes,
|
||||||
|
product: item.productOnWork.map((productOnWorkItem) => {
|
||||||
return {
|
return {
|
||||||
id: item.id,
|
...productOnWorkItem.product,
|
||||||
name: item.name,
|
nameEn: productOnWorkItem.product.name,
|
||||||
attributes: item.attributes,
|
installmentNo: productOnWorkItem.installmentNo,
|
||||||
product: item.productOnWork.map((productOnWorkItem) => {
|
|
||||||
return {
|
|
||||||
...productOnWorkItem.product,
|
|
||||||
nameEn: productOnWorkItem.product.name,
|
|
||||||
installmentNo: productOnWorkItem.installmentNo,
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
};
|
};
|
||||||
});
|
}),
|
||||||
}
|
};
|
||||||
},
|
});
|
||||||
});
|
}
|
||||||
else {
|
|
||||||
dialog({
|
|
||||||
color: 'warning',
|
|
||||||
icon: 'mdi-alert',
|
|
||||||
title: t('form.warning.title'),
|
|
||||||
actionText: t('dialog.action.ok'),
|
|
||||||
message: t('dialog.message.warningCopyEmpty'),
|
|
||||||
action: async () => {},
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dialogService.value = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
|
|
@ -3278,11 +3258,7 @@ watch(
|
||||||
:id-name="props.row.name"
|
:id-name="props.row.name"
|
||||||
@copy="
|
@copy="
|
||||||
() => {
|
() => {
|
||||||
notify('create', $t('dialog.message.copy'));
|
copy(props.row.id);
|
||||||
currentCopy = {
|
|
||||||
id: props.row.id,
|
|
||||||
type: productAndServiceTab,
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
@view="
|
@view="
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue