wip: improved insurance selection

This commit is contained in:
Björn Fromme
2026-03-16 11:59:10 +01:00
parent 16c239716b
commit 4489169553
6 changed files with 91 additions and 17 deletions
@@ -762,11 +762,6 @@ class ParticipantFieldOptionsProvider extends AbstractFieldOptionsProvider
$label .= sprintf(' (€%s)', number_format($insurance->price, 2, ',', '.'));
}
// Add type information if available using centralized mapping
if (null !== $insurance->subType && isset(Constants::INSURANCE_LABELS[$insurance->subType])) {
$label .= sprintf(' (%s)', Constants::INSURANCE_LABELS[$insurance->subType]);
}
return $label;
}
}