733 lines
24 KiB
Vue
733 lines
24 KiB
Vue
<script setup lang="ts">
|
|
// NOTE: Library
|
|
import { onMounted, reactive, ref, watch, computed, nextTick } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
// NOTE: Components
|
|
import DataDisplay from 'src/components/08_request-list/DataDisplay.vue';
|
|
import DocumentExpansion from './DocumentExpansion.vue';
|
|
import FormExpansion from './FormExpansion.vue';
|
|
import PropertiesExpansion from './PropertiesExpansion.vue';
|
|
import FormGroupHead from './FormGroupHead.vue';
|
|
import AvatarGroup from 'src/components/shared/AvatarGroup.vue';
|
|
import { StateButton } from 'components/button';
|
|
|
|
// NOTE: Store
|
|
import { baseUrl } from 'src/stores/utils';
|
|
import { dateFormatJS } from 'src/utils/datetime';
|
|
import { useRequestList } from 'src/stores/request-list';
|
|
import {
|
|
RequestData,
|
|
RequestWork,
|
|
Attributes,
|
|
DocStatus,
|
|
Step,
|
|
RequestWorkStatus,
|
|
RequestDataStatus,
|
|
} from 'src/stores/request-list/types';
|
|
import useOptionStore from 'src/stores/options';
|
|
import ProductExpansion from './ProductExpansion.vue';
|
|
import { useRoute } from 'vue-router';
|
|
import { useWorkflowTemplate } from 'src/stores/workflow-template';
|
|
import { WorkflowTemplate } from 'src/stores/workflow-template/types';
|
|
import { initLang, initTheme, Lang } from 'src/utils/ui';
|
|
import {
|
|
EmployeePassportPayload,
|
|
EmployeeVisaPayload,
|
|
} from 'stores/employee/types';
|
|
import { PropVariant } from 'src/stores/product-service/types';
|
|
import { Invoice } from 'src/stores/payment/types';
|
|
|
|
import { CreatedBy } from 'src/stores/types';
|
|
|
|
const { locale } = useI18n();
|
|
|
|
// NOTE: Variable
|
|
const route = useRoute();
|
|
const optionStore = useOptionStore();
|
|
const requestListStore = useRequestList();
|
|
const flowTemplateStore = useWorkflowTemplate();
|
|
|
|
const workList = ref<RequestWork[]>();
|
|
const statusFile = ref<Attributes>({
|
|
customer: {},
|
|
employee: {},
|
|
});
|
|
|
|
const refDocumentExpansion = ref<InstanceType<typeof DocumentExpansion>[]>([]);
|
|
const data = ref<RequestData>();
|
|
const flow = ref<WorkflowTemplate>();
|
|
const pageState = reactive({
|
|
hideMetaData: false,
|
|
currentStep: 1,
|
|
});
|
|
|
|
// NOTE: Function
|
|
|
|
async function fetchRequestWorkList(opts: { requestDataId: string }) {
|
|
const res = await requestListStore.getRequestWorkList({
|
|
requestDataId: opts.requestDataId,
|
|
pageSize: 9999,
|
|
});
|
|
|
|
if (res) {
|
|
workList.value = res.result;
|
|
}
|
|
}
|
|
|
|
function getCustomerName(
|
|
record: RequestData,
|
|
opts?: {
|
|
locale?: string;
|
|
noCode?: boolean;
|
|
},
|
|
) {
|
|
const customer = record.quotation.customerBranch;
|
|
|
|
return (
|
|
{
|
|
['CORP']: {
|
|
[Lang.English]: customer.registerNameEN,
|
|
[Lang.Thai]: customer.registerName,
|
|
}[opts?.locale || 'eng'],
|
|
['PERS']:
|
|
{
|
|
[Lang.English]: `${optionStore.mapOption(customer.namePrefix)} ${customer.firstNameEN} ${customer.lastNameEN}`,
|
|
[Lang.Thai]: `${optionStore.mapOption(customer.namePrefix)} ${customer.firstName} ${customer.lastName}`,
|
|
}[opts?.locale || Lang.English] || '-',
|
|
}[customer.customer.customerType] +
|
|
(opts?.noCode ? '' : ' ' + `(${customer.code})`)
|
|
);
|
|
}
|
|
|
|
function getEmployeeName(
|
|
record: RequestData,
|
|
opts?: {
|
|
locale?: string;
|
|
},
|
|
) {
|
|
const employee = record.employee;
|
|
|
|
return (
|
|
{
|
|
[Lang.English]: `${optionStore.mapOption(employee.namePrefix)} ${employee.firstNameEN} ${employee.lastNameEN}`,
|
|
[Lang.Thai]: `${optionStore.mapOption(employee.namePrefix)} ${employee.firstName} ${employee.lastName}`,
|
|
}[opts?.locale || Lang.English] || '-'
|
|
);
|
|
}
|
|
|
|
async function getData() {
|
|
const current = route.params['requestListId'];
|
|
|
|
if (typeof current === 'string') {
|
|
const res = await requestListStore.getRequestData(current);
|
|
|
|
if (res) {
|
|
data.value = res;
|
|
await fetchRequestWorkList({ requestDataId: current });
|
|
await getFlow();
|
|
}
|
|
}
|
|
}
|
|
|
|
async function getFlow() {
|
|
if (!workList.value) return;
|
|
|
|
const attr = workList.value.find((v) => !!v.productService.work?.attributes)
|
|
?.productService.work?.attributes;
|
|
|
|
if (attr && Object.hasOwn(attr, 'workflowId')) {
|
|
const workflowId = attr['workflowId'];
|
|
|
|
const res = await flowTemplateStore.getWorkflowTemplate(workflowId);
|
|
|
|
if (res) flow.value = res;
|
|
}
|
|
}
|
|
|
|
onMounted(async () => {
|
|
initTheme();
|
|
initLang();
|
|
|
|
// get data
|
|
await getData();
|
|
});
|
|
|
|
watch(() => route.params['requestListId'], getData);
|
|
|
|
async function triggerChangeStatusWork(step: Step) {
|
|
const res = await requestListStore.editStatusRequestWork(step);
|
|
if (res) {
|
|
const indexWork = workList.value?.findIndex(
|
|
(v) => v.id === step.requestWorkId,
|
|
);
|
|
if (indexWork === -1 || indexWork === undefined) return;
|
|
if (workList.value === undefined) return;
|
|
|
|
const indexStep = workList.value[indexWork].stepStatus.findIndex(
|
|
(v) => v.step === step.step,
|
|
);
|
|
|
|
if (indexStep === -1) {
|
|
workList.value[indexWork].stepStatus.push(res);
|
|
}
|
|
if (indexStep !== -1) {
|
|
workList.value[indexWork].stepStatus[indexStep].workStatus =
|
|
res.workStatus;
|
|
}
|
|
}
|
|
await nextTick();
|
|
|
|
if (successAll.value) {
|
|
await requestListStore.editStatusRequestWork(step, !!successAll.value);
|
|
}
|
|
}
|
|
|
|
async function triggerChangeStatusFile(opt: {
|
|
index: number;
|
|
id: string;
|
|
documentType: string;
|
|
status: DocStatus;
|
|
type: 'customer' | 'employee';
|
|
}) {
|
|
if (!workList.value) return;
|
|
|
|
const workItem = workList.value[opt.index];
|
|
if (!workItem || !workItem.attributes) {
|
|
if (workItem) {
|
|
workItem.attributes = { customer: {}, employee: {} };
|
|
} else {
|
|
return;
|
|
}
|
|
}
|
|
|
|
const attributes = workItem.attributes;
|
|
|
|
statusFile.value = attributes;
|
|
if (!statusFile.value[opt.type]) {
|
|
statusFile.value[opt.type] = {};
|
|
}
|
|
|
|
statusFile.value[opt.type]![opt.documentType] = opt.status;
|
|
|
|
const res = await requestListStore.editRequestWork({
|
|
id: opt.id,
|
|
attributes: statusFile.value,
|
|
});
|
|
|
|
if (res) {
|
|
workList.value[opt.index].attributes = res.attributes;
|
|
}
|
|
}
|
|
|
|
async function triggerUpload(opt: {
|
|
id: string;
|
|
type: 'customer' | 'employee';
|
|
group: string;
|
|
file: File;
|
|
form?: EmployeePassportPayload | EmployeeVisaPayload;
|
|
}) {
|
|
const newName = `${opt.group}-${Date.now()}-${opt.file.name}`;
|
|
|
|
const res = await requestListStore.uploadAttachmentRequest({
|
|
...opt,
|
|
name: newName,
|
|
});
|
|
|
|
return !!res;
|
|
}
|
|
|
|
async function triggerViewFile(opt: {
|
|
id: string;
|
|
fileName: string;
|
|
type: 'customer' | 'employee';
|
|
group: string;
|
|
download?: boolean;
|
|
}) {
|
|
let url;
|
|
url = await requestListStore.viewAttachmentRequest({
|
|
id: opt.id,
|
|
name: opt.fileName,
|
|
type: opt.type,
|
|
group: opt.group,
|
|
download: opt.download,
|
|
});
|
|
|
|
if (!opt.download) window.open(url, '_blank');
|
|
}
|
|
|
|
const responsiblePersonList = computed(() => {
|
|
const temp = workList.value?.reduce<Record<string, CreatedBy[]>>(
|
|
(acc, curr: RequestWork) => {
|
|
curr.productService.service?.workflow?.step.forEach((v) => {
|
|
const key = v.order.toString();
|
|
|
|
if (!acc[key]) acc[key] = [];
|
|
|
|
v.responsiblePerson.forEach((lhs) => {
|
|
if (acc[v.order].find((rhs) => rhs.id === lhs.userId)) return;
|
|
acc[v.order].push(lhs.user);
|
|
});
|
|
});
|
|
|
|
return acc;
|
|
},
|
|
{},
|
|
);
|
|
|
|
return temp;
|
|
});
|
|
|
|
const successAll = computed(() => {
|
|
return !!flow.value?.step.every((_, i) => {
|
|
return workList.value
|
|
?.filter((v) => {
|
|
return v.productService.work?.attributes.workflowStep?.[
|
|
i
|
|
]?.productsId.includes(v.productService.productId);
|
|
})
|
|
.every((v) => {
|
|
const status = v.stepStatus.find(
|
|
({ step }) => step === i + 1,
|
|
)?.workStatus;
|
|
|
|
return (
|
|
status === RequestWorkStatus.Completed ||
|
|
status === RequestWorkStatus.Ended
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|
|
function getInstallmentInfo() {
|
|
if (
|
|
data.value?.quotation.payCondition === 'Full' ||
|
|
data.value?.quotation.payCondition === 'BillFull'
|
|
) {
|
|
return undefined;
|
|
}
|
|
|
|
const total = data.value?.quotation.paySplitCount || 0;
|
|
const paid = data.value?.quotation.invoice?.reduce((a, c) => {
|
|
if (c.payment?.paymentStatus === 'PaymentSuccess') {
|
|
a += c.installments.length || 0;
|
|
}
|
|
return a;
|
|
}, 0);
|
|
|
|
return { total, paid };
|
|
}
|
|
|
|
function isInstallmentPaySuccess(installmentNo: number) {
|
|
if (
|
|
data.value?.quotation.payCondition === 'Full' ||
|
|
data.value?.quotation.payCondition === 'BillFull'
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
const invoice = data.value?.quotation.invoice?.find((lhs) => {
|
|
return lhs.installments?.some((rhs) => rhs.no === installmentNo);
|
|
});
|
|
|
|
return !!(invoice?.payment?.paymentStatus === 'PaymentSuccess');
|
|
}
|
|
</script>
|
|
<template>
|
|
<div class="column surface-0 fullscreen" v-if="data">
|
|
<!-- SEC: Header -->
|
|
<header class="row q-px-md q-py-sm items-center full justify-between">
|
|
<div style="flex: 1" class="row items-center">
|
|
<RouterLink to="/request-list">
|
|
<q-img src="/icons/favicon-512x512.png" width="3rem" />
|
|
</RouterLink>
|
|
<span class="column text-h6 text-bold q-ml-md">
|
|
{{ $t('requestList.title') }}
|
|
{{ data.code || '' }}
|
|
<span class="text-caption text-regular app-text-muted">
|
|
{{
|
|
$t('quotation.processOn', {
|
|
msg: dateFormatJS({ date: data.createdAt }),
|
|
})
|
|
}}
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div class="row q-gutter-x-xl q-mr-xl">
|
|
<div class="column">
|
|
<span class="app-text-muted">
|
|
{{ $t('requestList.salesRepresentative') }}
|
|
</span>
|
|
<span>
|
|
{{ optionStore.mapOption(data.quotation.createdBy.namePrefix) }}
|
|
|
|
{{
|
|
$i18n.locale === 'eng'
|
|
? `${data.quotation.createdBy.firstNameEN} ${data.quotation.createdBy.lastNameEN}`
|
|
: `${data.quotation.createdBy.firstName} ${data.quotation.createdBy.lastName}`
|
|
}}
|
|
</span>
|
|
</div>
|
|
<div class="column">
|
|
<span class="app-text-muted">{{ $t('flow.responsiblePerson') }}</span>
|
|
<span>
|
|
<template
|
|
v-if="
|
|
responsiblePersonList &&
|
|
responsiblePersonList[pageState.currentStep].length >= 1
|
|
"
|
|
>
|
|
<AvatarGroup
|
|
:data="
|
|
responsiblePersonList[pageState.currentStep].map((v) => {
|
|
return {
|
|
name:
|
|
$i18n.locale === 'eng'
|
|
? `${v.firstNameEN} ${v.lastNameEN}`
|
|
: `${v.firstName} ${v.lastName}`,
|
|
imgUrl: !v.selectedImage
|
|
? v.gender === 'male'
|
|
? `/no-img-man.png`
|
|
: `/no-img-female.png`
|
|
: `${baseUrl}/user/${v.id}/profile-image/${v.selectedImage}`,
|
|
};
|
|
})
|
|
"
|
|
/>
|
|
</template>
|
|
<template v-else>-</template>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- SEC: Body -->
|
|
<main class="col full-width q-pa-md" style="flex-grow: 1; overflow-y: auto">
|
|
<section class="col-sm col-12">
|
|
<div class="col q-gutter-y-md" :key="pageState.currentStep">
|
|
<!-- step -->
|
|
<nav
|
|
v-if="flow"
|
|
class="surface-1 q-pa-sm row no-wrap full-width scroll rounded"
|
|
style="gap: 10px"
|
|
>
|
|
<span
|
|
v-if="
|
|
workList?.every((v) =>
|
|
v.productService.work?.attributes?.workflowStep?.every(
|
|
(s: any) => {
|
|
s.attributes?.properties.length === 0;
|
|
},
|
|
),
|
|
)
|
|
"
|
|
class="app-text-muted q-py-sm"
|
|
>
|
|
{{ $t('requestList.noWorkflowTemplate') }}
|
|
</span>
|
|
<template v-for="(value, i) in flow.step" :key="value.id">
|
|
<StateButton
|
|
@click="() => (pageState.currentStep = value.order)"
|
|
:status-waiting="
|
|
!workList
|
|
?.filter((v) => {
|
|
return v.productService.work?.attributes.workflowStep?.[
|
|
i - 1
|
|
]?.productsId.includes(v.productService.productId);
|
|
})
|
|
.every((v) => {
|
|
const status = v.stepStatus.find(
|
|
({ step }) => step === i,
|
|
)?.workStatus;
|
|
return (
|
|
status === RequestWorkStatus.Completed ||
|
|
status === RequestWorkStatus.Ended
|
|
);
|
|
})
|
|
"
|
|
:status-done="
|
|
workList
|
|
?.filter((v) => {
|
|
return v.productService.work?.attributes.workflowStep?.[
|
|
i
|
|
]?.productsId.includes(v.productService.productId);
|
|
})
|
|
.every((v) => {
|
|
const status = v.stepStatus.find(
|
|
({ step }) => step === i + 1,
|
|
)?.workStatus;
|
|
return (
|
|
status === RequestWorkStatus.Completed ||
|
|
status === RequestWorkStatus.Ended
|
|
);
|
|
})
|
|
"
|
|
:status-active="pageState.currentStep === value.order"
|
|
:label="value.name"
|
|
/>
|
|
<!-- 'quotation-status-active': value.active?.(), -->
|
|
<!-- @click="'waiting' !== 'waiting' && value.handler()" -->
|
|
</template>
|
|
</nav>
|
|
|
|
<!-- meta data -->
|
|
<article class="surface-1 rounded">
|
|
<div
|
|
class="text-weight-bold row items-center no-wrap q-pa-sm"
|
|
style="gap: 16px"
|
|
>
|
|
<q-img src="/images/quotation-avatar.png" width="42px" />
|
|
<span class="ellipsis" style="font-size: 18px">
|
|
{{ data.quotation.workName || '-' }}
|
|
</span>
|
|
<q-btn
|
|
class="q-ml-sm"
|
|
icon="mdi-pin-outline"
|
|
color="primary"
|
|
size="sm"
|
|
flat
|
|
dense
|
|
rounded
|
|
@click="pageState.hideMetaData = !pageState.hideMetaData"
|
|
:style="pageState.hideMetaData ? 'rotate: 90deg' : ''"
|
|
style="transition: 0.1s ease-in-out"
|
|
/>
|
|
</div>
|
|
<transition name="slide">
|
|
<section
|
|
v-if="!pageState.hideMetaData"
|
|
class=""
|
|
:class="{ row: $q.screen.gt.sm, column: $q.screen.lt.md }"
|
|
>
|
|
<FormGroupHead class="col-12">
|
|
{{ $t('requestList.ref') }}
|
|
</FormGroupHead>
|
|
<div
|
|
class="col-12 q-pa-sm"
|
|
:class="{
|
|
row: $q.screen.gt.sm,
|
|
'column q-gutter-y-sm': $q.screen.lt.md,
|
|
}"
|
|
>
|
|
<DataDisplay
|
|
class="col"
|
|
icon="mdi-file-document-outline"
|
|
:label="$t('requestList.quotationCode')"
|
|
:value="data.quotation.code || '-'"
|
|
/>
|
|
<DataDisplay
|
|
class="col"
|
|
icon="mdi-file-document-outline"
|
|
tooltip
|
|
:label="$t('requestList.invoiceCode')"
|
|
:value="
|
|
data.quotation?.invoice
|
|
?.map((i: Invoice) => i.code)
|
|
.join(', ') || '-'
|
|
"
|
|
/>
|
|
<DataDisplay
|
|
class="col"
|
|
icon="mdi-file-document-outline"
|
|
tooltip
|
|
:label="$t('requestList.receiptCode')"
|
|
:value="
|
|
data.quotation?.invoice
|
|
?.flatMap((i: Invoice) => i.payment?.code || [])
|
|
.join(', ') || '-'
|
|
"
|
|
/>
|
|
<div v-if="$q.screen.gt.sm" class="col"></div>
|
|
</div>
|
|
<FormGroupHead class="col-12">
|
|
{{ $t('quotation.employee') }}
|
|
</FormGroupHead>
|
|
<div
|
|
class="col-12 q-pa-sm"
|
|
:class="{
|
|
row: $q.screen.gt.sm,
|
|
'column q-gutter-y-sm': $q.screen.lt.md,
|
|
}"
|
|
>
|
|
<DataDisplay
|
|
class="col"
|
|
icon="mdi-account-settings-outline"
|
|
:label="$t('customer.employer')"
|
|
:value="
|
|
getCustomerName(data, { locale: locale, noCode: true }) ||
|
|
'-'
|
|
"
|
|
/>
|
|
<DataDisplay
|
|
class="col"
|
|
icon="mdi-account-settings-outline"
|
|
:label="$t('customer.employee')"
|
|
:value="
|
|
getEmployeeName(data, { locale: $i18n.locale }) || '-'
|
|
"
|
|
/>
|
|
<DataDisplay
|
|
class="col"
|
|
icon="mdi-passport"
|
|
:label="$t('customerEmployee.form.passportNo')"
|
|
:value="data.employee.employeePassport?.[0]?.number || '-'"
|
|
/>
|
|
<div v-if="$q.screen.gt.sm" class="col"></div>
|
|
</div>
|
|
</section>
|
|
</transition>
|
|
</article>
|
|
<!-- product -->
|
|
<template
|
|
v-for="(value, index) in workList
|
|
?.filter((v) =>
|
|
v.productService.work?.attributes.workflowStep?.[
|
|
pageState.currentStep - 1
|
|
]?.productsId.includes(v.productService.productId),
|
|
)
|
|
.map((v) => {
|
|
const _props =
|
|
v.productService.work?.attributes?.workflowStep[
|
|
pageState.currentStep - 1
|
|
]?.attributes?.properties;
|
|
|
|
return Object.assign(v, {
|
|
_documentExpansion: _props.some(
|
|
(v: PropVariant) => v.fieldName === 'documentCheck',
|
|
),
|
|
_formExpansion: _props.some(
|
|
(v: PropVariant) => v.fieldName === 'designForm',
|
|
),
|
|
});
|
|
})
|
|
.sort(
|
|
(lhs, rhs) =>
|
|
lhs.productService.installmentNo -
|
|
rhs.productService.installmentNo,
|
|
)"
|
|
:key="value"
|
|
>
|
|
<ProductExpansion
|
|
:cancel="data.requestDataStatus === RequestDataStatus.Canceled"
|
|
:readonly="data.requestDataStatus === RequestDataStatus.Canceled"
|
|
:order-able="value._formExpansion"
|
|
:installment-info="getInstallmentInfo()"
|
|
:pay-success="
|
|
isInstallmentPaySuccess(value.productService.installmentNo)
|
|
"
|
|
:status="
|
|
value.stepStatus?.find((v) => v.step === pageState.currentStep)
|
|
"
|
|
:installment-no="value.productService.installmentNo"
|
|
:pay-condition="data?.quotation.payCondition"
|
|
:img-url="`/product/${value.productService.productId}/image/${value.productService.product.selectedImage}`"
|
|
:name="value.productService.product.name"
|
|
:code="value.productService.product.code"
|
|
:product="value.productService.product"
|
|
@change-status="
|
|
(v) => {
|
|
triggerChangeStatusWork({
|
|
workStatus: v.requestWorkStatus,
|
|
step:
|
|
v.step === undefined
|
|
? pageState.currentStep
|
|
: v.step.step,
|
|
requestWorkId: value.id || '',
|
|
});
|
|
}
|
|
"
|
|
>
|
|
<template v-slot="{ product }">
|
|
<section
|
|
class="column surface-1 q-px-sm bordered-t q-pb-sm q-gutter-y-sm"
|
|
>
|
|
<DocumentExpansion
|
|
:readonly="
|
|
data.requestDataStatus === RequestDataStatus.Canceled
|
|
"
|
|
v-if="value._documentExpansion"
|
|
ref="refDocumentExpansion"
|
|
:attributes="value.attributes"
|
|
@change-status="
|
|
(opt) => {
|
|
triggerChangeStatusFile({
|
|
index,
|
|
id: value.id || '',
|
|
documentType: opt.key || '',
|
|
status: opt.status,
|
|
type: opt.type || 'customer',
|
|
});
|
|
}
|
|
"
|
|
@view-doc="
|
|
(opt) => {
|
|
triggerViewFile({
|
|
id: opt.id,
|
|
fileName: opt.data.fileName,
|
|
type: opt.type,
|
|
group: opt.data.documentType,
|
|
});
|
|
}
|
|
"
|
|
@upload="
|
|
async (opt, done) => {
|
|
await triggerUpload({ ...opt });
|
|
await done(opt.type || 'customer');
|
|
}
|
|
"
|
|
@download="
|
|
(opt) => {
|
|
triggerViewFile({
|
|
id: opt.id,
|
|
fileName: opt.data.fileName,
|
|
type: opt.type,
|
|
group: opt.data.documentType,
|
|
download: true,
|
|
});
|
|
}
|
|
"
|
|
:current-id="{
|
|
customer: value.request.quotation.customerBranchId,
|
|
employee: value.request.employeeId,
|
|
}"
|
|
:listDocument="product?.document"
|
|
/>
|
|
<FormExpansion
|
|
:readonly="
|
|
data.requestDataStatus === RequestDataStatus.Canceled
|
|
"
|
|
v-if="value._formExpansion"
|
|
:step="{
|
|
step: pageState.currentStep,
|
|
requestWorkId: value.id || '',
|
|
}"
|
|
:id="value.id"
|
|
:attributes-form="
|
|
value.stepStatus?.[pageState.currentStep - 1]
|
|
"
|
|
:responsible-area-district-id="
|
|
data.quotation.customerBranch.districtId
|
|
"
|
|
/>
|
|
<PropertiesExpansion
|
|
:id="value.id"
|
|
:readonly="
|
|
data.requestDataStatus === RequestDataStatus.Canceled
|
|
"
|
|
:properties-to-show="
|
|
value.productService.work?.attributes.workflowStep[
|
|
pageState.currentStep - 1
|
|
].attributes.properties
|
|
"
|
|
:attributes="value.attributes"
|
|
/>
|
|
</section>
|
|
</template>
|
|
</ProductExpansion>
|
|
</template>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
<style scoped></style>
|