Class: Spree::StockTransfer

Inherits:
Base
  • Object
show all
Extended by:
FriendlyId
Defined in:
app/models/spree/stock_transfer.rb

Instance Method Summary collapse

Methods inherited from Base

page, spree_base_scopes

Methods included from Preferences::Preferable

#clear_preferences, #default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Instance Method Details

#destination_movementsObject



23
24
25
# File 'app/models/spree/stock_transfer.rb', line 23

def destination_movements
  find_stock_location_with_location_id(destination_location_id)
end

#receive(destination_location, variants) ⇒ Object



40
41
42
# File 'app/models/spree/stock_transfer.rb', line 40

def receive(destination_location, variants)
  transfer(nil, destination_location, variants)
end

#source_movementsObject



19
20
21
# File 'app/models/spree/stock_transfer.rb', line 19

def source_movements
  find_stock_location_with_location_id(source_location_id)
end

#to_paramObject



15
16
17
# File 'app/models/spree/stock_transfer.rb', line 15

def to_param
  number
end

#transfer(source_location, destination_location, variants) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
# File 'app/models/spree/stock_transfer.rb', line 27

def transfer(source_location, destination_location, variants)
  transaction do
    variants.each_pair do |variant, quantity|
      source_location.unstock(variant, quantity, self) if source_location
      destination_location.restock(variant, quantity, self)

      self.source_location = source_location
      self.destination_location = destination_location
      self.save!
    end
  end
end