Sha256: c1232c3b1580cfa8f962f2072568e2bc6b079eb5f71a0c28557cff1508a6ca2a

Contents?: true

Size: 867 Bytes

Versions: 2

Compression:

Stored size: 867 Bytes

Contents

<%= render 'shared/error_messages', :target => @level %>

<%= form_tag do %>
<br/><br/>			

<h1><%= t("inventory_adjustment") %></h1>

<table class="basic-table">
  <thead data-hook="inventory_header">
    <tr>
      <th><%= t("sku") %></th>
      <th><%= t("product") %></th>
      <th><%= t("options") %></th>
      <th><%= t("current") %></th>
      <th><%= t("adjustment") %></th>
    </tr>
  </thead>
  <tbody>
    <tr data-hook="inventory_row">
      <td><%= @variant.sku %></td>
      <td><%= @variant.product.name %></td>
      <td><%= variant_options @variant %></td>
      <td><%= on_hand(@variant) %></td>
      <td>
        <%= text_field :level, :adjustment, :class => "quantity"  %>
      </td>
    </tr>
  </tbody>
</table>
<%= submit_tag t('update') %>
<%= t("or") %>
<%= link_to t('cancel'), :controller => 'overview', :action => :index %>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/admin/inventory_units/adjust.html.erb
spree_core-0.70.RC1 app/views/admin/inventory_units/adjust.html.erb