Sha256: b77f748bce98f34f3f9396f9d90e95203d1d3edbfd3fc101439d6285c104d759
Contents?: true
Size: 694 Bytes
Versions: 62
Compression:
Stored size: 694 Bytes
Contents
module Workarea module Insights class MostDiscountedProducts < Base class << self def dashboards %w(catalog marketing) end def generate_weekly! results = generate_results create!(results: results.map(&:as_document)) if results.present? end def generate_results Metrics::ProductByWeek .last_week .where(:discount_rate.gt => 0, :orders.gt => 0) .order_by(average_discount: :desc, discount_rate: :desc, conversion_rate: :desc, _id: :asc) .limit(Workarea.config.insights_products_list_max_results) .to_a end end end end end
Version data entries
62 entries across 62 versions & 1 rubygems
Version | Path |
---|---|
workarea-core-3.4.13 | app/models/workarea/insights/most_discounted_products.rb |
workarea-core-3.4.12 | app/models/workarea/insights/most_discounted_products.rb |