User Dashboard - {{logged_user_profile.user.first_name|upper}}
{{logged_user_profile.middle_name|upper}} ({{logged_user_profile.user.username}}) {{today}}
{{currency}} {{previous_balance|floatformat:2|intcomma}}
Opening Balance
{{currency}} {{transaction_summary.debit_total|floatformat:2|intcomma}}
Today
{{currency}} {{transaction_summary.credit_total|floatformat:2|intcomma}}
Today
{{currency}} {{cash_total|floatformat:2}}
Cash Payments
{{currency}} {{pdq_total|floatformat:2}}
PDQ Payments
{{currency}} {{bank_total|floatformat:2}}
Bank Payments
{{currency}} {{net_total|floatformat:2|intcomma}}
Total Payments
| Invoice |
Date |
Time |
Status |
Amount |
{% for invoice_payment in invoice_cash_list %}
| {{invoice_payment.invoice.id}} |
{{invoice_payment.invoice.invoice_date}} |
{{invoice_payment.invoice.invoice_time}} |
{% if invoice_payment.invoice.invoice_status|lower == "paid" %}
Paid |
{% elif invoice_payment.invoice.invoice_status|lower == "unpaid" %}
Unpaid |
{% elif invoice_payment.invoice.invoice_status|lower == "cancelled" %}
Cancelled |
{% else %}
Error# {{invoice_payment.invoice.invoice_status}} |
{% endif %}
{{currency}} {{invoice_payment.amount|floatformat:2|intcomma}} |
{% endfor %}
| Receipt |
Date |
Time |
Status |
Amount ({{currency}}) |
{% for customer_payment_item in customer_payment_cash_list %}
| {{customer_payment_item.customer_payment.id}} |
{{customer_payment_item.customer_payment.payment_date}} |
{{customer_payment_item.customer_payment.payment_time}} |
{% if customer_payment_item.customer_payment.payment_status|lower == "paid" %}
Paid |
{% elif customer_payment_item.customer_payment.payment_status|lower == "unpaid" %}
Unpaid |
{% elif customer_payment_item.customer_payment.payment_status|lower == "cancelled" %}
Cancelled |
{% else %}
Error# {{customer_payment_item.customer_payment.payment_status}} |
{% endif %}
{{currency}} {{customer_payment_item.amount|floatformat:2|intcomma}} |
{% endfor %}
| Invoice |
Date |
Time |
Status |
Amount ({{currency}}) |
{% for invoice_payment in invoice_pdq_list %}
| {{invoice_payment.invoice.id}} |
{{invoice_payment.invoice.invoice_date}} |
{{invoice_payment.invoice.invoice_time}} |
{% if invoice_payment.invoice.invoice_status|lower == "paid" %}
Paid |
{% elif invoice_payment.invoice.invoice_status|lower == "unpaid" %}
Unpaid |
{% elif invoice_payment.invoice.invoice_status|lower == "cancelled" %}
Cancelled |
{% else %}
Error# {{invoice_payment.invoice.invoice_status}} |
{% endif %}
{{currency}} {{invoice_payment.amount|floatformat:2|intcomma}} |
{% endfor %}
| Receipt |
Date |
Time |
Status |
Amount ({{currency}}) |
{% for customer_payment_item in customer_payment_pdq_list %}
| {{customer_payment_item.customer_payment.id}} |
{{customer_payment_item.customer_payment.payment_date}} |
{{customer_payment_item.customer_payment.payment_time}} |
{% if customer_payment_item.customer_payment.payment_status|lower == "paid" %}
Paid |
{% elif customer_payment_item.customer_payment.payment_status|lower == "unpaid" %}
Unpaid |
{% elif customer_payment_item.customer_payment.payment_status|lower == "cancelled" %}
Cancelled |
{% else %}
Error# {{customer_payment_item.customer_payment.payment_status}} |
{% endif %}
{{currency}} {{customer_payment_item.amount|floatformat:2|intcomma}} |
{% endfor %}
| Invoice |
Date |
Time |
Status |
Amount ({{currency}}) |
{% for invoice_payment in invoice_bank_list %}
| {{invoice_payment.invoice.id}} |
{{invoice_payment.invoice.invoice_date}} |
{{invoice_payment.invoice.invoice_time}} |
{% if invoice_payment.invoice.invoice_status|lower == "paid" %}
Paid |
{% elif invoice_payment.invoice.invoice_status|lower == "unpaid" %}
Unpaid |
{% elif invoice_payment.invoice.invoice_status|lower == "cancelled" %}
Cancelled |
{% else %}
Error# {{invoice_payment.invoice.invoice_status}} |
{% endif %}
{{currency}} {{invoice_payment.amount|floatformat:2|intcomma}} |
{% endfor %}
| Receipt |
Date |
Time |
Status |
Amount ({{currency}}) |
{% for customer_payment_item in customer_payment_bank_list %}
| {{customer_payment_item.customer_payment.id}} |
{{customer_payment_item.customer_payment.payment_date}} |
{{customer_payment_item.customer_payment.payment_time}} |
{% if customer_payment_item.customer_payment.payment_status|lower == "paid" %}
Paid |
{% elif customer_payment_item.customer_payment.payment_status|lower == "unpaid" %}
Unpaid |
{% elif customer_payment_item.customer_payment.payment_status|lower == "cancelled" %}
Cancelled |
{% else %}
Error# {{customer_payment_item.customer_payment.payment_status}} |
{% endif %}
{{currency}} {{customer_payment_item.amount|floatformat:2|intcomma}} |
{% endfor %}
| Voucher |
Date |
Time |
Type |
Amount ({{currency}}) |
{% for cash_voucher in cash_voucher_list %}
| {{cash_voucher.id}} |
{{cash_voucher.transaction_date}} |
{{cash_voucher.transaction_time}} |
{{cash_voucher.transaction_type}} |
{{currency}} {{cash_voucher.transaction_amount|floatformat:2|intcomma}} |
{% endfor %}
{% endblock %}