Sha256: 816bf5895e9c016feb8dae6052827c6cc9a067f4db78e02832b7a3091dc2fb38
Contents?: true
Size: 1.49 KB
Versions: 6
Compression:
Stored size: 1.49 KB
Contents
<% shipment_manifest.each do |item| %> <tr class="stock-item" data-item-quantity="<%= item.quantity %>" data-variant-id="<%= item.variant.id %>" > <td class="item-image align-center"> <%= render 'spree/admin/shared/image', image: item.variant.display_image, size: :mini %> </td> <td class="item-name"> <%= item.variant.product.name %><br><%= "(" + variant_options(item.variant) + ")" unless item.variant.option_values.empty? %> <% if item.variant.sku.present? %> <strong><%= Spree::Variant.human_attribute_name(:sku) %>:</strong> <%= item.variant.sku %> <% end %> </td> <td class="item-price"><%= item.line_item.single_money.to_html %></td> <td class="item-qty-show"> <% item.states.each do |state,count| %> <%= count %> x <%= t(state, scope: 'spree.inventory_states') %> <% end %> </td> <td class="item-total"><%= line_item_shipment_price(item.line_item, item.quantity) %></td> <td class="cart-item-delete actions" data-hook="cart_item_delete"> <% if can? :update, item %> <%= button_tag '', class: 'split-item icon_link fa fa-arrows-h no-text with-tip', data: { action: 'edit', 'variant-id' => item.variant.id }, title: t('spree.actions.split'), type: :button %> <%= button_tag '', class: 'delete-item fa fa-trash no-text with-tip', data: { action: 'remove', 'variant-id' => item.variant.id }, title: t('spree.actions.delete'), type: :button %> <% end %> </td> </tr> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems