{% extends "base.html" %} {% load static %} {% block title %}Medical Bills - {{ block.super }}{% endblock %} {% block content %}
|
|
Bill Number | Patient | Date | Total Amount | Paid Amount | Balance | Status | Due Date | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
|
{{ bill.bill_number }} |
{{ bill.patient.get_full_name }}
MRN: {{ bill.patient.mrn }} |
{{ bill.bill_date|date:"M d, Y" }} | ê{{ bill.total_amount|floatformat:'2g' }} | ê{{ bill.paid_amount|floatformat:'2g' }} | ê{{ bill.balance_amount|floatformat:'2g' }} | {% if bill.status == 'DRAFT' %} Draft {% elif bill.status == 'PENDING' %} Pending {% elif bill.status == 'SUBMITTED' %} Submitted {% elif bill.status == 'PARTIAL_PAID' %} Partially Paid {% elif bill.status == 'PAID' %} Paid {% elif bill.status == 'OVERDUE' %} Overdue {% elif bill.status == 'COLLECTIONS' %} Collections {% elif bill.status == 'WRITTEN_OFF' %} Written Off {% elif bill.status == 'CANCELLED' %} Cancelled {% endif %} | {% if bill.due_date %} {{ bill.due_date|date:"M d, Y" }} {% else %} - {% endif %} | |