Improved delivery-invoice-workflow.
This commit is contained in:
parent
936e6ef69a
commit
ff6b460cfc
28 changed files with 253 additions and 231 deletions
27
app/views/stockit/index.html.haml
Normal file
27
app/views/stockit/index.html.haml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
- title "Lagerübersicht"
|
||||
|
||||
%p
|
||||
- form_tag do
|
||||
Neue Lieferung anlegen für:
|
||||
= select_tag :new_delivery, |
|
||||
options_for_select([" -- Lieferantin wählen --", ""] + |
|
||||
Supplier.find(:all).collect {|s| [ s.name, url_for(new_supplier_delivery_path(s))] }), |
|
||||
:onchange => "redirectTo(this)", :style => "font-size: 0.9em;margin-left:1em;" |
|
||||
|
||||
%p
|
||||
%table.list
|
||||
%thead
|
||||
%tr
|
||||
%th Artikel
|
||||
%th Menge
|
||||
%th Einheit
|
||||
%th Preis
|
||||
%th Lieferant
|
||||
%tbody
|
||||
- for article in @articles
|
||||
%tr{:class => cycle("even", "odd")}
|
||||
%td=h article.name
|
||||
%td= article.quantity
|
||||
%td= article.unit
|
||||
%td= article.net_price
|
||||
%td= link_to article.supplier.name, article.supplier
|
||||
Loading…
Add table
Add a link
Reference in a new issue