wip: modernized edit flow

This commit is contained in:
Björn Fromme
2026-03-16 11:59:10 +01:00
parent 0d073a36a3
commit 28831a3b06
75 changed files with 1662 additions and 747 deletions
@@ -174,6 +174,13 @@ class BookingParser extends AbstractParser
$personalData->communication->email = '[email protected]';
}
// Parse wishes (room remarks and license plate)
$wishesNode = $node->filterXPath('//wünsche');
if (0 < $wishesNode->count()) {
$personalData->remarksRoom = $this->getStringOrNullValue($wishesNode->filterXPath('//unterbringungswunsch'));
$personalData->licensePlate = $this->getStringOrNullValue($wishesNode->filterXPath('//beförderungswunsch'));
}
return $personalData;
}
}