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