{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit Bill{% else %}Create Bill{% endif %} - {{ block.super }}{% endblock %} {% block content %}

{% if object %}Edit Medical Bill{% else %}Create Medical Bill{% endif %}

Back to List {% if object %} View Details {% endif %}
{% csrf_token %}
Patient Information
{{ form.patient }} {% if form.patient.errors %}
{{ form.patient.errors.0 }}
{% endif %}
{{ form.encounter }} {% if form.encounter.errors %}
{{ form.encounter.errors.0 }}
{% endif %}
Bill Details
{{ form.bill_number }} {% if form.bill_number.errors %}
{{ form.bill_number.errors.0 }}
{% endif %}
{{ form.bill_date }} {% if form.bill_date.errors %}
{{ form.bill_date.errors.0 }}
{% endif %}
{{ form.due_date }} {% if form.due_date.errors %}
{{ form.due_date.errors.0 }}
{% endif %}
{{ form.status }} {% if form.status.errors %}
{{ form.status.errors.0 }}
{% endif %}
{{ form.billing_provider }} {% if form.billing_provider.errors %}
{{ form.billing_provider.errors.0 }}
{% endif %}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors.0 }}
{% endif %}
Line Items
{% if object.billlineitem_set.all %} {% for line_item in object.billlineitem_set.all %}
{% endfor %} {% else %}

No line items added yet. Click "Add Item" to get started.

{% endif %}
{% if not object %} {% endif %}
Bill Summary
Subtotal: $0.00
Tax: $0.00
Discount: $0.00

Total: $0.00
Help & Guidelines

  • Select the patient for this bill
  • Link to a specific encounter if applicable
  • Verify patient insurance information

  • Use standard CPT/HCPCS codes
  • Include modifier codes when applicable
  • Verify codes with current fee schedule

  • Draft: Bill is being prepared
  • Pending: Ready for review
  • Submitted: Sent to patient/insurance
  • Paid: Payment received in full
{% endblock %}