Sha256: 313c863bd63acf32dd437a7e5e98b0374f6265aebdba0f13a7296361c482c856

Contents?: true

Size: 1.73 KB

Versions: 62

Compression:

Stored size: 1.73 KB

Contents

module Workarea
  module Search
    class Storefront
      class Product
        module Pricing
          # The price of this product for the search index used for sorting.
          # It is the lowest sellable price for any SKUs that belong to the
          # product. Converted to a float so JSON encoding is not applied to
          # {Money} when being put into the index.
          #
          # @return [Float]
          #
          def sort_price
            pricing.sell_min_price.to_f
          end

          # The prices of this product for the search index. It is the collection
          # of sellable prices for any SKUs that belong to the product if price
          # ranges are enabled. Otherwise it is the lowest sellable price
          # for any SKUs that belong to the product. Converted to a float so JSON
          # encoding is not applied to {Money} when being put into the index.
          #
          # @return [Array]
          #
          def price
            if pricing.all_selling_prices.present?
              pricing.all_selling_prices.map(&:to_f)
            else
              [0.0]
            end
          end

          # Whether or not the product is considered on sale. Determined by having
          # a pricing sku that is set to be on sale.
          #
          # @return [Boolean]
          #
          def on_sale?
            pricing.on_sale?
          end

          # The product pricing based on the available SKUs to get the
          # correct index data.
          #
          # @return [Pricing::Collection]
          #
          def pricing
            @pricing ||= Workarea::Pricing::Collection.new(
              skus_with_displayable_inventory
            )
          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/search/storefront/product/pricing.rb
workarea-core-3.4.36 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.14 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.4.35 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.13 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.4.34 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.12 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.4.33 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.11 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.10 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.4.32 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.9 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.4.31 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.8 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.4.30 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.7 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.4.29 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.6 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.4.28 app/models/workarea/search/storefront/product/pricing.rb
workarea-core-3.5.5 app/models/workarea/search/storefront/product/pricing.rb