Sha256: 3a174c06ae5796a9205ccea7115f5f086d71d1e5dbea394024a5fe346f402f5b

Contents?: true

Size: 490 Bytes

Versions: 1

Compression:

Stored size: 490 Bytes

Contents

<h1><%= t("adv_report.outstanding") %>: <%= number_to_currency @outstanding_balance %> </h1>

<table style="width:40%;">
  <tr>
    <th><%= t(:order) %>:</th>
    <th><%= t(:order_date) %>:</th>
    <th><%= t("adv_report.outstanding") %>:</th>
  </tr>
  <% @orders.each do |order| %>
    <tr>
      <td><%= link_to order.number, admin_order_path(order) %></td>
      <td><%= l order.completed_at.to_date %></td>
      <td><%= order.outstanding_balance %></td>
    </tr>
  <% end %>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_advanced_reporting-2.1.0 app/views/spree/admin/reports/outstanding.html.erb