Sha256: f5f24b4e0ae1a4e0aceeebb9be7539e7252d4b23a71f9f2c7be0ab3173241049

Contents?: true

Size: 788 Bytes

Versions: 4

Compression:

Stored size: 788 Bytes

Contents

<%= error_messages_for(:level) %>

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

<h1><%= t("Inventory Adjustment") %></h1>

<table class="basic-table">
  <thead>
    <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>
      <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

4 entries across 4 versions & 1 rubygems

Version Path
spree-0.4.0 app/views/admin/inventory_units/adjust.html.erb
spree-0.4.1 app/views/admin/inventory_units/adjust.html.erb
spree-0.5.0 app/views/admin/inventory_units/adjust.html.erb
spree-0.5.1 app/views/admin/inventory_units/adjust.html.erb