d383288f4f
This aligns the interface with all other pages.
52 lines
1.6 KiB
Text
52 lines
1.6 KiB
Text
- title t('.title', number: @invoice.number)
|
|
|
|
%p
|
|
%b= heading_helper(Invoice, :created_at) + ':'
|
|
= format_time(@invoice.created_at)
|
|
%p
|
|
%b= heading_helper(Invoice, :created_by) + ':'
|
|
= show_user(@invoice.created_by)
|
|
%p
|
|
%b= heading_helper(Invoice, :supplier) + ':'
|
|
= @invoice.supplier.name
|
|
|
|
- if @invoice.deliveries.count > 0
|
|
%p
|
|
%b= heading_helper(Invoice, :deliveries) + ':'
|
|
%span><
|
|
- @invoice.deliveries.order(:delivered_on).each_with_index do |delivery, index|
|
|
= ', ' if index > 0
|
|
= link_to format_date(delivery.delivered_on), [delivery.supplier,delivery]
|
|
- if @invoice.orders.count > 0
|
|
%p
|
|
%b= heading_helper(Invoice, :orders) + ':'
|
|
%span><
|
|
- @invoice.orders.order(:ends).each_with_index do |order, index|
|
|
= ', ' if index > 0
|
|
= link_to format_date(order.ends), new_finance_order_path(order_id: order)
|
|
|
|
%p
|
|
%b= heading_helper(Invoice, :number) + ':'
|
|
= @invoice.number
|
|
%p
|
|
%b= heading_helper(Invoice, :date) + ':'
|
|
= @invoice.date
|
|
%p
|
|
%b= heading_helper(Invoice, :paid_on) + ':'
|
|
= @invoice.paid_on
|
|
%p
|
|
%b= heading_helper(Invoice, :amount) + ':'
|
|
= number_to_currency @invoice.amount
|
|
%p
|
|
%b= heading_helper(Invoice, :deposit) + ':'
|
|
= number_to_currency @invoice.deposit
|
|
%p
|
|
%b= heading_helper(Invoice, :deposit_credit) + ':'
|
|
= number_to_currency @invoice.deposit_credit
|
|
%p
|
|
%b= heading_helper(Invoice, :note) + ':'
|
|
=h @invoice.note
|
|
|
|
- if @invoice.user_can_edit?(current_user)
|
|
= link_to t('ui.edit'), edit_finance_invoice_path(@invoice), class: 'btn'
|
|
= link_to t('ui.or_cancel'), finance_invoices_path
|