-
Notifications
You must be signed in to change notification settings - Fork 33
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
Northwest Territories dividend tax credit #454
Open
zqw5219
wants to merge
5
commits into
PolicyEngine:master
Choose a base branch
from
zqw5219:zqw5219/issue450
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
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 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,4 @@ | ||
- bump: minor | ||
changes: | ||
added: | ||
- Northwest Territories dividend tax credit. |
13 changes: 13 additions & 0 deletions
13
.../parameters/gov/provinces/nt/tax/income/credits/dividend_tax_credit/noneligible_rate.yaml
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,13 @@ | ||
description: Northwest Territories phases the dividend tax credit for non-eligible dividens at this rate. | ||
values: | ||
2021-01-01: 0.06 | ||
metadata: | ||
unit: currency-CAD | ||
label: Northwest Territories non-eligible dividend tax credit rate | ||
reference: | ||
- title: Income Tax Act - Section 2.32 Deduction for taxable dividends | ||
href: https://www.justice.gov.nt.ca/en/files/legislation/income-tax/income-tax.a.pdf#page=40 | ||
- title: 2022 Northwest Territories dividend tax credit (Line 61520) | ||
href: https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/5012-d/5012-d-22e.pdf#page=3 | ||
- title: Dividend Tax Credit for 2011-2023 | ||
href: https://www.fin.gov.nt.ca/sites/fin/files/resources/nwt_personal_income_tax_credits_english.pdf#page=2 |
13 changes: 13 additions & 0 deletions
13
...nada/parameters/gov/provinces/nt/tax/income/credits/dividend_tax_credit/taxable_rate.yaml
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,13 @@ | ||
description: Northwest Territories phases the taxable dividend amount for eligible dividens at this rate. | ||
values: | ||
2021-01-01: 0.115 | ||
metadata: | ||
unit: currency-CAD | ||
label: Northwest Territories taxable dividend amount rate | ||
reference: | ||
- title: Income Tax Act - Section 2.32 Deduction for taxable dividends | ||
href: https://www.justice.gov.nt.ca/en/files/legislation/income-tax/income-tax.a.pdf#page=40 | ||
- title: 2022 Northwest Territories dividend tax credit (Line 61520) | ||
href: https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/5012-d/5012-d-22e.pdf#page=3 | ||
- title: Dividend Tax Credit for 2011-2023 | ||
href: https://www.fin.gov.nt.ca/sites/fin/files/resources/nwt_personal_income_tax_credits_english.pdf#page=2 |
8 changes: 8 additions & 0 deletions
8
policyengine_canada/tests/gov/provinces/nt/tax/income/nt_dividend_tax_credit.yaml
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,8 @@ | ||
- name: Calculation 2022 # (39,000 * 0.06) + ((39,800 - 39,000) * 0.115) = 2,432 | ||
period: 2022 | ||
input: | ||
province_code: NT | ||
taxable_dividend_income: 39_800 | ||
taxable_other_than_dividend_income: 39_000 | ||
output: | ||
nt_dividend_tax_credit: 2_432 |
30 changes: 30 additions & 0 deletions
30
...riables/gov/provinces/nt/tax/income/credits/dividend_tax_credit/nt_dividend_tax_credit.py
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,30 @@ | ||
from policyengine_canada.model_api import * | ||
|
||
|
||
class nt_dividend_tax_credit(Variable): | ||
value_type = float | ||
entity = Person | ||
label = "Northwest Territories dividend tax credit" | ||
unit = CAD | ||
definition_period = YEAR | ||
defined_for = ProvinceCode.NT | ||
reference = "https://www.justice.gov.nt.ca/en/files/legislation/income-tax/income-tax.a.pdf#page=40" | ||
|
||
def formula(person, period, parameters): | ||
p = parameters( | ||
period | ||
).gov.provinces.nt.tax.income.credits.dividend_tax_credit | ||
income = person("nt_taxable_income", period) | ||
taxable_dividend_income = person.household( | ||
"taxable_dividend_income", period | ||
) | ||
taxable_other_than_dividend_income = person.household( | ||
"taxable_other_than_dividend_income", period | ||
) | ||
non_eligible_dividends = ( | ||
taxable_other_than_dividend_income * p.noneligible_rate | ||
) | ||
eligible_credit = ( | ||
taxable_dividend_income - taxable_other_than_dividend_income | ||
) * p.taxable_rate | ||
return non_eligible_dividends + eligible_credit |
9 changes: 9 additions & 0 deletions
9
policyengine_canada/variables/household/income/taxable_dividend_income.py
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,9 @@ | ||
from policyengine_canada.model_api import * | ||
|
||
|
||
class taxable_dividend_income(Variable): | ||
value_type = float | ||
entity = Household | ||
label = "dividend income" | ||
unit = CAD | ||
definition_period = YEAR |
9 changes: 9 additions & 0 deletions
9
policyengine_canada/variables/household/income/taxable_other_than_dividend_income.py
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,9 @@ | ||
from policyengine_canada.model_api import * | ||
|
||
|
||
class taxable_other_than_dividend_income(Variable): | ||
value_type = float | ||
entity = Household | ||
label = "other than dividend income" | ||
unit = CAD | ||
definition_period = YEAR |
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.
Is this all taxable income except dividends? If so I'd just do that subtraction in the formula