401c8f50a8
display IBANs in groups of 4 digits with whitespaces in between
32 lines
947 B
Text
32 lines
947 B
Text
- title t('.title')
|
|
|
|
- for supplier in @suppliers
|
|
- invoices = supplier.invoices
|
|
- if invoices.any?
|
|
%h3= supplier.name
|
|
- invoices_sum = 0
|
|
- invoices_text = []
|
|
%p
|
|
- for invoice in invoices
|
|
- invoices_sum += invoice.amount
|
|
- invoices_text << invoice.number
|
|
= link_to finance_invoice_path(invoice) do
|
|
= format_date invoice.date
|
|
= ' ' + invoice.number
|
|
= ' ' + number_to_currency(invoice.amount)
|
|
- if invoice.attachment_data?
|
|
= link_to finance_invoice_attachment_path(invoice) do
|
|
= glyph :download
|
|
- if invoice.note?
|
|
= '(' + invoice.note + ')'
|
|
%br/
|
|
%p
|
|
- if supplier.iban.present?
|
|
%b= heading_helper(Supplier, :iban) + ':'
|
|
= format_iban supplier.iban
|
|
%br/
|
|
%b= t('.invoices_text') + ':'
|
|
= invoices_text.join(', ')
|
|
%br/
|
|
%b= t('.invoices_sum') + ':'
|
|
= number_to_currency invoices_sum
|