Employee
{{ employee_name }}
Department
{{ department }}
Employee ID
{{ employee_id | default("N/A") }}
Period From
{{ period_from }}
Period To
{{ period_to }}
Purpose
{{ purpose | default("Business expenses") }}
| Date |
Category |
Description |
Amount |
{% for item in expenses %}
| {{ item.date }} |
{{ item.category }} |
{{ item.description }}
{% if item.vendor %}{{ item.vendor }} {% endif %}
|
{{ item.amount }} |
{% endfor %}
{% if advance_amount %}
Subtotal
{{ subtotal }}
Less: Advance
-{{ advance_amount }}
{% endif %}
Total Due
{{ total }}
Submitted By
{{ employee_name }}
Date: {{ submission_date | default("_______________") }}
Approved By
{{ approver_name | default("_______________") }}
{{ approver_title | default("") }}
Date: {{ approval_date | default("_______________") }}
{% if notes %}
{% endif %}
{{ company_name }} — Expense Report {{ report_id }}
{{ employee_name }}