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

Tax Report

{% if request.user.is_superuser == True %}
{% csrf_token %}
{{search_form.mother_organization|as_crispy_field }}
{{search_form.sister_organization|as_crispy_field }}
{{search_form.branch|as_crispy_field }}
{{search_form.department|as_crispy_field }}
{{search_form.designation|as_crispy_field }}
{{year_month_wise_form.month|as_crispy_field }}
{{year_month_wise_form.year|as_crispy_field }}
{{search_form.work_place|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %}
{% csrf_token %}
{{search_form.sister_organization|as_crispy_field }}
{{search_form.branch|as_crispy_field }}
{{search_form.department|as_crispy_field }}
{{search_form.designation|as_crispy_field }}
{{year_month_wise_form.month|as_crispy_field }}
{{year_month_wise_form.year|as_crispy_field }}
{{search_form.work_place|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %} {% include 'report_app/payroll_report/sister_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular' %} {% include 'report_app/payroll_report/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 %}


Tax Report {{year}}  -  {{month}}

SL No Code Name Account Number Gross Salary Tax
{{ 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.bank_ac}} {{salary_sheet.salary_sheet.gross_salary}} {% if salary_sheet.salary_sheet.tax == None %} 0 {% else %} {{salary_sheet.salary_sheet.tax}} {% endif %}
Total {{total_gross}} {{total_tax}}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}