Resumo de Atendimentos
{% for prof_name, services in Sum_of_professional_detail.professionals_report.items %}
{{ prof_name }}
{% for service_name, data in services.items %}
{% if data.servCont > 0 %}
{{ service_name }} ({{ data.servCont }})
R$ {{ data.servSum|floatformat:2 }}
{% for client in data.clients %}
{{ client.time }} {{ client.name }}
R${{ client.value|floatformat:0 }}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
Total Geral
R$ {{ Sum_of_professional_detail.sum_of_prof|floatformat:2 }}
{#