-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/PolicyEngine/policyengine…
…-canada into pr/okeyiii/443
- Loading branch information
Showing
7 changed files
with
61 additions
and
1 deletion.
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
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
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
14 changes: 14 additions & 0 deletions
14
...gine_canada/parameters/gov/provinces/bc/tax/income/credits/pension_income_amount/cap.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,14 @@ | ||
description: British Columbia caps the pension benefit at this amount. | ||
values: | ||
2022-01-01: 1_000 | ||
metadata: | ||
unit: currency-CAD | ||
period: year | ||
label: British Columbia pension benefit cap | ||
reference: | ||
- title: 2023 British Columbia Personal Tax Credits Return, TD1BC | ||
href: https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/td1bc/td1bc-23e.pdf#page=1 | ||
- title: British Columbia Income Tax Act § 4.32 | ||
href: https://www.bclaws.gov.bc.ca/civix/document/id/complete/statreg/96215_00_multi#section4.32 | ||
- title: 2022 British Columbia Personal Tax Credits Return, TD1BC | ||
href: https://tsaykeh.com/files/pdf/1650179447_BC%20Tax%20Form.pdf#page=1 |
15 changes: 15 additions & 0 deletions
15
...ov/provinces/bc/tax/income/credits/bc_pension_income_amount/bc_pension_income_amount.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,15 @@ | ||
- name: Pension income is larger than the maximum amount | ||
period: 2023 | ||
input: | ||
province_code: BC | ||
pension_and_savings_plan_income: 1_001 | ||
output: | ||
bc_pension_income_amount: 1_000 | ||
|
||
- name: Pension income is less than the maximum amount | ||
period: 2023 | ||
input: | ||
province_code: BC | ||
pension_and_savings_plan_income: 800 | ||
output: | ||
bc_pension_income_amount: 800 |
18 changes: 18 additions & 0 deletions
18
...les/gov/provinces/bc/tax/income/credits/pension_income_amount/bc_pension_income_amount.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,18 @@ | ||
from policyengine_canada.model_api import * | ||
|
||
|
||
class bc_pension_income_amount(Variable): | ||
value_type = float | ||
entity = Person | ||
label = "British Columbia pension income amount" | ||
unit = CAD | ||
definition_period = YEAR | ||
defined_for = ProvinceCode.BC | ||
|
||
def formula(person, period, parameters): | ||
pension_income = person("pension_and_savings_plan_income", period) | ||
p = parameters( | ||
period | ||
).gov.provinces.bc.tax.income.credits.pension_income_amount | ||
# Capped at a certain amount | ||
return min_(p.cap, pension_income) |
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