feat: get actor through metadata

This commit is contained in:
Methapon Metanipat 2024-10-15 09:50:52 +07:00
parent da7a77b2c0
commit 0e2c1210be

View file

@ -544,7 +544,11 @@ watch(() => pageState.currentTab, fetchQuotationList);
v.customerBranch.registerName || v.customerBranch.registerName ||
`${v.customerBranch.firstName || '-'} ${v.customerBranch.lastName || ''}` `${v.customerBranch.firstName || '-'} ${v.customerBranch.lastName || ''}`
" "
:reporter="v.actorName" :reporter="
$i18n.locale === 'en-US'
? v.createdBy.firstNameEN + ' ' + v.createdBy.lastNameEN
: v.createdBy.firstName + ' ' + v.createdBy.lastName
"
:total-price="v.totalPrice" :total-price="v.totalPrice"
@view=" @view="
() => { () => {