Class: Spree::Stock::Splitter::Weight

Inherits:
Base
  • Object
show all
Defined in:
app/models/spree/stock/splitter/weight.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Spree::Stock::Splitter::Base

Instance Attribute Details

#next_splitterObject (readonly)

Returns the value of attribute next_splitter.



5
6
7
# File 'app/models/spree/stock/splitter/weight.rb', line 5

def next_splitter
  @next_splitter
end

#packerObject (readonly)

Returns the value of attribute packer.



5
6
7
# File 'app/models/spree/stock/splitter/weight.rb', line 5

def packer
  @packer
end

Instance Method Details

#split(packages) ⇒ Object



11
12
13
14
15
16
17
# File 'app/models/spree/stock/splitter/weight.rb', line 11

def split(packages)
  packages.each do |package|
    removed_contents = reduce package
    packages << build_package(removed_contents) unless removed_contents.empty?
  end
  return_next packages
end