<%= @invoice.number %>

← all invoices

Client
<%= @invoice.client_name %> <<%= @invoice.client_email %>>
Issued
<%= @invoice.issued_on.strftime('%Y-%m-%d') %>
Due
<%= @invoice.due_on.strftime('%Y-%m-%d') %>
Total
<%= @invoice.currency %> <%= '%.2f' % @invoice.total %><% unless @invoice.currency == 'GEL' %> · GEL <%= '%.2f' % @invoice.total_gel %><% end %>
Status
<%= @invoice.status %>
<% if @invoice.paid_at %>
Paid at
<%= @invoice.paid_at.utc.strftime('%Y-%m-%d %H:%M UTC') %>
<% end %>

Actions

Public landing page  ·  Download PDF

Share this URL with the client:
https://asxp.io/i/<%= @invoice.uuid %>

<% unless @invoice.notes.to_s.strip.empty? %>

Notes

<%= @invoice.notes %>

<% end %>