This repository was archived by the owner on Jul 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 144
Set benefit increases to negative values in net revenue impact table #2672
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
955e047
Fixed: Set benefit increases to negative values in net revenue impact…
v-lerie 7ab4491
updated MultiYearBudgetaryImpact.test.js to expect negative benefit v…
v-lerie ce6734d
updated MultiYearBudgetaryImpact.test.js to expect negative benefit v…
v-lerie b550536
updated MultiYearBudgetaryImpact.test.js to expect negative benefit v…
v-lerie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -114,10 +114,13 @@ export default function MultiYearBudgetaryImpact(props) { | |
| item.budgetKey ? item.budgetKey : null, | ||
| item.formula ? item.formula : null, | ||
| ), | ||
|
|
||
| yearRange: roundToBillions( | ||
| item.budgetKey | ||
| ? impact.budget[item.budgetKey] | ||
| : item.formula(impact.budget), | ||
| item.budgetKey === "benefit_spending_impact" | ||
| ? -Math.abs(impact.budget[item.budgetKey]) | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue, blocking: It's tough to read this nested conditional Addressing my other comment, can you modify this to be more readable/CLEAN? |
||
| : item.budgetKey | ||
| ? impact.budget[item.budgetKey] | ||
| : item.formula(impact.budget), | ||
| roundingPrecisionByCountry[metadata.countryId] || | ||
| roundingPrecisionByCountry.default, | ||
| ), | ||
|
|
@@ -198,6 +201,10 @@ export function getYearlyImpacts( | |
| impact = item.result.budget[budgetKey]; | ||
| } | ||
|
|
||
| if (budgetKey === "benefit_spending_impact") { | ||
| impact = -Math.abs(impact); | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue, blocking: Here, too budgetary impacts are always negative when they should be negative only sometimes |
||
| } | ||
|
|
||
| yearlyImpacts[year] = roundToBillions( | ||
| impact, | ||
| roundingPrecisionByCountry[countryId] || | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue, blocking: I believe this only half-solves the problem
In cases where the government budget loses revenue (e.g., a new benefit program is introduced), the benefits row should be negative, but in cases where the government budget gains revenue (e.g., benefit cuts), it should be positive. This code will always make it positive.