Sha256: fb3e048027f7244f2075053788f63f24290efbe6360f314710678494510d9184
Contents?: true
Size: 996 Bytes
Versions: 6
Compression:
Stored size: 996 Bytes
Contents
module Spree module Admin class OptionTypesController < ResourceController before_action :setup_new_option_value, only: :edit def update_values_positions params[:positions].each do |id, index| Spree::OptionValue.where(id: id).update_all(position: index) end respond_to do |format| format.js { head :no_content } end end private def location_after_save edit_admin_option_type_url(@option_type) end def load_product @product = Spree::Product.find_by_param!(params[:product_id]) end def setup_new_option_value @option_type.option_values.build if @option_type.option_values.empty? end def set_available_option_types @available_option_types = if @product.option_type_ids.any? Spree::OptionType.where('id NOT IN (?)', @product.option_type_ids) else Spree::OptionType.all end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems