first commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user