Files
openfoodnetwork/db/migrate/20180426145632_create_default_stock.spree.rb

35 lines
1.0 KiB
Ruby

Spree::Stock::Quantifier.class_eval do
def initialize(variant)
@variant = variant
@stock_items = Spree::StockItem.joins(:stock_location).where(:variant_id => @variant)
end
end
# This migration comes from spree (originally 20130213191427)
class CreateDefaultStock < ActiveRecord::Migration
def up
Spree::StockLocation.skip_callback(:create, :after, :create_stock_items)
Spree::StockItem.skip_callback(:save, :after, :process_backorders)
location = Spree::StockLocation.create(name: 'default')
Spree::Variant.all.each do |variant|
stock_item = location.stock_items.build(variant: variant)
stock_item.send(:count_on_hand=, variant.count_on_hand)
stock_item.save!
end
remove_column :spree_variants, :count_on_hand
end
def down
add_column :spree_variants, :count_on_hand, :integer
Spree::StockItem.all.each do |stock_item|
stock_item.variant.update_column :count_on_hand, stock_item.count_on_hand
end
Spree::StockLocation.delete_all
Spree::StockItem.delete_all
end
end