27 lines
909 B
HTML
27 lines
909 B
HTML
<h3 class="mb-4">Relatório de Profissionais</h3>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Profissional</th>
|
|
<th>Serviço</th>
|
|
<th>Valor Bruto</th>
|
|
<th>Quant.</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for professional, services in Sum_of_professional_detail.professionals_report.items %}
|
|
{% for service, value in services.items %}
|
|
{% if value.servSum != 0 %}
|
|
<tr>
|
|
<td>{{ professional }}</td>
|
|
<td>{{ service }}</td>
|
|
<td>R$ {{ value.servSum|floatformat:2 }}</td>
|
|
<td>{{ value.servCont }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<p> Total de Hoje : R$: {{ Sum_of_professional_detail.sum_of_prof|floatformat:2 }}</p>
|
|
<br> |