{% include 'public_header.html' %}

My Orders

{% if bookings %}

You have placed the following orders:

{% for booking in bookings %}

Order Details

Order Date: {{ booking.master_date }}

{% for child in booking.bookingchild_set.all %} {% endfor %}
Product Name Product Code Subcategory Total Action
{{ child.product.product_name }} {{ child.product.product_code }} {{ child.product.subcategory.name }} ₹{{ child.amount }}
Invoice Summary
  • Sub Total: ₹{{ booking.total }}
  • GST: ₹{{ booking.gstamount }}
  • SGST: ₹{{ booking.sgst }}
  • CGST: ₹{{ booking.cgst }}

Grand Total: ₹{{ booking.gstwithtotal }}

{% endfor %} {% else %}

You have no orders placed yet.

{% endif %}
{% include 'public_footer.html' %}