diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue
index 06fa922ef..9e5a43bd6 100644
--- a/src/fmg-components/cart/cart.vue
+++ b/src/fmg-components/cart/cart.vue
@@ -140,7 +140,7 @@
Promo code {{ promoCode }} applied
@@ -284,6 +284,7 @@ export default {
(lineItemsToKeep) => lineItemsToKeep.cartItemType != cartItemType
);
},
+
getPromoCodeList() {
if (this.$refs["promoModalQuestion"]) {
return this.$refs["promoModalQuestion"].getPromoCodeList();
@@ -436,7 +437,14 @@ export default {
packagePrice() {
let packagePrice = 0;
- if (!this.showCoverageAsVerified && !this.showCoverageAsPending) {
+ if (!this.isInsurance) {
+ // CASH ONLY
+ packagePrice = baseMixin.methods.getTierOnePackagePrice(
+ baseMixin.methods.filterOutFees(
+ baseMixin.methods.filterOutRecalibration(this.availableLineItems)
+ )
+ );
+ } else if (!this.showCoverageAsVerified && !this.showCoverageAsPending) {
packagePrice = baseMixin.methods.getTierOnePackagePrice(
baseMixin.methods.filterOutFees(this.availableLineItems)
);