1234567891011121314151617181920212223242526272829303132333435363738 |
- <h1>Pages#index</h1>
- <p>Find me in app/views/pages/index.html.erb</p>
- <table class="table table-bordered table-striped table-hover">
- <tr>
- <th>#</th>
- <th>訂單</th>
- <th>明細</th>
- </tr>
- <% @orders.each.with_index(1) do |order,index| %>
- <tr>
- <td><%= index %></td>
- <td><%= order.OrderNumber %></td>
- <td>
- <table class="table table-striped table-hover">
- <tr>
- <th>#</th>
- <th>型號</th>
- <th>單價</th>
- <th>數量</th>
- <th>折扣</th>
- <th>小計</th>
- </tr>
- <% order.lines.each do |line| %>
- <tr>
- <td><%= line.LineNum %></td>
- <td><%= line.ProdId %></td>
- <td><%= line.UnitPrice %></td>
- <td><%= line.Quantity %></td>
- <td><%= line.Discount %>%</td>
- <td><%= line.SubTotal %></td>
- </tr>
- <% end %>
- </table>
- </td>
- </tr>
- <% end %>
- </table>
|