Add Patch PhTable in Customers 2
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m52s

This commit is contained in:
Leandro Hernan Rojas 2025-04-06 18:51:44 -03:00
parent a65581a034
commit c93eb192ca

View File

@ -19,8 +19,8 @@
{
<PhTable Columns="TableColumns"
Data="TablaClientes"
RowsPerPage="0"
ShowQuickSearch="true"
RowsPerPage="50"
ShowQuickSearch="false"
RenderSelect="false"
RenderButtons="false" />
@ -63,8 +63,8 @@ else
return new Dictionary<string, object>
{
{ "Id", c.Id },
{ "Nombre", c.Name },
{ "Razon Social", c.BusinessName },
{ "Nombre", c.Name ?? string.Empty },
{ "Razon Social", c.BusinessName ?? string.Empty },
{ "Activo", c.Active ? "Sí" : "No" },
{ "Código Externo", c.ExternalCode },
{ "Crédito", c.HasCreditAccount ? "Sí" : "No" },