diff --git a/frontend/src/pages/contracts/ContractDetail.tsx b/frontend/src/pages/contracts/ContractDetail.tsx index 7da2df7e..8a00863f 100644 --- a/frontend/src/pages/contracts/ContractDetail.tsx +++ b/frontend/src/pages/contracts/ContractDetail.tsx @@ -1838,6 +1838,16 @@ export default function ContractDetail() { {c.customer.companyName || `${c.customer.firstName} ${c.customer.lastName}`} + + + @@ -783,6 +785,36 @@ export default function ContractForm() { {isEdit ? 'Vertrag bearbeiten' : 'Neuer Vertrag'} + {customer && ( +

+ Kunde:{' '} + + {customer.companyName || `${customer.firstName} ${customer.lastName}`} + + + + + +

+ )} {error && (
@@ -1764,6 +1796,15 @@ export default function ContractForm() { {/* Status-Info Modal */} setShowStatusInfo(false)} /> + + {/* Kunden-Schnellansicht */} + {customer && ( + setShowCustomerInfo(false)} + /> + )}
); }