Hello 👋

Customer ID: {{ customer.id }}

Mobile Number: {{ customer.phone }}

Buy / Sell Digital Gold

0.000

Wallet Summary

Total Gold: {{ total_gold | round: 4 }} g

Total Amount: {{ total_amount | money }}

Average Rate: ₹{% if gold_count > 0 %}{{ total_rate | divided_by: gold_count | round: 2 }}{% else %}0.00{% endif %}

Transaction History

{% for order in customer.orders %} {% for item in order.line_items %} {% if item.product.title contains 'Gold' %} {% endif %} {% endfor %} {% endfor %}
Date Gold (g) Amount Rate Mode
{{ order.created_at | date: "%d %b %Y" }} {{ item.properties['Gold'] }} {{ item.properties['Total'] }} ₹{{ item.properties['22K Rate'] }} {{ item.properties['Mode'] }}

 

BACK TO TOP