{% extends "base.html" %} {% block title %}Line Items - Invoice {{ invoice['invoice_number'] }} - Vera Medical CMS{% endblock %} {% block content %}
Invoice {{ invoice['invoice_number'] }}
Click to add expenses from appointment additional services
| Service Code | Description | Date | Quantity | Unit Price | Total | Type | Actions |
|---|---|---|---|---|---|---|---|
| {{ item['service_code'] or '-' }} | {{ item['service_description'] or '-' }} | {{ item['service_date'] or '-' }} | {{ "%.2f"|format(item['quantity']) if item['quantity'] else '-' }} | ${{ "%.2f"|format(item['unit_price']) if item['unit_price'] else '0.00' }} CAD | ${{ "%.2f"|format(item['line_total']) }} CAD | {{ item['expense_type'] or 'service' }} | Edit |
| Subtotal: | ${{ "%.2f"|format(line_items|sum(attribute='line_total')) }} CAD | ||||||
No line items added yet. Use the form above to add line items.