{% block body %}

Cross World
Plot 1/B, Road 90, Gulshan -2, Dhaka 1212.

{{ title }} SERVICES SUMMARY STATEMENT
Print Date : {{ "now"|date("d/m/Y") }}

{% set totalAmount = 0 %} {% set totalcostpermonth = 0 %} {% for detail in serviceDetails %} {% set totalAmount = ( totalAmount | default(0) ) + detail.totalamount %} {% set totalcostpermonth = ( totalcostpermonth | default(0) ) + detail.costpermonth %} {% endfor %}
SL No.  AC No. Purchase Date Last Service Date Total Services Cost Cost Per Month
{{loop.index}}  {{detail.number}} {{detail.purchase_date}} {{detail.work_date}} {{ detail.totalamount|number_format(2, '.', ',') }} {{ detail.costpermonth|number_format(2, '.', ',') }}
Grand Total : {{ totalAmount |number_format(2, '.', ',')}} {{ totalcostpermonth |number_format(2, '.', ',')}}
{% endblock %}