Update Zoom Customer
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m47s

This commit is contained in:
Leandro Hernan Rojas 2025-04-07 01:17:14 -03:00
parent 9ce17b7594
commit 4f60a60154

View File

@ -8,7 +8,7 @@
@inject CustomerHttpService CustomerService
<div class="card " style="zoom:70%">
<div class="card " style="zoom:90%">
<div class="card-header">
<h3 class="card-title">Listado de clientes</h3> @* wtf? *@
</div>
@ -61,7 +61,7 @@
private List<Dictionary<string, object>> TablaClientes = new();
private List<string> TableColumns = new()
{
"Id", "Nombre", "Razon Social", "Activo", "Crédito", "Límite",
"Id", "Nombre", "Activo", "Crédito", "Límite",
"Email", "Teléfono", "Dirección", "Documento"
};
@ -84,7 +84,6 @@
{
{ "Id", c.Id },
{ "Nombre", c.Name ?? string.Empty },
{ "Razon Social", c.BusinessName ?? string.Empty },
{ "Activo", c.Active ? "Sí" : "No" },
{ "Crédito", c.HasCreditAccount ? "Sí" : "No" },
{ "Límite", c.CreditLimit },