{% extends 'base.html.twig' %} {% block title %}Order Status - {{ invoice.displayInvoiceNumber }} - KitsCo{% endblock %} {% block body %} {% include 'shop/_navbar.html.twig' %}

Order Status

Invoice #{{ invoice.displayInvoiceNumber }}

{{ invoice.status.label }}

Order Date

{{ invoice.invoiceDate|date('F d, Y') }}

Due Date

{{ invoice.dueDate|date('F d, Y') }}

Customer

{{ invoice.customer.name }}

Total Amount

{{ invoice.formattedTotal }}

Order Items

{% for item in invoice.items %}
{% if item.product and item.product.imagePath %} {{ item.description }} {% else %} {% endif %}

{{ item.description }}

{{ item.quantity }} x {{ invoice.currency.symbol }}{{ item.unitPrice|money }}

{{ invoice.currency.symbol }}{{ item.amount|money }}

{% endfor %}
Subtotal {{ invoice.currency.symbol }}{{ invoice.subtotal|money }}
{% if invoice.taxAmount != '0.00' %}
Tax ({{ invoice.taxRate }}%) {{ invoice.currency.symbol }}{{ invoice.taxAmount|money }}
{% endif %}
Total {{ invoice.formattedTotal }}

What happens next?

  • 1. Our team will review your order and confirm availability
  • 2. We'll finalize shipping costs and update your invoice
  • 3. You'll receive payment instructions via email
  • 4. Once payment is confirmed, we'll ship your order

Questions about your order? Contact us at sales@kits.co.tz

{% endblock %}