Class: Spree::Stock::Quantifier

Inherits:
Object
  • Object
show all
Defined in:
app/models/spree/stock/quantifier.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(variant, stock_location = nil) ⇒ Quantifier

Returns a new instance of Quantifier.

Parameters:

  • variant (Variant)

    The variant to check inventory for.

  • stock_location (StockLocation, Integer) (defaults to: nil)

    The stock_location to check inventory in. If unspecified it will check inventory in all available StockLocations



10
11
12
13
14
15
16
17
18
# File 'app/models/spree/stock/quantifier.rb', line 10

def initialize(variant, stock_location = nil)
  @variant = variant
  @stock_items = Spree::StockItem.where(variant_id: variant)
  if stock_location
    @stock_items.where!(stock_location: stock_location)
  else
    @stock_items.joins!(:stock_location).merge!(Spree::StockLocation.active)
  end
end

Instance Attribute Details

#stock_itemsObject (readonly)

Returns the value of attribute stock_items.



6
7
8
# File 'app/models/spree/stock/quantifier.rb', line 6

def stock_items
  @stock_items
end

Instance Method Details

#backorderable?Boolean

Checks if any of its stock items are backorderable.

Returns:

  • (Boolean)

    true if any stock items are backorderable



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

def backorderable?
  stock_items.any?(&:backorderable)
end

#can_supply?(required) ⇒ Boolean

Checks if it is possible to supply a given number of units.

Parameters:

  • required (Fixnum)

    the number of required stock units

Returns:

  • (Boolean)

    true if we have the required amount on hand or the variant is backorderable, otherwise false



44
45
46
# File 'app/models/spree/stock/quantifier.rb', line 44

def can_supply?(required)
  total_on_hand >= required || backorderable?
end

#total_on_handFixnum

Returns the total number of inventory units on hand for the variant.

Returns:

  • (Fixnum)

    number of inventory units on hand, or infinity if inventory is not tracked on the variant.



24
25
26
27
28
29
30
# File 'app/models/spree/stock/quantifier.rb', line 24

def total_on_hand
  if @variant.should_track_inventory?
    stock_items.sum(:count_on_hand)
  else
    Float::INFINITY
  end
end