{% extends "templates/web.html" %} {% block page_content %}

My Orders

Track your service orders and download documents.

{% if message %}
{{ message }}
{% endif %} {% if not has_orders %}

No orders found

You don't have any orders yet. View services →

{% endif %} {% for order in orders %}
{{ order.type_label }}
Order {{ order.ext_id }} {% if order.date %} · {{ frappe.utils.formatdate(order.date, "MMM d, yyyy") }}{% endif %}
${{ "{:,.2f}".format(order.total | float) }} USD {% if order.gateway %}via {{ order.gateway }}{% endif %}
{% if order.steps %}
{% for step in order.steps %}{% if step.status == 'active' %}{{ step.label }}{% endif %}{% endfor %}
{% for step in order.steps %}
{{ step.label }}
{% endfor %}
{% else %}
{{ order.state }}
{% endif %} {% if order.is_delivered %}
Order complete — binder delivered
{% endif %} {% if order.action_url %} {% endif %} {% if order.address %}
Registered office: {{ order.address }}
{% endif %} {% if order.invoices %}
Invoices
{% for inv in order.invoices %}
{{ inv.name }} ${{ "{:,.2f}".format(inv.grand_total | float) }} — {% if inv.outstanding_amount == 0 %} Paid {% elif inv.outstanding_amount < inv.grand_total %} Partially Paid {% else %} Unpaid {% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% if has_compliance %}

FCC Compliance

{% for co in compliance_orders %} {% endfor %}
Service Carrier Ordered Status
{{ co.service_label }}
{{ co.order_number }}
{% if co.entity_name %}
{{ co.entity_name }}
{% if co.entity_frn %}
FRN {{ co.entity_frn }}
{% endif %} {% else %} {% endif %}
{{ frappe.utils.format_date(co.created_at) if co.created_at else "" }} {{ co.filing_badge.label }}
{% endif %}

Need help? Contact support →

{% endblock %}