fix: usuario y monto
This commit is contained in:
parent
cdfd53e8ec
commit
6a12a71f10
@ -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 -->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user