Sha256: b572aa535a41eef13e64a50b721cfd8a8d6458ebb6e83d3f360148f5043e70f3
Contents?: true
Size: 948 Bytes
Versions: 35
Compression:
Stored size: 948 Bytes
Contents
<% content_for :page_title do %> <%= link_to Spree.t(:reports), spree.admin_reports_url %> / <%= Spree.t(:sales_totals) %> <% end %> <div class="card bg-light mb-3"> <div class="card-body"> <%= render partial: 'spree/admin/shared/report_order_criteria' %> </div> </div> <table class="table table-bordered admin-report" data-hook="sales_total"> <thead> <tr> <th><%= Spree.t(:currency) %></th> <th><%= Spree.t(:item_total) %></th> <th><%= Spree.t(:adjustment_total) %></th> <th><%= Spree.t(:sales_total) %></th> </tr> </thead> <tbody> <% @totals.each do |key, row| %> <tr> <td><%= key %></td> <td><%= Spree::Money.new(row[:item_total], { currency: key }) %></td> <td><%= Spree::Money.new(row[:adjustment_total], { currency: key }) %></td> <td><%= Spree::Money.new(row[:sales_total], { currency: key }) %></td> </tr> <% end %> </tbody> </table>
Version data entries
35 entries across 35 versions & 1 rubygems