Sha256: 5bd1e4468e5b87f75bc84551a9d9534f6dc5f44676663f03a3bf0caf699c2537
Contents?: true
Size: 813 Bytes
Versions: 3
Compression:
Stored size: 813 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><%= movement.stock_item.variant.name %></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
3 entries across 3 versions & 1 rubygems