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