+ {/* Header */}
+
+
+
+ Anagrafica Clienti
+
+
+ Gestione anagrafica clienti e contratti
+
+
+
+
+
+ {/* Customers Table */}
+
+
+ Lista Clienti
+
+ {customers?.length || 0} clienti registrati
+
+
+
+
+
+
+ Nome
+ Ragione Sociale
+ Città
+ Referente
+ Contatti
+ Stato
+ Azioni
+
+
+
+ {customers?.map((customer) => (
+
+
+
+
+ {customer.name}
+
+
+
+ {customer.businessName || "-"}
+
+
+ {customer.city ? `${customer.city} (${customer.province})` : "-"}
+
+ {customer.contactPerson || "-"}
+
+
+ {customer.phone && (
+
+ )}
+ {customer.email && (
+
+
+ {customer.email}
+
+ )}
+
+
+
+
+ {customer.isActive ? "Attivo" : "Inattivo"}
+
+
+
+
+
+
+
+
+
+ ))}
+ {(!customers || customers.length === 0) && (
+
+
+ Nessun cliente registrato
+
+
+ )}
+
+
+
+
+
+ {/* Delete Confirmation Dialog */}
+
setDeletingCustomerId(null)}>
+
+
+ Conferma eliminazione
+
+ Sei sicuro di voler eliminare questo cliente? L'operazione non può essere annullata.
+
+
+
+ Annulla
+ deletingCustomerId && deleteMutation.mutate(deletingCustomerId)}
+ data-testid="button-confirm-delete"
+ className="bg-destructive hover:bg-destructive/90"
+ >
+ Elimina
+
+
+
+
+
+ );
+}