Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix chargeback report with unassigned rates #15580

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/models/miq_report/formatting.rb
Expand Up @@ -69,7 +69,7 @@ def format(col, value, options = {})
# Chargeback Reports: Add the selected currency in the assigned rate to options
if Chargeback.db_is_chargeback?(db)
@rates_cache ||= Chargeback::RatesCache.new
options[:unit] = @rates_cache.currency_for_report
options[:unit] = @rates_cache.currency_for_report if @rates_cache.currency_for_report
end

format.merge!(options) if format # Merge additional options that were passed in as overrides
Expand Down