Class: Spree::Stock::Splitter::Backordered
- Defined in:
- app/models/spree/stock/splitter/backordered.rb
Instance Attribute Summary
Attributes inherited from Base
#next_splitter, #stock_location
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Spree::Stock::Splitter::Base
Instance Method Details
#split(packages) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'app/models/spree/stock/splitter/backordered.rb', line 7 def split(packages) split_packages = [] packages.each do |package| if package.on_hand.count > 0 split_packages << build_package(package.on_hand) end if package.backordered.count > 0 split_packages << build_package(package.backordered) end end return_next split_packages end |