Class: Spree::OrderInventory

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(order, line_item) ⇒ OrderInventory

Returns a new instance of OrderInventory.



5
6
7
8
9
# File 'app/models/spree/order_inventory.rb', line 5

def initialize(order, line_item)
  @order = order
  @line_item = line_item
  @variant = line_item.variant
end

Instance Attribute Details

#line_itemObject

Returns the value of attribute line_item.



3
4
5
# File 'app/models/spree/order_inventory.rb', line 3

def line_item
  @line_item
end

#orderObject

Returns the value of attribute order.



3
4
5
# File 'app/models/spree/order_inventory.rb', line 3

def order
  @order
end

#variantObject

Returns the value of attribute variant.



3
4
5
# File 'app/models/spree/order_inventory.rb', line 3

def variant
  @variant
end

Instance Method Details

#verify(shipment = nil) ⇒ Object

Only verify inventory for completed orders (as orders in frontend checkout have inventory assigned via order.create_proposed_shipment) or when shipment is explicitly passed

In case shipment is passed the stock location should only unstock or restock items if the order is completed. That is so because stock items are always unstocked when the order is completed through shipment.finalize



20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'app/models/spree/order_inventory.rb', line 20

def verify(shipment = nil)
  if order.completed? || shipment.present?
    units_count = inventory_units.reload.sum(&:quantity)
    if units_count < line_item.quantity
      quantity = line_item.quantity - units_count

      shipment = determine_target_shipment unless shipment
      add_to_shipment(shipment, quantity)
    elsif (units_count > line_item.quantity) || (units_count == line_item.quantity && !line_item.changed?)
      remove(units_count, shipment)
    end
  end
end