Income Tax Slab is a document to define income tax rates based on different taxable income slab.
In many countries, income tax is levied on individual taxpayers based on a slab system where different tax rates have been prescribed for different slabs and such tax rates keep increasing with an increase in the income slab. In OneOfficeERP, you can define multiple Income Tax Slabs and link them to individual employee's salary structure via Salary Structure Assignment.
To access Income Tax Slab, go to:
Home > Human Resources > Payroll > Income Tax Slab
To create a new Income Tax Slab:
In the Tax Slab table, you can define the rate for different income slabs. To define slab, From Amount and To Amount should be entered. For the first slab, From Amount is optional and for the last slab, To Amount is optional. Both the amount is inclusive while evaluating tax based on taxable income.
The tax slab can be applicable based on specific conditions. Conditions can be written using all field names of Employee, Salary Structure, Salary Structure Assignment, and Salary Slip documents.
Examples:
// Apply tax if employee born between 31-12-1937 and 01-01-1958 (Employees aged 60 to 80)
date_of_birth > date(1937, 12, 31) and date_of_birth < date(1958, 01, 01)
// Apply tax by employee gender
gender == "Male"
// Apply tax by Salary Component
base > 10000
// Annual Taxable income is greater than 5 lakhs
annual_taxable_earning > 500000
If other taxes are applicable on calculated income tax, you can enter those using this table. You can also define the min and max taxable amount for which this tax will be applicable. For example, Health and / or Education levies are applied additionally on income tax in many countries.