{# DrCr: Web-based double-entry bookkeeping framework Copyright (C) 2022–2023 Lee Yingtong Li (RunasSudo) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . #} {% extends 'base.html' %} {% block title %}Tax summary{% endblock %} {% macro fmtbal(amount, rnd=1, mul=1) %} {# FIXME: Honour AMOUNT_DPS #} {% if amount.quantity * mul >= 0 %} {{ '{:,.2f}'.format((amount.quantity|abs / rnd)|round(0, 'floor') * rnd / 100) }}  {% else %} ({{ '{:,.2f}'.format((amount.quantity|abs / rnd)|round(0, 'floor') * rnd / 100) }}) {% endif %} {% endmacro %} {% macro acctrow(name, rnd=1, mul=1) %} {{ name }} {{ fmtbal(accounts[name], rnd, mul) }} {% set rnd_qty = (accounts[name].quantity|abs / rnd)|round(0, 'floor') * rnd * accounts[name].quantity/(accounts[name].quantity|abs) %} {% set _ = running_total.__setattr__('quantity', running_total.quantity + rnd_qty) %} {% endmacro %} {% block content %}

Tax summary

{% set _ = running_total.__setattr__('quantity', 0) %} {% for account in TAX_MAPPING['Salary and wages'] if account in accounts %} {{ acctrow(account, 100, -1) }} {% endfor %} {% for account in TAX_MAPPING['Government allowances'] if account in accounts %} {{ acctrow(account, 100, -1) }} {% endfor %} {% set taxable_income = running_total.quantity %} {% set _ = running_total.__setattr__('quantity', 0) %} {% for account in TAX_MAPPING['Work-related self-education expenses'] if account in accounts %} {{ acctrow(account, 100) }} {% endfor %} {% for account in TAX_MAPPING['Other work-related expenses'] if account in accounts %} {{ acctrow(account, 100) }} {% endfor %} {% set taxable_income = taxable_income + running_total.quantity %} {% set _ = running_total.__setattr__('quantity', taxable_income) %} {% set _ = running_total.__setattr__('quantity', taxable_income * 0.02) %}
Salary and wages (1)
 
Government allowances (5)
 
Total assessable income {{ fmtbal(running_total, 1, -1) }}
 
Work-related self-education expenses (D4)
 
Other work-related expenses (D5)
 
Total deductions {{ fmtbal(running_total) }}
 
Taxable income{{ fmtbal(running_total, 1, -1) }}
Income tax {{ fmtbal(base_income_tax(running_total)) }}
Medicare levy{{ fmtbal(running_total, 1, -1) }}
{% endblock %}