Sha256: 6762dd2ab6a1819b2d180e160f6d82623e89174b975ebce340153b5727f1902a
Contents?: true
Size: 889 Bytes
Versions: 23
Compression:
Stored size: 889 Bytes
Contents
<div id="source-movements-table" class="twelve columns alpha"> <div class="table-responsive"> <table class="table sortable"> <thead data-hook="bulk_variants_header"> <tr> <th><%= Spree.t('variant') %></th> <th><%= Spree.t('sku') %></th> <th><%= Spree.t('quantity') %></th> <th><%= Spree.t('count_on_hand') %></th> </tr> </thead> <tbody id="bulk_variants_tbody"> <% stock_movements.each do |movement| %> <tr> <td><%= link_to movement.stock_item.variant.name, spree.edit_admin_product_path(movement.stock_item.variant.product) %></td> <td><%= movement.stock_item.variant.sku %></td> <td><%= movement.quantity %></td> <td><%= movement.stock_item.count_on_hand %></td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
23 entries across 23 versions & 1 rubygems