Sha256: 24bcaa37c97184025020a522eb5dcc9ccfbb9a67f70285454ae16f577b7b18d3
Contents?: true
Size: 1 KB
Versions: 15
Compression:
Stored size: 1 KB
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> <div class="table-responsive"> <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> </div>
Version data entries
15 entries across 15 versions & 1 rubygems