chore: merge master into feature branch

This commit is contained in:
Björn Fromme
2026-01-05 18:25:14 +01:00
7 changed files with 42 additions and 2 deletions
@@ -21,6 +21,7 @@ class BookingsParser extends AbstractParser
$booking = new Booking();
$booking->id = $this->getIntOrNullValue($node->filterXPath('//id'));
$booking->applicantId = $this->getIntOrNullValue($node->filterXPath('//idadresse_anmelder'));
$booking->bookingNumber = $this->getIntOrNullValue($node->filterXPath('//vorgangsnummer'));
$booking->status = $this->getStringOrNullValue($node->filterXPath('//status'));
$booking->participantCount = $this->getIntOrNullValue($node->filterXPath('//personen'));
@@ -35,6 +35,9 @@ class ServicesParser extends AbstractParser
$service->direction = $node->attr('richtung');
}
$service->ageFrom = $this->getIntOrNullValue($node->filterXPath('//altervon'));
$service->ageTo = $this->getIntOrNullValue($node->filterXPath('//alterbis'));
$services[$service->id] = $service;
});