Sha256: f9ed3e3270d3ff0daec25cab1f283312104fcd8af3b1f662fdf05ed2c58d5845

Contents?: true

Size: 1.6 KB

Versions: 1

Compression:

Stored size: 1.6 KB

Contents

<div class="clearfix">
  <div class="left" data-hook="variants">

    <% @product.options.each do |option| %>
      <p data-hook="presentation">
        <%= label :new_variant, option.option_type.presentation %><br />
        <% if @variant.new_record? %>
          <%= select(:new_variant, option.option_type.presentation,
            option.option_type.option_values.collect {|ov| [ ov.presentation, ov.id ] },
            {})
          %>
        <% else %>
          <% opt = @variant.option_values.detect {|o| o.option_type == option.option_type }.presentation %>
          <%= text_field(:new_variant,  option.option_type.presentation, :value => opt, :disabled => 'disabled') %>
        <% end %>
      </p>
    <% end %>

    <p data-hook="sku"><%= f.label :sku, t("sku") %><br />
    <%= f.text_field :sku %></p>

    <p data-hook="price"><%= f.label :price, t("price") %>:<br />
    <%= f.text_field :price, :value => number_with_precision(@variant.price, :precision => 2) %></p>

    <p data-hook="cost_price"><%= f.label :cost_price, t("cost_price") %>:<br />
    <%= f.text_field :cost_price, :value => number_with_precision(@variant.cost_price, :precision => 2) %></p>

    <% if Spree::Config[:track_inventory_levels] %>
      <p data-hook="on_hand"><%= f.label :on_hand, t("on_hand") %>: <br />
      <%= f.text_field :on_hand %></p>
    <% end %>
  </div>
  <div class="right">

    <% Variant.additional_fields.select{|af| af[:only].nil? || af[:only].include?(:variant) }.each do |field| %>
      <%= render :partial => "admin/shared/additional_field", :locals => {:field => field, :f => f} %>
    <% end %>

  </div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/admin/variants/_form.html.erb