{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Extra Payment Report {% endblock title %} {% load widget_tweaks %} {% block Style %} {{form.media}} {% endblock Style %} {% block MainContent %}

Extra Payment Report

{% if request.user.is_superuser == True %} {% include 'report_app/payroll_report/extra_ot_payment/super_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %} {% include 'report_app/payroll_report/extra_ot_payment/mother_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %} {% include 'report_app/payroll_report/extra_ot_payment/sister_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular' %} {% include 'report_app/payroll_report/extra_ot_payment/branch_admin_forms.html' %} {% endif %}
{% if salary_sheets %}
{% for salary_sheet in salary_sheets%} {% endfor %}

{{ sister_organization }}     {% if workplace %}{{workplace.working_place}} {% endif %} {% if department %}{{department}} {% endif %}


Extra Payment Report {{year}}  -  {{month}}

SL No Code Name Designation OT Rate Total OT OT Amount Tiffin Amt. Night Amt. Total Line
{{ forloop.counter }} {%if salary_sheet.salary_sheet.employee.employee_code != None %}{{salary_sheet.salary_sheet.employee.employee_code}} {% else %} {{salary_sheet.salary_sheet.employee.auto_employee_code}} {% endif %} {{salary_sheet.salary_sheet.employee.name_en}} {{salary_sheet.salary_sheet.employee.designation.name_en}} {{salary_sheet.salary_sheet.over_time_rate |floatformat:2}} {{salary_sheet.salary_sheet.extra_over_time_hours |floatformat:2}} {{salary_sheet.salary_sheet.extra_over_time_payable_taka |floatformat:2}} {{salary_sheet.salary_sheet.extra_tiffin_bill |floatformat:2}} {{salary_sheet.salary_sheet.extra_night_bill |floatformat:2}} {{salary_sheet.total_salary |floatformat:2}} {{salary_sheet.salary_sheet.employee.working_place.working_place}}
Total - {{total_ot_hour}} {{total_ot_amount}} {{total_tifin_amount}} {{total_night_amount}} {{total_amount}} -
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}