From 4f60a601547716fbc0e1849b2425bc758c4455c2 Mon Sep 17 00:00:00 2001 From: Leandro Hernan Rojas Date: Mon, 7 Apr 2025 01:17:14 -0300 Subject: [PATCH] Update Zoom Customer --- phronCare.UIBlazor/Pages/Sales/Customers.razor | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/phronCare.UIBlazor/Pages/Sales/Customers.razor b/phronCare.UIBlazor/Pages/Sales/Customers.razor index eedd099..b8393f5 100644 --- a/phronCare.UIBlazor/Pages/Sales/Customers.razor +++ b/phronCare.UIBlazor/Pages/Sales/Customers.razor @@ -8,7 +8,7 @@ @inject CustomerHttpService CustomerService -
+

Listado de clientes

@* wtf? *@
@@ -61,7 +61,7 @@ private List> TablaClientes = new(); private List 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 },