Class: Spree::UniquePurchasesReport

Inherits:
Report
  • Object
show all
Defined in:
app/reports/spree/unique_purchases_report.rb

Defined Under Namespace

Classes: Result

Constant Summary collapse

DEFAULT_SORTABLE_ATTRIBUTE =
:product_name
HEADERS =
{ sku: :string, product_name: :string, sold_count: :integer, users: :integer }
SEARCH_ATTRIBUTES =
{ start_date: :orders_completed_from, end_date: :orders_completed_till }
SORTABLE_ATTRIBUTES =
[:product_name, :sku, :sold_count, :users]

Constants inherited from Report

Report::TIME_SCALES

Instance Attribute Summary

Attributes inherited from Report

#current_page, #paginate, #records_per_page, #reporting_period, #search, #sortable_attribute, #sortable_type, #total_records

Instance Method Summary collapse

Methods inherited from Report

#active_record_sort, deeplink, #deeplink_properties, #generate, #get_results, #header_sorted?, #initialize, #name, #paginated?, #pagination_required?, #set_sortable_attributes, #time_scale_columns, #time_scale_columns_to_s, #time_scale_selects, #total_pages

Constructor Details

This class inherits a constructor from Spree::Report

Instance Method Details

#report_queryObject



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'app/reports/spree/unique_purchases_report.rb', line 20

def report_query
  user_count_sql = '(COUNT(DISTINCT(spree_orders.user_id)) + COUNT(spree_orders.id) - COUNT(spree_orders.user_id))'
  purchases_by_variant =
    Spree::LineItem
      .joins(:order)
      .joins(:variant)
      .joins(:product)
      .where(spree_orders: { state: 'complete', completed_at: reporting_period })
      .group('variant_id', 'spree_variants.sku', 'spree_products.slug', 'spree_products.name')
      .select(
        'spree_variants.sku   as sku',
        'spree_products.slug  as product_slug',
        'spree_products.name  as product_name',
        'SUM(quantity)        as sold_count',
        "#{ user_count_sql }  as users"
      )
end