Class: Spree::StockTransfer

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

Instance Method Summary collapse

Instance Method Details

#destination_movementsObject



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

def destination_movements
  stock_movements.joins(:stock_item)
    .where('spree_stock_items.stock_location_id' => destination_location_id)
end

#receive(destination_location, variants) ⇒ Object



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

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

#source_movementsObject



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

def source_movements
  stock_movements.joins(:stock_item)
    .where('spree_stock_items.stock_location_id' => source_location_id)
end

#to_paramObject



12
13
14
# File 'app/models/spree/stock_transfer.rb', line 12

def to_param
  number
end

#transfer(source_location, destination_location, variants) ⇒ Object



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

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