Hide deliveries column if there are no deliveries
For foodcoops which do not use the delivery feature the column occupies space in the table, which could be user better with something else.
This commit is contained in:
parent
f5b6fbcf18
commit
7d7dfd7155
1 changed files with 7 additions and 5 deletions
|
@ -10,6 +10,7 @@
|
||||||
%th= heading_helper Invoice, :date
|
%th= heading_helper Invoice, :date
|
||||||
%th= heading_helper Invoice, :paid_on
|
%th= heading_helper Invoice, :paid_on
|
||||||
%th= heading_helper Invoice, :amount
|
%th= heading_helper Invoice, :amount
|
||||||
|
- if Delivery.any?
|
||||||
%th= heading_helper Invoice, :deliveries
|
%th= heading_helper Invoice, :deliveries
|
||||||
%th= heading_helper Invoice, :orders
|
%th= heading_helper Invoice, :orders
|
||||||
%th= heading_helper Invoice, :note
|
%th= heading_helper Invoice, :note
|
||||||
|
@ -23,6 +24,7 @@
|
||||||
%td= link_to h(format_date invoice.date), finance_invoice_path(invoice)
|
%td= link_to h(format_date invoice.date), finance_invoice_path(invoice)
|
||||||
%td= format_date invoice.paid_on
|
%td= format_date invoice.paid_on
|
||||||
%td= number_to_currency invoice.amount
|
%td= number_to_currency invoice.amount
|
||||||
|
- if Delivery.any?
|
||||||
%td><
|
%td><
|
||||||
- invoice.deliveries.each_with_index do |delivery, index|
|
- invoice.deliveries.each_with_index do |delivery, index|
|
||||||
= ', ' if index > 0
|
= ', ' if index > 0
|
||||||
|
|
Loading…
Reference in a new issue