Change order details to amount due in cart footer.
This commit is contained in:
parent
1369ed0abe
commit
442a0ff617
1 changed files with 4 additions and 1 deletions
|
|
@ -9,7 +9,7 @@
|
||||||
aria-label="expand cart"
|
aria-label="expand cart"
|
||||||
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">{{ amountDueText }}</span>
|
<span class="label">{{ OrderDetailsText }}</span>
|
||||||
<span class="label amount-due">{{
|
<span class="label amount-due">{{
|
||||||
getLineItemAmount(amountDue, showCoverageAsPending)
|
getLineItemAmount(amountDue, showCoverageAsPending)
|
||||||
}}</span>
|
}}</span>
|
||||||
|
|
@ -1015,6 +1015,9 @@ export default {
|
||||||
return this.getCmsContent("SalesTaxTextWidget", "Text");
|
return this.getCmsContent("SalesTaxTextWidget", "Text");
|
||||||
},
|
},
|
||||||
amountDueText() {
|
amountDueText() {
|
||||||
|
return this.getCmsContent("AmountDueTextWidget", "Text");
|
||||||
|
},
|
||||||
|
OrderDetailsText() {
|
||||||
return this.getCmsContent("OrderDetailsTextWidget", "Text");
|
return this.getCmsContent("OrderDetailsTextWidget", "Text");
|
||||||
},
|
},
|
||||||
amountPaidText() {
|
amountPaidText() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue