From c055b8f9dff49abf99628ddbd7514723a593b5c8 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 31 Mar 2026 20:13:03 +0200 Subject: [PATCH] . --- .../customer-address-section.tsx | 7 +++- .../customer-contact-section.tsx | 17 +++++++--- .../customer-footer-actions.tsx | 6 ++-- .../web/list/ui/pages/list-customers-page.tsx | 6 ++-- .../components/right-panel/right-panel.tsx | 34 +++++++++---------- 5 files changed, 41 insertions(+), 29 deletions(-) diff --git a/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-address-section.tsx b/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-address-section.tsx index 3e42afa0..acb3629b 100644 --- a/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-address-section.tsx +++ b/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-address-section.tsx @@ -11,7 +11,12 @@ export const CustomerAddressSection = ({ customer }: { customer: Customer }) =>

Dirección

- +

{customer.street}

diff --git a/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-contact-section.tsx b/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-contact-section.tsx index 4046390f..168f288b 100644 --- a/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-contact-section.tsx +++ b/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-contact-section.tsx @@ -4,24 +4,33 @@ import type { Customer } from "../../../../shared"; export const CustomerContactSection = ({ customer }: { customer: Customer }) => { return ( -
+

Contacto

- + {customer.primaryEmail} {customer.secondaryEmail && ( - + {customer.secondaryEmail} )} {customer.primaryPhone && ( - + {customer.primaryPhone} diff --git a/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-footer-actions.tsx b/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-footer-actions.tsx index e119070c..4b879c17 100644 --- a/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-footer-actions.tsx +++ b/modules/customers/src/web/list/ui/blocks/customer-summary-panel/customer-footer-actions.tsx @@ -4,7 +4,7 @@ import type { Customer } from "../../../../shared"; export const CustomerFooterActions = ({ customer, - onCreateInvoice, + onCreateInvoice: onCreateProforma, onEdit, }: { customer: Customer; @@ -14,8 +14,8 @@ export const CustomerFooterActions = ({ return (
- ) : null} -
-
- -
{children}
- + + + {children} + ); };