22 lines
817 B
Text
22 lines
817 B
Text
%p{:style => "float:left"}
|
|
%b Lieferung bearbeiten
|
|
%p{:style => "float:right"}
|
|
= remote_link_to "Artikel hinzufügen", :url => {:action => "new_order_article", :id => @order}
|
|
|
|
%table{:class => "ordered_articles", :style => "clear:both"}
|
|
%thead
|
|
%tr
|
|
%th[sort_td_class_helper "name"]{:colspan => "1"}
|
|
= sort_link_helper "Artikel", "name", :action => "new", :remote => false
|
|
%th[sort_td_class_helper "order_number"]
|
|
= sort_link_helper "Nr.", "order_number", :action => "new", :remote => false
|
|
%th Menge
|
|
%th GebGr * Einheit
|
|
%th Netto
|
|
%th Brutto
|
|
%th MwSt
|
|
%th Pfand
|
|
%th{:colspan => "2"}
|
|
%tbody#result_table
|
|
- for order_article in @articles
|
|
= render :partial => "order_article_result", :locals => {:order_article => order_article}
|