{% extends 'base.html' %} {% load static %} {% load format_tags %} {% block title %}Payroll Report | FoxFitt{% endblock %} {% block content %}

Payroll Report

{{ start_date|date:"d M Y" }} — {{ end_date|date:"d M Y" }}  |  {{ project_name }}  |  {{ team_name }}

FoxFitt Construction — Payroll Report

{{ start_date|date:"d M Y" }} — {{ end_date|date:"d M Y" }}  |  {{ project_name }}  |  {{ team_name }}

All Time — Projects
{% if alltime_projects %} {% for item in alltime_projects %} {% endfor %}
ProjectCost
{{ item.project }}R {{ item.total|money }}
{% else %}

No data

{% endif %}
All Time — Teams
{% if alltime_teams %} {% for item in alltime_teams %} {% endfor %}
TeamCost
{{ item.team }}R {{ item.total|money }}
{% else %}

No data

{% endif %}
{{ current_year }} — Projects
{% if year_projects %} {% for item in year_projects %} {% endfor %}
ProjectCost
{{ item.project }}R {{ item.total|money }}
{% else %}

No data

{% endif %}
{{ current_year }} — Teams
{% if year_teams %} {% for item in year_teams %} {% endfor %}
TeamCost
{{ item.team }}R {{ item.total|money }}
{% else %}

No data

{% endif %}
Selected Period: {{ start_date|date:"d M Y" }} — {{ end_date|date:"d M Y" }}
Total Paid Out
R {{ total_paid_out|money }}
Worker-Days
{{ total_worker_days }}
Loans Issued
R {{ loans_issued|money }}
Loans Outstanding
R {{ loans_outstanding|money }}
Advances Issued
R {{ advances_issued|money }}
Advances Outstanding
R {{ advances_outstanding|money }}
Payments by Date
{% if payments_by_date %}
{% for item in payments_by_date %} {% endfor %}
DateAmount Paid
{{ item.date|date:"d M Y" }}R {{ item.total|money }}
{% else %}

No payments in this period.

{% endif %}
Adjustment Summary
{% if adjustment_totals %}
{% for item in adjustment_totals %} {% endfor %}
CategoryTotal
{{ item.label }}R {{ item.total|money }}
{% else %}

No adjustments in this period.

{% endif %}
Labour Cost by Project
{% if cost_per_project %}
{% for item in cost_per_project %} {% endfor %}
ProjectWorker-DaysTotal Cost
{{ item.project }}{{ item.worker_days }}R {{ item.total|money }}
{% else %}

No project cost data.

{% endif %}
Labour Cost by Team
{% if cost_per_team %}
{% for item in cost_per_team %} {% endfor %}
TeamWorker-DaysTotal Cost
{{ item.team }}{{ item.worker_days }}R {{ item.total|money }}
{% else %}

No team cost data.

{% endif %}
Worker Breakdown
{% if worker_breakdown %}
{% for label in active_adj_labels %} {% endfor %} {% for w in worker_breakdown %} {% for val in w.adj_values %} {% endfor %} {% endfor %}
Worker Days Total Paid{{ label }}
{{ w.name }} {{ w.days }} R {{ w.total_paid|money }}{% if val %}R {{ val|money }}{% else %}-{% endif %}
{% else %}

No worker payment data for this period.

{% endif %}
Back to Dashboard
Download PDF
{% include 'core/_report_config_modal.html' %} {% endblock %}