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 %} {% else %}

No movement data yet.

{% endif %} {% endif %}

Back to Dashboard