{% extends "base.html" %} {% block title %}Uninvoiced Appointments - Vera Medical CMS{% endblock %} {% block content %}

Uninvoiced Appointments

Appointments 30+ days old that haven't been invoiced

Back to Invoices
{% if appointments %}
{% for appointment in appointments %} {% endfor %}
Appointment Date Case & Claimant Doctor Service Code Days Since Actions
{{ appointment['appointment_date'] }} {% if appointment['appointment_time'] %}
{{ appointment['appointment_time'] }}
{% endif %}
{% if appointment['file_case_id'] %} Case #{{ appointment['file_case_id'] }} {% else %} No case {% endif %}
{{ appointment['claimant_first_name'] or '' }} {{ appointment['claimant_last_name'] or '' }}
{{ appointment['doctor_name'] or '-' }} {{ appointment['service_code'] or '-' }} {% set days_since = appointment['days_since'] if appointment['days_since'] is not none else 0 %} {{ days_since }} days Create Invoice View
{% else %}

All Appointments Invoiced

All appointments 30+ days old have been invoiced.

{% endif %} {% endblock %}