wip: improved insurance selection

This commit is contained in:
Björn Fromme
2025-10-02 12:11:23 +02:00
parent 8a495346d6
commit d7929dd855
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;
}
}