{% extends "ui/templates/base/layout.html" %} {% block content %}

Salary Structures

Maintain branch-wise employee salary structures for payroll generation.

Employees
{% if errors %}
{{ errors|join(', ') }}
{% endif %}

Add Salary Structure

{% for row in rows %}{% set gross = row.basic_amount + row.hra_amount + row.allowance_amount %}{% set ded = row.employee_pf_amount + row.employee_esi_amount + row.professional_tax_amount + row.tds_amount + row.other_deduction_amount %}{% else %}{% endfor %}
EmployeeEffectiveGrossDeductionsNetStatus
{{ row.employee.employee_code if row.employee else row.employee_id }} - {{ row.employee.full_name if row.employee else '' }}{{ row.effective_from }}{% if row.effective_to %} to {{ row.effective_to }}{% endif %}{{ gross }}{{ ded }}{{ gross - ded }}{{ 'Active' if row.is_active else 'Inactive' }}
No salary structures available.
{% endblock %}