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