{{
currencyFormatter.format(packagePrice)
}}
{{ cartItem.name }}
{{ cartItem.name }}
{{
`${
cartItem.category == "promos"
? "(" + currencyFormatter.format(cartItem.subTotal * -1) + ")"
: currencyFormatter.format(cartItem.subTotal)
}`
}}
{{ subtotalText }}{{ currencyFormatter.format(subTotal) }}
{{ salesTaxText }}{{ currencyFormatter.format(salesTax) }}
{{ amountDueText }}{{ currencyFormatter.format(amountDue) }}