mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
42 lines
1.1 KiB
Ruby
42 lines
1.1 KiB
Ruby
|
class IncomeStatement::CategoryStats
|
||
|
include IncomeStatement::BaseQuery
|
||
|
|
||
|
def initialize(family, interval: "month")
|
||
|
@family = family
|
||
|
@interval = interval
|
||
|
end
|
||
|
|
||
|
def call
|
||
|
ActiveRecord::Base.connection.select_all(query_sql).map do |row|
|
||
|
StatRow.new(
|
||
|
category_id: row["category_id"],
|
||
|
classification: row["classification"],
|
||
|
median: row["median"],
|
||
|
avg: row["avg"],
|
||
|
missing_exchange_rates?: row["missing_exchange_rates"]
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
StatRow = Data.define(:category_id, :classification, :median, :avg, :missing_exchange_rates?)
|
||
|
|
||
|
def query_sql
|
||
|
base_sql = base_query_sql(family: @family, interval: @interval, transactions_scope: @family.transactions.active)
|
||
|
|
||
|
<<~SQL
|
||
|
WITH base_totals AS (
|
||
|
#{base_sql}
|
||
|
)
|
||
|
SELECT
|
||
|
category_id,
|
||
|
classification,
|
||
|
ABS(PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY total)) as median,
|
||
|
ABS(AVG(total)) as avg,
|
||
|
BOOL_OR(missing_exchange_rates) as missing_exchange_rates
|
||
|
FROM base_totals
|
||
|
GROUP BY category_id, classification;
|
||
|
SQL
|
||
|
end
|
||
|
end
|