Sha256: 8286c89ed801e1c01aaeb393164ae10e734ec41186b9c23d67ec5ceb63e7b561
Contents?: true
Size: 943 Bytes
Versions: 34
Compression:
Stored size: 943 Bytes
Contents
<% if adjustments.eligible.exists? %> <div class="panel panel-default"> <div class="panel-heading"> <h1 class="panel-title"> <%= title %> </h1> </div> <table class="table table-bordered"> <thead> <th><%= Spree.t('name')%></th> <th><%= Spree.t('amount')%></th> </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> <% end %>
Version data entries
34 entries across 34 versions & 1 rubygems