fix: agregar tipo ventas al historial de logs

Badge verde para ventas, opción en filtro de tipo.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-07-11 11:57:14 -05:00
co-authored by Claude Sonnet 4.6
parent f103d536c7
commit 21eb99d18d
+3
View File
@@ -10,6 +10,7 @@
<div class="bg-white rounded-lg border border-gray-200 px-4 py-2.5 shadow-sm flex items-center gap-3">
<span class="px-2 py-0.5 rounded text-xs font-medium
{% if s.tipo == 'transaccion' %}bg-purple-100 text-purple-700
{% elif s.tipo == 'ventas' %}bg-emerald-100 text-emerald-700
{% else %}bg-blue-100 text-blue-700{% endif %}">{{ s.tipo }}</span>
<span class="{% if s.status == 'success' %}text-green-600{% else %}text-red-600{% endif %} font-bold text-sm">
{{ s.cnt }}
@@ -34,6 +35,7 @@
<option value="">Todos los tipos</option>
<option value="terceros" {{ 'selected' if filtro_tipo == 'terceros' }}>Terceros</option>
<option value="transaccion" {{ 'selected' if filtro_tipo == 'transaccion' }}>Transacción</option>
<option value="ventas" {{ 'selected' if filtro_tipo == 'ventas' }}>Ventas</option>
</select>
</div>
<div>
@@ -112,6 +114,7 @@
<td class="px-2 py-2.5">
<span class="px-2 py-0.5 rounded text-xs font-medium
{% if e.tipo == 'terceros' %}bg-blue-100 text-blue-700
{% elif e.tipo == 'ventas' %}bg-emerald-100 text-emerald-700
{% else %}bg-purple-100 text-purple-700{% endif %}">
{{ e.tipo }}
</span>