Product |
Size |
Color |
Quantity |
Price |
Subtotal |
{% set count = namespace(value=0) %}
{%for barcode in Cart.data()['items']%}
{%set product = get_product(barcode) %}
{%set items = Cart.data()['items'][barcode] %}
{% for item in items %}
{% set count.value = count.value + 1 %}
{{ product.name }} |
{{ item['size'] }} |
{{ item['color'] }} |
{{ item['quantity'] }} |
{{product.selling_price}} |
{{product.selling_price * item['quantity'] }} |
{% endfor %}
{%endfor%}
Grand Subtotal: {{get_currency_symbol()}}
Grand total: {{get_currency_symbol()}}