{% extends 'base.html.twig' %} {% block body %}

Cart

Cart
{% set p=1 %} {% set pd = 0 %} {% if(FTCHCart|length)>0 %} {% for prodcrt in FTCHCart %} {#% set pd = pd+(prodcrt.prd_qty*prodcrt.prod_cost) %#} {% set pd = pd+(prodcrt.prd_qty*price_arr[prodcrt.weight_id]) %} {% set p=p+1 %} {% endfor %} {% else %} {% endif %} Note: Price Shows without Discount, Discount calculated below
Image Product Name Price Quantity Total Remove
Product image Product image {{prodcrt.product_name}}
({{packname[prodcrt.weight_id]}} - {{weigh_arr[prodcrt.weight_id]}}g)
Rs. {{price_arr[prodcrt.weight_id]}}
Rs. {{prodcrt.total_price | number_format(2)}}
There are no itemes in your cart.
Continue Shopping
{#
Note: Price Shows without Discount, Discount calculated below
Image Product Name Quantity Total
Freeze - Dried Sugarcane Juice Powder – Naturally Sweet
Product image Product image

(Pack of 3 - 105g)

Rs. 420.00

Rs. 420.00
Continue Shopping
#}

 

{% set shprice = 0%} {% set tot_ord = 0%} {% if(pd<420) %} {% set shprice = shipping_cost %} {% endif %} {% if(shprice ==0)%} {% set sp = "Free Shipping" %} {% set sp1 = '' %} {% set sp2 = 0 %} {% set tot_ord = pd%} {% else %} {% set sp = shprice | number_format(2) %} {% set sp1 = 'Rs. ' %} {% set tot_ord = pd+sp %} {% set sp2 = shprice %} {% endif %} {% if(pd==0) %} {% set tot_ord = 0 %} {% set sp = 0 %} {% endif %} {% if(FTCHDisc|length >0) %} {% set dsc = (tot_ord*FTCHDisc[0]['discount_value'])/100 %} {% set tot_ord = tot_ord-dsc%} {% else %} {% set dsc = 0 %} {% endif %} {% if(FTCHDisc|length >0) %} {% endif %}
Cart Total Rs. {{pd | number_format(2)}}
Discount ({{FTCHDisc[0]['discount_value']}}%) (-) Rs. {{dsc| number_format(2)}}
Shipping Cost (+) {{sp1}}{{sp | number_format(2)}}
Order Total Rs. {{tot_ord | number_format(2)}}
{% if(FTCHCart|length)>0 %} Proceed to checkout {% endif %}
{% endblock %}