Sha256: 8f942a956e3ef8550ddbff781416664f4d5efb9138444009da071fe92b1bca3a
Contents?: true
Size: 671 Bytes
Versions: 31
Compression:
Stored size: 671 Bytes
Contents
<fieldset class="no-border-bottom"> <legend><%= title %></legend> <table> <thead> <tr> <th><%= Spree::Adjustment.human_attribute_name(:name) %></th> <th><%= Spree::Adjustment.human_attribute_name(:amount) %></th> </tr> </thead> <tbody data-hook="order_details_adjustments"> <% adjustments.eligible.group_by(&:label).each do |label, adjustments| %> <tr class="total"> <td><%= label %>:</td> <td class="total"><span><%= Spree::Money.new(adjustments.sum(&:amount), currency: adjustments.first.order.try(:currency)) %></span></td> </tr> <% end %> </tbody> </table> </fieldset>
Version data entries
31 entries across 31 versions & 2 rubygems