Class: Spree::Stock::Splitter::Backordered

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

Instance Attribute Summary

Attributes inherited from Base

#next_splitter, #packer

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

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

Instance Method Details

#split(packages) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'app/models/spree/stock/splitter/backordered.rb', line 5

def split(packages)
  split_packages = []
  packages.each do |package|
    unless package.on_hand.empty?
      split_packages << build_package(package.on_hand)
    end

    unless package.backordered.empty?
      split_packages << build_package(package.backordered)
    end
  end
  return_next split_packages
end