foodsoft/app/helpers/finance/invoices_helper.rb
Patrick Gansterer a5582e9542 Rename Delivery.delivered_on to date
This aligns it with column names of StockTaking and us to use inheritance
in a next step to share common code between the entities.
2020-09-05 13:52:18 +02:00

8 lines
212 B
Ruby

module Finance::InvoicesHelper
def format_delivery_item delivery
format_date(delivery.date)
end
def format_order_item order
"#{format_date(order.ends)} (#{number_to_currency(order.sum)})"
end
end