Sha256: 11227615c1db3ea6af5cd0fd06754441e364729adab85e7b78e21b038ca127d6
Contents?: true
Size: 979 Bytes
Versions: 4
Compression:
Stored size: 979 Bytes
Contents
<div id="source-movements-table" class="col-xs-9"> <table class="index sortable"> <colgroup> <col style="width: 40%" /> <col style="width: 30%" /> <col style="width: 10%" /> <col style="width: 20%" /> </colgroup> <thead data-hook="bulk_variants_header"> <tr> <th><%= Spree::Variant.model_name.human %></th> <th><%= Spree::Variant.human_attribute_name(:sku) %></th> <th><%= Spree::StockMovement.human_attribute_name(:quantity) %></th> <th><%= Spree::StockItem.human_attribute_name(: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 class='align-center'><%= movement.stock_item.variant.sku %></td> <td class='align-center'><%= movement.quantity %></td> <td class='align-center'><%= movement.stock_item.count_on_hand %></td> <% end %> </tbody> </table> </div>
Version data entries
4 entries across 4 versions & 1 rubygems