fix(05): display final price on quotation card

This commit is contained in:
puriphatt 2024-10-18 09:20:47 +07:00
parent 7a06bfe87e
commit 7fed8d40e1

View file

@ -511,6 +511,7 @@ watch(() => pageState.currentTab, fetchQuotationList);
<article v-else class="col q-pa-md surface-2 scroll">
<div class="row q-col-gutter-md">
<div v-for="v in quotationData" :key="v.id" class="col-md-4 col-12">
{{ console.log(v) }}
<QuotationCard
:urgent="v.urgent"
:type="
@ -536,7 +537,7 @@ watch(() => pageState.currentTab, fetchQuotationList);
? v.createdBy.firstNameEN + ' ' + v.createdBy.lastNameEN
: v.createdBy.firstName + ' ' + v.createdBy.lastName
"
:total-price="v.totalPrice"
:total-price="v.finalPrice"
@view="
() => {
triggerQuotationDialog({