Sha256: f56a3df86a3f5750e3431519a1871c214596e2e4b957bd99906781cf77491a4f

Contents?: true

Size: 1.11 KB

Versions: 62

Compression:

Stored size: 1.11 KB

Contents

module Workarea
  module Inventory
    module Policies
      class Base
        attr_reader :sku

        def initialize(sku)
          @sku = sku
        end

        # Whether this SKU should contribute to being
        # displayed with resepect to inventory.
        #
        # @return [Boolean]
        #
        def displayable?
          raise(NotImplementedError)
        end

        # Returns the quantity of available units of the SKU for sale
        #
        # @return [Integer] count
        #
        def available_to_sell
          raise(NotImplementedError)
        end

        # Decrement the inventory required to represent a purchase
        # for this policy. Commonly, this would do some logic to decide
        # how many units to capture and call {Sku}#capture.
        #
        # Returns a hash with results to record how many were captured,
        # for later rolling back if necessary. Hash has keys for
        # available and backordered counts.
        #
        # @return [Hash]
        #
        def purchase(quantity)
          raise(NotImplementedError)
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.5.15 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.36 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.14 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.35 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.13 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.34 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.12 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.33 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.11 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.10 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.32 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.9 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.31 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.8 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.30 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.7 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.29 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.6 app/models/workarea/inventory/policies/base.rb
workarea-core-3.4.28 app/models/workarea/inventory/policies/base.rb
workarea-core-3.5.5 app/models/workarea/inventory/policies/base.rb