<%= check_box_tag 'selected_articles[]', @article.id.to_s, false,
{:id => "checkbox_#{@article.id.to_s}", :onclick => "checkRow('#{@article.id.to_s}')"} %>
|
<%=h @article.name -%> |
<%= @article.origin -%> |
<%=h truncate(@article.article_category.name, :length => 11) if @article.article_category -%> |
<%=h @article.unit -%> |
<%=h truncate(@article.note, :length => 11) -%> |
<%= @article.unit_quantity -%> |
<%= number_to_currency(@article.net_price) -%>
|
<%= number_to_percentage(@article.tax) if @article.tax != 0 -%> |
<%= number_to_currency(@article.deposit) if @article.deposit != 0 -%> |
<%= link_to_remote icon(:edit, :onclick => "checkRow('#{@article.id.to_s}')"),
:url => edit_supplier_article_path(@supplier, @article),
:method => :get,
:before => "Element.show('loader')",
:success => "Element.hide('loader')" %>
<%= link_to_remote icon(:delete, :onclick => "checkRow('#{@article.id.to_s}')"),
:url => [@supplier, @article],
:method => :delete,
:confirm => 'Bist du sicher?',
:before => "Element.show('loader')",
:success => "Element.hide('loader')" %>
|