foodsoft/app/helpers/deliveries_helper.rb

34 lines
1.3 KiB
Ruby
Raw Normal View History

module DeliveriesHelper
2013-06-26 15:16:52 +02:00
2009-01-18 17:42:51 +01:00
def link_to_invoice(delivery)
if delivery.invoice
link_to number_to_currency(delivery.invoice.amount), [:finance, delivery.invoice],
2013-04-10 17:29:06 +02:00
title: I18n.t('helpers.deliveries.show_invoice')
2009-01-18 17:42:51 +01:00
else
2013-04-10 17:29:06 +02:00
link_to I18n.t('helpers.deliveries.new_invoice'), new_finance_invoice_path(supplier_id: delivery.supplier.id, delivery_id: delivery.id),
2012-10-17 20:45:52 +02:00
class: 'btn btn-mini'
2009-01-18 17:42:51 +01:00
end
end
2013-06-26 15:16:52 +02:00
2013-12-18 17:34:45 +01:00
def articles_for_select2(articles, except = [], &block)
articles = articles.reorder('articles.name ASC')
articles.reject! {|a| not except.index(a.id).nil? } if except
block_given? or block = Proc.new {|a| "#{a.name} (#{number_to_currency a.price}/#{a.unit})" }
articles.map do |a|
{:id => a.id, :text => block.call(a)}
end.unshift({:id => '', :text => ''})
end
2013-06-26 15:16:52 +02:00
2013-12-18 17:34:45 +01:00
def articles_for_table(articles)
articles.undeleted.reorder('articles.name ASC')
end
2013-06-26 15:16:52 +02:00
def stock_change_remove_link(stock_change_form)
return link_to t('deliveries.stock_change_fields.remove_article'), "#", :class => 'remove_new_stock_change btn btn-small' if stock_change_form.object.new_record?
2013-06-26 15:16:52 +02:00
output = stock_change_form.hidden_field :_destroy
output += link_to t('deliveries.stock_change_fields.remove_article'), "#", :class => 'destroy_stock_change btn btn-small'
2013-06-26 15:16:52 +02:00
return output.html_safe
end
end