Invoice Detail

{{ client.company_name or client.contact_name or client.email }}

{% if (invoice.status or "")|lower == "paid" %}
✓ This invoice has been paid. Thank you!
{% endif %}

Invoice

{{ invoice.invoice_number or ("INV-" ~ invoice.id) }}

Status

{% set s = (invoice.status or "")|lower %} {% if s == "paid" %} {{ invoice.status }} {% elif s == "pending" %} {{ invoice.status }} {% elif s == "overdue" %} {{ invoice.status }} {% else %} {{ invoice.status }} {% endif %}

Created

{{ invoice.created_at }}

Total

{{ invoice.total_amount }}

Paid

{{ invoice.amount_paid }}

Outstanding

{{ invoice.outstanding }}

Invoice Items

{% for item in items %} {% else %} {% endfor %}
Description Qty Unit Price Line Total
{{ item.description }} {{ item.quantity }} {{ item.unit_price }} {{ item.line_total }}
No invoice line items found.
{% if (invoice.status or "")|lower != "paid" %}

Payment Instructions

Interac e-Transfer
Send payment to:
payment@outsidethebox.top
Reference: Invoice {{ invoice.invoice_number or ("INV-" ~ invoice.id) }}

Credit Card (Square)
Pay Now
Please include your invoice number in the payment note.

If you have questions please contact support@outsidethebox.top

{% endif %} {% if invoice.oracle_quote and invoice.oracle_quote.quotes %}

Crypto Quote Snapshot

Quoted At: {{ invoice.oracle_quote.quoted_at or "—" }}
Quote Expires: {{ invoice.quote_expires_at_local or (invoice.oracle_quote.expires_at or "—") }}
Source Status: {{ invoice.oracle_quote.source_status or "—" }}
Frozen Amount: {{ invoice.oracle_quote.amount or invoice.quote_fiat_amount or invoice.total_amount }} {{ invoice.oracle_quote.fiat or invoice.quote_fiat_currency or "CAD" }}
{% for q in invoice.oracle_quote.quotes %} {% endfor %}
Asset Quoted Amount CAD Price Status
{{ q.symbol }} {% if q.chain %}({{ q.chain }}){% endif %} {% if q.recommended %} recommended {% endif %} {{ q.display_amount or "—" }} {% if q.price_cad is not none %}{{ "%.8f"|format(q.price_cad|float) }}{% else %}—{% endif %} {% if q.available %} live {% else %} {{ q.reason or "unavailable" }} {% endif %}

These crypto values were frozen when the invoice was created and are retained for audit/reference.

{% endif %} {% if pdf_url %}
Open Invoice PDF
{% endif %}
{% include "footer.html" %}