Add Patch PhTable in Customers 2
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m52s
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m52s
This commit is contained in:
parent
a65581a034
commit
c93eb192ca
@ -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" },
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user