Sha256: 797534ab759f917b9d8d0a9e376775892cefed795be71ffc95cb64e3a9055bbb
Contents?: true
Size: 1.59 KB
Versions: 36
Compression:
Stored size: 1.59 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.gallery.images.first || item.variant.product.gallery.images.first), size: :mini %> </td> <td class="item-name"> <%= link_to item.variant.product.name, edit_admin_product_path(item.variant.product) %><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"><%= item.line_item.display_amount %></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
36 entries across 36 versions & 1 rubygems