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.27 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.26 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.45 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.25 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.23 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.44 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.22 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.43 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.21 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.42 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.20 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.41 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.19 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.40 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.18 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.39 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.17 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.38 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.5.16 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb
workarea-core-3.4.37 app/models/workarea/pricing/discount/buy_some_get_some/order_items_by_product.rb