Sha256: 292e430d094b05874af7bbd8c643e5718003f88d68d6cd16257c9fd265cc48e7
Contents?: true
Size: 1.05 KB
Versions: 92
Compression:
Stored size: 1.05 KB
Contents
<tbody id="cart_adjustments" data-hook> <% if @order.line_item_adjustments.exists? %> <% @order.line_item_adjustments.promotion.eligible.group_by(&:label).each do |label, adjustments| %> <%= render "spree/orders/adjustment_row", :label => label, :adjustments => adjustments, :type => Spree.t(:promotion) %> <% end %> <% end %> <% @order.all_adjustments.tax.eligible.group_by(&:label).each do |label, adjustments| %> <%= render "spree/orders/adjustment_row", :label => label, :adjustments => adjustments, :type => Spree.t(:tax) %> <% end %> <% @order.shipments.each do |shipment| %> <tr> <td colspan="4" align='right'><h5><%= Spree.t(:shipping) %>: <%= shipment.shipping_method.name %></h5></td> <td colspan='2'> <h5><%= shipment.display_discounted_cost %></h5> </td> </tr> <% end %> <% @order.adjustments.eligible.group_by(&:label).each do |label, adjustments| %> <%= render "spree/orders/adjustment_row", :label => label, :adjustments => adjustments, :type => Spree.t(:adjustment) %> <% end %> </tbody>
Version data entries
92 entries across 92 versions & 2 rubygems