foodsoft/app/views/deliveries/show.html.haml
Benjamin Meichsner c17b63b192 Second part of stock-integration.
Introduced StockArticle and a special page for ordering from stock. StockChanges will be created and the StockArticle.quantity
updated in 'order.close!'.
2009-02-06 16:26:35 +01:00

28 lines
No EOL
625 B
Text

- title "Lieferung anzeigen"
%p
%b Lieferant:
=h @delivery.supplier.name
%p
%b Delivered on:
= @delivery.delivered_on
%p
%b Rechnungsbetrag:
= link_to_invoice(@delivery)
%h2 Artikel
%table.list{:style => "width:30em"}
%tr
%th Artikel
%th Einheit
%th Menge
- for stock_change in @delivery.stock_changes.find :all, :include => :stock_article
%tr
%td= stock_change.stock_article.name
%td= stock_change.stock_article.unit
%td= stock_change.quantity
%br/
= link_to 'Edit', edit_supplier_delivery_path(@supplier,@delivery)
|
= link_to 'Back', supplier_deliveries_path(@supplier)