Track a Delivery Order
{% if do %}
DO: {{ do.do_number }} / {{ do.delivery_number }}
Status: {{ do.status }}
Created by: {{ do.created_by }}
Final Destination: {{ do.final_location }}
Collected By: {{ do.collected_by if do.collected_by else "Not collected yet" }}
Created: {{ do.created_at }}
{% if do.status != "Completed" and session['store_id'] == do.final_location %}
{% endif %}
Movement History:
{% if movements %}
{% for m in movements %}
-
📍 {{ m.branch_id }} | Handled by {{ m.handled_by }} | Arrived: {{ m.arrived_at }}
{% if m.departed_at %}| Departed: {{ m.departed_at }}{% endif %}
{% if m.comment %}
📝 {{ m.comment }}{% endif %}
{% endfor %}
{% else %}
No movement data yet.
{% endif %}
{% endif %}
Back to Dashboard