Sha256: 6635a10e51779bb87ff1efa9cab37390e05f3cb361ab4287d8b56cd2d534ec9f
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
<% if adjustments.eligible.exists? %> <div class="card mb-3"> <div class="card-header"> <h1 class="card-title mb-0 h5"> <%= title %> </h1> </div> <div class="table-responsive"> <table class="table table-bordered"> <thead> <tr> <th><%= Spree.t('name')%></th> <th><%= Spree.t('amount')%></th> </tr> </thead> <tbody id="order-charges" data-hook="order_details_adjustments"> <% adjustments.eligible.group_by(&:label).each do |label, adjustments| %> <tr class="total"> <td> <strong><%= label %>:</strong> </td> <td class="total"> <span> <%= Spree::Money.new( adjustments.sum(&:amount), currency: adjustments.first.order.try(:currency) ) %> </span> </td> </tr> <% end %> </tbody> </table> </div> </div> <% end %>
Version data entries
5 entries across 5 versions & 1 rubygems