Sha256: 598f525d4a8c6771e0cf058f6cca41a74e9d213489639b681594930fc6cb2a68

Contents?: true

Size: 999 Bytes

Versions: 62

Compression:

Stored size: 999 Bytes

Contents

module Workarea
  module Pricing
    class Discount
      class BuySomeGetSome::OrderItemsByProduct
        include Enumerable

        class Product < Struct.new(:id, :items, :quantity, :category_ids)
          def matches_categories?(*ids)
            match_ids = Array(ids).flatten.map(&:to_s)
            (category_ids.map(&:to_s) & match_ids).any?
          end
        end

        delegate :any?, :empty?, :each, to: :products

        def initialize(order)
          @order = order
        end

        # Aggregate product that reflects all items in the
        # order that share a product_id
        #
        # @return [Array<OrderProducts::Product>]
        #
        def products
          @products ||= @order.items.group_by(&:product_id).map do |id, items|
            Product.new(
              id,
              items,
              items.sum(&:quantity),
              items.flat_map(&:category_ids).compact.uniq
            )
          end
        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/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.36 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.14 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.35 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.13 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.34 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.12 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.33 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.11 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.10 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.32 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.9 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.31 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.8 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.30 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.7 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.29 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.6 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.28 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.5 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb