Sha256: b9345112c963829a6c5742fd90b7cd5a1f3355df49009b5523b562c0430dd6fe

Contents?: true

Size: 1.79 KB

Versions: 69

Compression:

Stored size: 1.79 KB

Contents

<%= form_tag transfer_stock_admin_stock_locations_path do %>
  <fieldset>
    <legend align="center"><%= Spree.t(:move_stock_between_locations)%></legend>
    <div data-hook="admin_stock_movements_form_fields" class="row">
      <div class="five columns">
        <div class="field" id="stock_movement_transfer_from_field">
          <%= label_tag :stock_location_from_id, Spree.t(:transfer_from_location) %>
          <%= select_tag :stock_location_from_id, options_from_collection_for_select(@stock_locations, :id, :name), class: 'select2 fullwidth' %>
        </div>
      </div>
      <div class="five columns">
        <div class="field" id="stock_movement_transfer_to_field">
          <%= label_tag :stock_location_to_id, Spree.t(:transfer_to_location) %>
          <%= select_tag :stock_location_to_id, options_from_collection_for_select(@stock_locations, :id, :name), class: 'select2 fullwidth' %>
        </div>
      </div>

      <div class="five columns">
        <div class="field" id="stock_movement_variant_id_field">
          <%= label_tag 'variant_id', Spree.t(:variant) %>
          <%= select_tag :variant_id, options_from_collection_for_select(@variants, :id, :name_and_sku), class: 'select2 fullwidth' %>
        </div>
      </div>

      <div class="five columns">
        <div class="field" id="stock_movement_quantity_field">
          <%= label_tag 'quantity', Spree.t(:quantity) %>
          <%= number_field_tag :quantity, 1, class: 'fullwidth' %>
        </div>
      </div>
    </div>

    <div class="form-buttons filter-actions actions" data-hook="buttons">
      <%= button Spree.t(:transfer_stock), 'plus' %>
      <span class="or"><%= Spree.t(:or) %></span>
      <%= link_to_with_icon 'remove', Spree.t('actions.cancel'), collection_url, :class => 'button' %>
    </div>
  </fieldset>
<% end %>

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
solidus_backend-1.2.3 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.1.4 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.0.7 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.0.6 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.2.2 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.2.1 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.1.3 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.0.5 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.2.0 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.2.0.rc2 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.0.4 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.1.2 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.2.0.rc1 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.2.0.beta1 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.0.3 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.1.1 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.1.0 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.1.0.pre2 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.1.0.pre1 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb
solidus_backend-1.1.0.beta1 app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb