+
@@ -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)}
+ />
+ )}
);
}