Class: Spree::Stock::Packer

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(stock_location, order, splitters = [Splitter::Base]) ⇒ Packer

Returns a new instance of Packer.



6
7
8
9
10
# File 'app/models/spree/stock/packer.rb', line 6

def initialize(stock_location, order, splitters=[Splitter::Base])
  @stock_location = stock_location
  @order = order
  @splitters = splitters
end

Instance Attribute Details

#orderObject (readonly)

Returns the value of attribute order.



4
5
6
# File 'app/models/spree/stock/packer.rb', line 4

def order
  @order
end

#splittersObject (readonly)

Returns the value of attribute splitters.



4
5
6
# File 'app/models/spree/stock/packer.rb', line 4

def splitters
  @splitters
end

#stock_locationObject (readonly)

Returns the value of attribute stock_location.



4
5
6
# File 'app/models/spree/stock/packer.rb', line 4

def stock_location
  @stock_location
end

Instance Method Details

#default_packageObject



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

def default_package
  package = Package.new(stock_location, order)
  order.line_items.each do |line_item|
    if line_item.should_track_inventory?
      next unless stock_location.stock_item(line_item.variant)

      on_hand, backordered = stock_location.fill_status(line_item.variant, line_item.quantity)
      package.add line_item, on_hand, :on_hand if on_hand > 0
      package.add line_item, backordered, :backordered if backordered > 0
    else
      package.add line_item, line_item.quantity, :on_hand
    end
  end
  package
end

#packagesObject



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

def packages
  if splitters.empty?
    [default_package]
  else
    build_splitter.split [default_package]
  end
end