feat: botão imprimir pedido cozinha

This commit is contained in:
2025-03-20 17:02:28 -03:00
parent 6d9693bc26
commit 725e566d74
9 changed files with 53 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
{% for item in consumo%}
<tr>
<td >
<td id="id-for-print-{{item.id}}">
{{item.product.name}}
{% if item.product.cuisine == True %}
<span data-tooltip="Observações para preparo." data-flow="top">
@@ -19,6 +19,12 @@
style="width: 25px; height: 35px; cursor: pointer;">
</img>
</span>
<img
onclick="printOrder({{item.id}})"
src="{% static 'midia/icons/print.svg' %}"
style="width: 35px; height: 35px; cursor: pointer;">
</img>
{% endif %}
</td>