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

update rent income #10

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion taxcalc/cit_elasticity_selection.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[
"0.0",
"0.2",
"0.5"
"0.4"
]
],
"selected_year": [
Expand Down
6 changes: 3 additions & 3 deletions taxcalc/functions_cit_cambodia.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def Sector(Sector_short, sector):

Sector Sector name
1 Agriculture
2 Service
` Service
3 Manufacturing
4 Mining
5 Insurance
Expand Down Expand Up @@ -220,11 +220,11 @@ def Total_non_tax_inc(dividends, capgain_disp_assets, other_inc, total_non_tax_i
'''

@iterate_jit(nopython=True)
def Adj_profit(net_accounting_profit, total_additions, total_deductions, total_non_tax_inc, adjusted_profit ):
def Adj_profit(net_accounting_profit, total_additions, total_deductions, total_non_tax_inc, rent_inc, adjusted_profit ):
"""
Compute total taxable profits afer adding back non-allowable deductions.
"""
adjusted_profit = net_accounting_profit + total_additions - total_deductions - total_non_tax_inc
adjusted_profit = net_accounting_profit + total_additions + rent_inc - total_deductions - total_non_tax_inc
return adjusted_profit


Expand Down
9 changes: 9 additions & 0 deletions taxcalc/records_variables_cit_cambodia.json
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,15 @@
},
"cross_year": "No",
"attribute": "No"
},
"rent_inc": {
"type": "float",
"desc": "Rental income",
"form": {
"2022": "Field g3 - Form TOI 01"
},
"cross_year": "No",
"attribute": "No"
},
"depr": {
"type": "float",
Expand Down