2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-26 12:17:10 +02:00
|
|
|
Report.add_report('topics_with_no_response') do |report|
|
2020-04-22 11:52:50 +03:00
|
|
|
category_id, include_subcategories = report.add_category_filter
|
2019-04-26 12:17:10 +02:00
|
|
|
|
2019-03-29 10:54:56 +01:00
|
|
|
report.data = []
|
2020-04-22 11:52:50 +03:00
|
|
|
Topic.with_no_response_per_day(report.start_date, report.end_date, category_id, include_subcategories).each do |r|
|
2019-04-26 12:17:10 +02:00
|
|
|
report.data << { x: r['date'], y: r['count'].to_i }
|
2019-03-29 10:54:56 +01:00
|
|
|
end
|
2019-04-26 12:17:10 +02:00
|
|
|
|
2020-04-22 11:52:50 +03:00
|
|
|
report.total = Topic.with_no_response_total(category_id: category_id, include_subcategories: include_subcategories)
|
2019-04-26 12:17:10 +02:00
|
|
|
|
2020-04-22 11:52:50 +03:00
|
|
|
report.prev30Days = Topic.with_no_response_total(start_date: report.start_date - 30.days, end_date: report.start_date, category_id: category_id, include_subcategories: include_subcategories)
|
2019-03-29 10:54:56 +01:00
|
|
|
end
|