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

Payroll Runs

Create monthly payroll run, generate payslips, approve and mark paid.

Payslips
{% if scope.branch_id is none %}
Please select a branch context before creating payroll run.
{% endif %}
{% for row in rows %}{% else %}{% endfor %}
PeriodStatusEmployeesGrossDeductionNetActions
{{ '%02d' % row.pay_month }}/{{ row.pay_year }}{{ row.status.title() }}{{ row.total_employees }}{{ row.gross_amount }}{{ row.deduction_amount }}{{ row.net_amount }}
{% if row.status == 'generated' %}
{% endif %}{% if row.status == 'approved' %}
{% endif %}View
No payroll runs yet.
{% endblock %}