Sha256: f286e4a61df252487d6747c44c15fa9407a4bc1a66accce30a5141b9343e8929

Contents?: true

Size: 825 Bytes

Versions: 28

Compression:

Stored size: 825 Bytes

Contents

module Workarea
  module Inventory
    module CollectionStatus
      class Backordered
        include StatusCalculator::Status

        def in_status?
          model.any?(&:allow_backorder?) &&
            model.sum(&:backordered).positive? &&
            model.sum(&:available).zero?
        end
      end

      class LowInventory
        include StatusCalculator::Status

        def in_status?
          model.purchasable? &&
            !model.purchasable?(Workarea.config.low_inventory_threshold)
        end
      end

      class OutOfStock
        include StatusCalculator::Status

        def in_status?
          !model.purchasable?
        end
      end

      class Available
        include StatusCalculator::Status

        def in_status?
          model.purchasable?
        end
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
workarea-core-3.5.27 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.26 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.25 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.23 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.22 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.21 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.20 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.19 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.18 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.17 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.16 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.15 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.14 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.13 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.12 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.11 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.10 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.9 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.8 app/models/workarea/inventory/collection_status.rb
workarea-core-3.5.7 app/models/workarea/inventory/collection_status.rb