{% extends "ie_base.html" %}
{% load static %}
{% load crispy_forms_tags %}
{% block title %}
{% if company_info %}
{{ company_info.name_en }}
{{ company_info.address_details }}
{{report_month}} {{report_year}}{{eid_bonus_list.created_date}}
Employee Projection report - {{total_manpowr}}
{% comment %} {{department_temp}} {% endcomment %}
{% if head_office_department %}
| Designation |
Authorization |
Actual |
Short/Excess |
Average Salary |
Name |
Designation |
Joining Date |
Salary |
Remarks |
{% for department in head_office_department %}
| {{ department.department_name }} |
{% for desg in department.designations %}
{% for employee in desg.employees %}
{% if forloop.first %}
| {{ desg.designation_name }} |
{{ desg.authorization }} |
{{ desg.actual }} |
{{ desg.difference }} |
{{ desg.average_salary }} |
{% endif %}
{{ employee.name }} |
{{ employee.designation }} |
{{ employee.joining_date }} |
{{ employee.gross_salary }} |
{% if employee.over_time == 'Eligible' %} OT Eligible Employee {% endif %} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% if non_prodactive_non_ot_department %}
| Designation |
Authorization |
Actual |
Short/Excess |
Average Salary |
Name |
Designation |
Joining Date |
Salary |
Remarks |
{% for department in non_prodactive_non_ot_department %}
| {{ department.department_name }} |
{% for desg in department.designations %}
{% for employee in desg.employees %}
{% if forloop.first %}
| {{ desg.designation_name }} |
{{ desg.authorization }} |
{{ desg.actual }} |
{{ desg.difference }} |
{{ desg.average_salary }} |
{% endif %}
{{ employee.name }} |
{{ employee.designation }} |
{{ employee.joining_date }} |
{{ employee.gross_salary }} |
{% if employee.over_time == 'Eligible' %} OT Eligible Employee {% endif %} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% if non_prodactive_ot_department %}
| Designation |
Authorization |
Actual |
Short/Excess |
Average Salary |
Name |
Designation |
Joining Date |
Salary |
Remarks |
{% for department in non_prodactive_ot_department %}
| {{ department.department_name }} |
{% for desg in department.designations %}
{% for employee in desg.employees %}
{% if forloop.first %}
| {{ desg.designation_name }} |
{{ desg.authorization }} |
{{ desg.actual }} |
{{ desg.difference }} |
{{ desg.average_salary }} |
{% endif %}
{{ employee.name }} |
{{ employee.designation }} |
{{ employee.joining_date }} |
{{ employee.gross_salary }} |
{% if employee.over_time == 'Ineligible' %} OT Ineligible Employee {% endif %} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% if prodactive_non_ot_department %}
| Designation |
Authorization |
Actual |
Short/Excess |
Average Salary |
Name |
Designation |
Joining Date |
Salary |
Remarks |
{% for department in prodactive_non_ot_department %}
| {{ department.department_name }} |
{% for desg in department.designations %}
{% for employee in desg.employees %}
{% if forloop.first %}
| {{ desg.designation_name }} |
{{ desg.authorization }} |
{{ desg.actual }} |
{{ desg.difference }} |
{{ desg.average_salary }} |
{% endif %}
{{ employee.name }} |
{{ employee.designation }} |
{{ employee.joining_date }} |
{{ employee.gross_salary }} |
{% if employee.over_time == 'Eligible' %} OT Eligible Employee {% endif %} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% if prodactive_ot_department %}
| Designation |
Authorization |
Actual |
Short/Excess |
Average Salary |
Name |
Designation |
Joining Date |
Salary |
Remarks |
{% for department in prodactive_ot_department %}
| {{ department.department_name }} |
{% for desg in department.designations %}
{% for employee in desg.employees %}
{% if forloop.first %}
| {{ desg.designation_name }} |
{{ desg.authorization }} |
{{ desg.actual }} |
{{ desg.difference }} |
{{ desg.average_salary }} |
{% endif %}
{{ employee.name }} |
{{ employee.designation }} |
{{ employee.joining_date }} |
{{ employee.gross_salary }} |
{% if employee.over_time == 'Ineligible' %} OT Ineligible Employee {% endif %} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}
{% block JS %}
{% endblock JS %}