27 lines
No EOL
1.2 KiB
Text
27 lines
No EOL
1.2 KiB
Text
<td>
|
|
<%= check_box_tag 'selected_articles[]', @article.id.to_s, false,
|
|
{:id => "checkbox_#{@article.id.to_s}", :onclick => "checkRow('#{@article.id.to_s}')"} %>
|
|
</td>
|
|
<td><%=h @article.name -%></td>
|
|
<td><%= @article.origin -%></td>
|
|
<td><%=h truncate(@article.article_category.name, :length => 11) if @article.article_category -%></td>
|
|
<td><%=h @article.unit -%></td>
|
|
<td><%=h truncate(@article.note, :length => 11) -%></td>
|
|
<td><%= @article.unit_quantity -%></td>
|
|
<td class="currency">
|
|
<acronym title="zuletzt geändert: <%= format_date(@article.updated_at) -%>
|
|
| Brutto: <%= number_to_currency(@article.gross_price) -%>">
|
|
<%= number_to_currency(@article.price) -%>
|
|
</acronym>
|
|
</td>
|
|
<td><%= number_to_percentage(@article.tax) if @article.tax != 0 -%></td>
|
|
<td><%= number_to_currency(@article.deposit) if @article.deposit != 0 -%></td>
|
|
<td>
|
|
<%= remote_link_to icon(:edit, :onclick => "checkRow('#{@article.id.to_s}')"),
|
|
:url => edit_supplier_article_path(@supplier, @article) %>
|
|
<%= remote_link_to icon(:delete, :onclick => "checkRow('#{@article.id.to_s}')"),
|
|
:url => [@supplier, @article],
|
|
:method => :delete,
|
|
:confirm => 'Bist du sicher?' %>
|
|
</td>
|
|
|