{% if style.logo_url %} {% endif %}
{{ data.from.name | default('Company Name') }}
{% if data.from.address %}
{{ data.from.address | nl2br }}
{% endif %} {% if data.from.phone %}
Tel: {{ data.from.phone }}
{% endif %} {% if data.from.email %}
{{ data.from.email }}
{% endif %}
WORK ORDER
{% if data.document_number or data.work_order_number %}
#{{ data.work_order_number | default(data.document_number) }}
{% endif %} {% if data.issue_date %}
Issued: {{ data.issue_date | date_format }}
{% endif %}

Job Details
Job Address
{% if data.job_address %}
{{ data.job_address | nl2br }}
{% else %}
{% endif %}
Customer Contact
{% if data.to.name %}
{{ data.to.name }}
{% endif %} {% if data.to.phone %}
Phone: {{ data.to.phone }}
{% endif %} {% if data.to.email %}
{{ data.to.email }}
{% endif %}
Scheduled
{% if data.scheduled_date %}
{{ data.scheduled_date | date_format }}
{% endif %} {% if data.scheduled_time %}
Time: {{ data.scheduled_time }}
{% endif %}
Technician Assignment
{% if data.technician_name %}
Technician
{{ data.technician_name }}
{% endif %} {% if data.vehicle %}
🚗
Vehicle / Equipment
{{ data.vehicle }}
{% endif %}
{% if data.tasks %}
Task Checklist
{% for task in data.tasks %} {% endfor %}
# Status Description Notes
{{ loop.index }} {% if task.completed | default(false) | to_bool %} Done {% else %} Pending {% endif %} {{ task.description | default('') }} {{ task.notes | default('') }}
{% endif %} {% if data.line_items %}
Materials Used
{% for item in data.line_items %} {% endfor %}
Description Qty Unit Cost Total
{{ item.description | default('') }} {{ item.quantity | default(1) }} {{ item.unit_cost | default(item.unit_price | default(0)) | currency }} {{ item.amount | default((item.quantity | default(1)) * (item.unit_cost | default(item.unit_price | default(0)))) | currency }}
{% if data.subtotal or data.total %}
{% if data.subtotal and data.subtotal > 0 %}
Subtotal {{ data.subtotal | currency }}
{% endif %} {% if data.tax and data.tax > 0 %}
Tax {{ data.tax | currency }}
{% endif %}
Total Materials {{ data.total | currency }}
{% endif %}
{% endif %}
Time Tracking
Time In
{% if data.time_in %}
{{ data.time_in }}
{% else %}
--:--
{% endif %}
Time Out
{% if data.time_out %}
{{ data.time_out }}
{% else %}
--:--
{% endif %}
Total Hours
{% if data.total_hours %}
{{ data.total_hours }}{{ ' hrs' }}
{% else %}
0.0 hrs
{% endif %}
{% if data.notes %}
📝 Additional Notes
{{ data.notes | nl2br }}
{% endif %}
👁 Customer Sign-Off
Customer Signature
Printed Name
{% if data.to.name %}
{{ data.to.name }}
{% else %}
 
{% endif %}
Date