Class: Spree::StockLocation

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

Instance Method Summary collapse

Instance Method Details

#backorderable?(variant) ⇒ Boolean

Returns:

  • (Boolean)


43
44
45
# File 'app/models/spree/stock_location.rb', line 43

def backorderable?(variant)
  stock_item(variant).try(:backorderable?)
end

#count_on_hand(variant) ⇒ Object



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

def count_on_hand(variant)
  stock_item(variant).try(:count_on_hand)
end

#fill_status(variant, quantity) ⇒ Object



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'app/models/spree/stock_location.rb', line 65

def fill_status(variant, quantity)
  if item = stock_item(variant)

    if item.count_on_hand >= quantity
      on_hand = quantity
      backordered = 0
    else
      on_hand = item.count_on_hand
      on_hand = 0 if on_hand < 0
      backordered = item.backorderable? ? (quantity - on_hand) : 0
    end

    [on_hand, backordered]
  else
    [0, 0]
  end
end

#move(variant, quantity, originator = nil) ⇒ Object



60
61
62
63
# File 'app/models/spree/stock_location.rb', line 60

def move(variant, quantity, originator = nil)
  stock_item_or_create(variant).stock_movements.create!(quantity: quantity,
                                                        originator: originator)
end

#propagate_variant(variant) ⇒ Object

Wrapper for creating a new stock item respecting the backorderable config



20
21
22
# File 'app/models/spree/stock_location.rb', line 20

def propagate_variant(variant)
  self.stock_items.create!(variant: variant, backorderable: self.backorderable_default)
end

#restock(variant, quantity, originator = nil) ⇒ Object



47
48
49
# File 'app/models/spree/stock_location.rb', line 47

def restock(variant, quantity, originator = nil)
  move(variant, quantity, originator)
end

#restock_backordered(variant, quantity, originator = nil) ⇒ Object



51
52
53
54
# File 'app/models/spree/stock_location.rb', line 51

def restock_backordered(variant, quantity, originator = nil)
  item = stock_item_or_create(variant)
  item.update_column(:count_on_hand, item.count_on_hand + quantity)
end

#set_up_stock_item(variant) ⇒ Object

Return either an existing stock item or create a new one. Useful in scenarios where the user might not know whether there is already a stock item for a given variant



27
28
29
# File 'app/models/spree/stock_location.rb', line 27

def set_up_stock_item(variant)
  self.stock_item(variant) || propagate_variant(variant)
end

#stock_item(variant) ⇒ Object



31
32
33
# File 'app/models/spree/stock_location.rb', line 31

def stock_item(variant)
  stock_items.where(variant_id: variant).order(:id).first
end

#stock_item_or_create(variant) ⇒ Object



35
36
37
# File 'app/models/spree/stock_location.rb', line 35

def stock_item_or_create(variant)
  stock_item(variant) || stock_items.create(variant: variant)
end

#unstock(variant, quantity, originator = nil) ⇒ Object



56
57
58
# File 'app/models/spree/stock_location.rb', line 56

def unstock(variant, quantity, originator = nil)
  move(variant, -quantity, originator)
end