88 lines
No EOL
4.2 KiB
Text
88 lines
No EOL
4.2 KiB
Text
- content_for :head do
|
|
= render 'data'
|
|
|
|
= render :partial => 'order_head'
|
|
|
|
- form_tag(:action => 'saveOrder', :id => @order) do
|
|
.single_column{:style => "clear:both;margin-bottom:7em;"}
|
|
.box_title
|
|
%h2 Artikel
|
|
.column_content
|
|
%table#order.list
|
|
%thead
|
|
%tr
|
|
%th Name
|
|
%th{:style => "width:13px;"}
|
|
%th{:style => "width:4.5em;"} Preis
|
|
%th{:style => "width:4.5em;"} Einheit
|
|
%th{:style => "width:70px;"} Fehlende Einheiten
|
|
%th#col_required Menge
|
|
- if not @order.stockit?
|
|
%th#col_tolerance Toleranz
|
|
%th{:style => "width:15px;"} Summe
|
|
%tbody
|
|
- total = 0
|
|
- i = 0
|
|
- @articles_grouped_by_category.each do |category, order_articles|
|
|
%tr{:style => "background-color:#EFEFEF"}
|
|
%td{:style => "text-align:left"}
|
|
%b= h category
|
|
%td{:colspan => "9"}
|
|
- order_articles.each do |order_article|
|
|
- if FoodsoftConfig[:tolerance_is_costly]
|
|
- article_total = @price[i] * (@tolerance[i] + @quantity[i])
|
|
- else
|
|
- article_total = @price[i] * @quantity[i]
|
|
- total += article_total
|
|
%tr{:class => "#{cycle('even', 'odd', :name => 'articles')} order-article", :valign => "top"}
|
|
%td.name= order_article.article.name
|
|
%td= h order_article.article.origin
|
|
%td= number_to_currency(@price[i])
|
|
%td= order_article.article.unit
|
|
%td
|
|
%span{:id => "missing_units_#{i}"}
|
|
- if @order.stockit?
|
|
- order_article.article.quantity_available
|
|
- else
|
|
- missing_units = @unit[i] - (((@quantity[i] + @others_quantity[i]) % @unit[i]) + @tolerance[i] + @others_tolerance[i])
|
|
- missing_units < 0 ? 0 : missing_units
|
|
%td.quantity
|
|
%input{:id => "q_#{i}", :name => "ordered[#{order_article.id}][quantity]", :size => "2", :type => "hidden", :value => @quantity[i]}/
|
|
%span.used{:id => "q_used_#{i}"}= @used_quantity[i]
|
|
+
|
|
%span.unused{:id => "q_unused_#{i}"}= @quantity[i] - @used_quantity[i]
|
|
= button_to_function('+', "increaseQuantity(#{i})")
|
|
= button_to_function('-', "decreaseQuantity(#{i})")
|
|
- unless @order.stockit?
|
|
%td.tolerance
|
|
%input{:id => "t_#{i}", :name => "ordered[#{order_article.id}][tolerance]", :size => "2", :type => "hidden", :value => @tolerance[i]}/
|
|
- if (@unit[i] > 1)
|
|
%span.used{:id => "t_used_#{i}"}= @used_tolerance[i]
|
|
+
|
|
%span.unused{:id => "t_unused_#{i}"}= @tolerance[i] - @used_tolerance[i]
|
|
= button_to_function('+', "increaseTolerance(#{i})")
|
|
= button_to_function('-', "decreaseTolerance(#{i})")
|
|
%td{:id => "td_price_#{i}", :style => "text-align:right; padding-right:10px; width:4em"}
|
|
%span{:id => "price_#{i}_display"}= number_to_currency(article_total, :unit => "")
|
|
€
|
|
.article-info
|
|
%h3= order_article.article.name
|
|
.right
|
|
Volle Gebinde:
|
|
%span{:id => "units_#{i}"}= order_article.units_to_order
|
|
%br/
|
|
Gesamt-Einheiten:
|
|
%span{:id => "q_total_#{i}"}= @quantity[i] + @others_quantity[i]
|
|
%br/
|
|
Gesamt-Toleranz:
|
|
%span{:id => "t_total_#{i}"}= @tolerance[i] + @others_tolerance[i]
|
|
%br/
|
|
.left
|
|
Hersteller: #{order_article.article.manufacturer}
|
|
%br/
|
|
Gebinde: #{@order.stockit? ? order_article.article.quantity_available : @unit[i]} * #{h order_article.article.unit}
|
|
%br/
|
|
Notiz: #{order_article.article.note}
|
|
%br/
|
|
- i = i + 1
|
|
= render "order_footer", :total => total |