@if (!(cartItem$ | async)?.length) {
} @if ((cartItem$ | async)?.length) {
@for (item of cartItem$ | async; track item) { @if(item) {
-
{{item?.variation ? item?.variation?.name : item?.product?.name}}
{{ (item?.variation ? item?.variation?.sale_price : item?.product &&
item?.wholesale_price ? item?.wholesale_price : item?.product?.sale_price)! |
currencySymbol}}
} }
}
@if ((cartItem$ | async)?.length) {
-
{{ 'subtotal' | translate }}
{{ (cartTotal$ | async)! | currencySymbol}}
-
{{ 'shipping' | translate }}
{{ 'cost_at_checkout' | translate }}
-
{{ 'tax' | translate }}
{{ 'cost_at_checkout' | translate }}
-
{{ 'total' | translate }}
{{ (cartTotal$ | async)! | currencySymbol}}
}
@if ((cartItem$ | async)?.length) {
{{ 'proceed_to_checkout' | translate }}
}