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)"
|
href="javascript:void(0)"
|
||||||
class="col d-flex justify-content-between py-0">
|
class="col d-flex justify-content-between py-0">
|
||||||
<span class="label color-black">{{ amountDueLabel }}</span>
|
<span class="label color-black">{{ amountDueLabel }}</span>
|
||||||
<span class="label amount-due">{{ getDisplayed(amountDue) }}</span>
|
<span class="label amount-due">{{ getDisplayedByUnverified(amountDue) }}</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
<span
|
<span
|
||||||
id="deductible-label"
|
id="deductible-label"
|
||||||
class="label">{{ deductibleLabel }}</span>
|
class="label">{{ deductibleLabel }}</span>
|
||||||
<span id="deductible-value">{{ getDisplayed(deductible) }}</span>
|
<span id="deductible-value">{{ getDisplayedByUnverified(deductible) }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<span
|
<span
|
||||||
id="base-price-label"
|
id="base-price-label"
|
||||||
class="label">{{ BasePriceLabel }}</span>
|
class="label">{{ BasePriceLabel }}</span>
|
||||||
<span id="base-price-value">{{ getDisplayed(baseServicePrice) }}</span>
|
<span id="base-price-value">{{ getFormattedAmount(baseServicePrice) }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -115,7 +115,7 @@ export default {
|
||||||
getTotalLineItemPrice(lineItem) {
|
getTotalLineItemPrice(lineItem) {
|
||||||
return lineItem.kitPrice + lineItem.laborAmount + lineItem.sellingPrice;
|
return lineItem.kitPrice + lineItem.laborAmount + lineItem.sellingPrice;
|
||||||
},
|
},
|
||||||
getDisplayed(amount) {
|
getDisplayedByUnverified(amount) {
|
||||||
return this.isUnverified
|
return this.isUnverified
|
||||||
? VERIFYING_COVERAGE
|
? VERIFYING_COVERAGE
|
||||||
: this.getFormattedAmount(amount);
|
: this.getFormattedAmount(amount);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue