{% extends 'base.html' %} {% load static %} {% block title %}Customer Ledger Report - BM ERP{% endblock %} {% block content %}
{% include 'partials/mobile.html' %}
{% include 'partials/sidebar_list.html' %}
{% include 'partials/header.html' %} {% for data in entry_data %} {% if forloop.first %}

{{ data.entry.project_name.project_first_name }} Reports

{% endif %} {% endfor %} {% if messages %}
    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %}
{% for data in report_data %} {% empty %} {% endfor %}
Date Customer Project Amount (Debit) Amount (Credit) Balance
{{ data.first_date }} {{ data.customer.customer_name }} {{ data.project_name }} {{ data.total_debit|floatformat:2 }} {{ data.total_credit|floatformat:2 }} {{ data.balance|floatformat:2 }}
No records found.
{% endblock %}