-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(event): Add view to allow caching of charge/filters for billable…
…_metrics
- Loading branch information
1 parent
01229be
commit dcf4444
Showing
3 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
db/migrate/20240701083355_create_billable_metrics_grouped_charges.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# frozen_string_literal: true | ||
|
||
class CreateBillableMetricsGroupedCharges < ActiveRecord::Migration[7.1] | ||
def change | ||
create_view :billable_metrics_grouped_charges | ||
end | ||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
select | ||
billable_metrics.organization_id, | ||
billable_metrics.code, | ||
billable_metrics.aggregation_type, | ||
billable_metrics.field_name, | ||
charges.plan_id, | ||
charges.id as charge_id, | ||
charge_filters.id as charge_filter_id, | ||
json_object_agg( | ||
billable_metric_filters.key, | ||
coalesce(charge_filter_values.values, '{}') | ||
order by billable_metric_filters.key asc | ||
) FILTER (WHERE billable_metric_filters.key IS NOT NULL) AS filters, | ||
( | ||
case when charges.charge_model = 0 -- Standard | ||
then | ||
coalesce(charge_filters.properties->'grouped_by', charges.properties->'grouped_by') | ||
else | ||
null | ||
end | ||
) AS grouped_by | ||
|
||
from billable_metrics | ||
inner join charges on charges.billable_metric_id = billable_metrics.id | ||
left join charge_filters on charge_filters.charge_id = charges.id | ||
left join charge_filter_values on charge_filter_values.charge_filter_id = charge_filters.id | ||
left join billable_metric_filters on charge_filter_values.billable_metric_filter_id = billable_metric_filters.id | ||
where | ||
billable_metrics.deleted_at is null | ||
and charges.deleted_at is null | ||
and charges.pay_in_advance = false | ||
and charge_filters.deleted_at is null | ||
and charge_filter_values.deleted_at is null | ||
and billable_metric_filters.deleted_at is null | ||
group by | ||
billable_metrics.organization_id, | ||
billable_metrics.code, | ||
billable_metrics.aggregation_type, | ||
billable_metrics.field_name, | ||
charges.plan_id, | ||
charges.id, | ||
charge_filters.id |