Pages#index
Find me in app/views/pages/index.html.erb
# |
訂單 |
明細 |
<% @orders.each.with_index(1) do |order,index| %>
<%= index %> |
<%= order.OrderNumber %> |
# |
型號 |
單價 |
數量 |
折扣 |
小計 |
<% order.lines.each do |line| %>
<%= line.LineNum %> |
<%= line.ProdId %> |
<%= line.UnitPrice %> |
<%= line.Quantity %> |
<%= line.Discount %>% |
<%= line.SubTotal %> |
<% end %>
|
<% end %>