diff --git a/src/constants/quote-page-discounts.js b/src/constants/quote-page-discounts.js index c7962af53..da312b8e2 100644 --- a/src/constants/quote-page-discounts.js +++ b/src/constants/quote-page-discounts.js @@ -174,6 +174,7 @@ export const quotePageDiscountTable = [ isInsurance: true, }, // Replace - Curve Tempered + //--Cash { name: "Curve Tempered Glass Only", experimentCode: "Show_GlassOnly_Replace_CT_Discount", @@ -181,6 +182,7 @@ export const quotePageDiscountTable = [ partType: partTypeStrings.QUOTE_PAGE_DISCOUNT, description: "GLASS CT GEOTARGET DISC", packageLevel: packageNames.TIER_ONE, + isInsurance: false, }, { name: "Curve Tempered Standard", @@ -189,6 +191,7 @@ export const quotePageDiscountTable = [ partType: partTypeStrings.QUOTE_PAGE_DISCOUNT, description: "STD CT GEOTARGET DISC", packageLevel: packageNames.TIER_TWO, + isInsurance: false, }, { name: "Curve Tempered Premium", @@ -197,5 +200,34 @@ export const quotePageDiscountTable = [ partType: partTypeStrings.QUOTE_PAGE_DISCOUNT, description: "PREM CT GEOTARGET DISC", packageLevel: packageNames.TIER_THREE, + isInsurance: false, + }, + //--Insurance + { + name: "Insurance Curve Tempered Glass Only", + experimentCode: "Show_Ins_GlassOnly_Replace_CT_Discount", + partNumber: "GL CT INS PKG", + partType: partTypeStrings.QUOTE_PAGE_DISCOUNT, + description: "GLASS CT GEOTARGET DISC", + packageLevel: packageNames.TIER_ONE, + isInsurance: true, + }, + { + name: "Insurance Curve Tempered Standard", + experimentCode: "Show_Ins_Standard_Replace_CT_Discount", + partNumber: "STD CT INS PKG", + partType: partTypeStrings.QUOTE_PAGE_DISCOUNT, + description: "STD CT GEOTARGET DISC", + packageLevel: packageNames.TIER_TWO, + isInsurance: true, + }, + { + name: "Insurance Curve Tempered Premium", + experimentCode: "Show_Ins_Premium_Replace_CT_Discount", + partNumber: "PRM CT INS PKG", + partType: partTypeStrings.QUOTE_PAGE_DISCOUNT, + description: "PREM CT GEOTARGET DISC", + packageLevel: packageNames.TIER_THREE, + isInsurance: true, }, ];