fix: usuario y monto

This commit is contained in:
Juan Felipe Zapata Moreno 2025-12-23 09:16:21 -06:00
parent cdfd53e8ec
commit 6a12a71f10

View File

@ -132,18 +132,18 @@ onMounted(() => {
</div>
</td>
<td class="px-6 py-4 text-sm text-gray-700">
{{ model.closed_by?.full_name || "-" }}
</td>
<td class="px-6 py-4 text-sm text-gray-700">
${{ parseFloat(model.total_amount || 0).toFixed(2) }}
</td>
<td class="px-6 py-4 text-sm text-gray-700">
{{
model.end_at
? new Date(model.end_at).toLocaleDateString()
: "-"
}}
</td>
${{ parseFloat(model.total_amount || 0).toFixed(2) }}
</td>
<td class="px-6 py-4 text-sm text-gray-700">
{{ model.closed_by?.full_name || "-" }}
</td>
<td class="px-6 py-4 text-sm text-gray-700">
{{
model.end_at
? new Date(model.end_at).toLocaleDateString()
: "-"
}}
</td>
</tr>
<!-- Fila expandida con detalles -->