Making base service price never say unverified
This commit is contained in:
parent
bf093aba14
commit
5f6b99b0f1
1 changed files with 4 additions and 4 deletions
|
|
@ -10,7 +10,7 @@
|
|||
href="javascript:void(0)"
|
||||
class="col d-flex justify-content-between py-0">
|
||||
<span class="label color-black">{{ amountDueLabel }}</span>
|
||||
<span class="label amount-due">{{ getDisplayed(amountDue) }}</span>
|
||||
<span class="label amount-due">{{ getDisplayedByUnverified(amountDue) }}</span>
|
||||
</a>
|
||||
</div>
|
||||
<div
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
<span
|
||||
id="deductible-label"
|
||||
class="label">{{ deductibleLabel }}</span>
|
||||
<span id="deductible-value">{{ getDisplayed(deductible) }}</span>
|
||||
<span id="deductible-value">{{ getDisplayedByUnverified(deductible) }}</span>
|
||||
</div>
|
||||
<div
|
||||
v-else
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
<span
|
||||
id="base-price-label"
|
||||
class="label">{{ BasePriceLabel }}</span>
|
||||
<span id="base-price-value">{{ getDisplayed(baseServicePrice) }}</span>
|
||||
<span id="base-price-value">{{ getFormattedAmount(baseServicePrice) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -115,7 +115,7 @@ export default {
|
|||
getTotalLineItemPrice(lineItem) {
|
||||
return lineItem.kitPrice + lineItem.laborAmount + lineItem.sellingPrice;
|
||||
},
|
||||
getDisplayed(amount) {
|
||||
getDisplayedByUnverified(amount) {
|
||||
return this.isUnverified
|
||||
? VERIFYING_COVERAGE
|
||||
: this.getFormattedAmount(amount);
|
||||
|
|
|
|||
Loading…
Reference in a new issue