Fixed housenumber typo in PreorderIFrameModel

This commit is contained in:
Luca Haid
2025-07-21 06:58:30 +00:00
parent 6f4d15e030
commit 48f5d2fae4

View File

@@ -156,7 +156,7 @@ class PreorderIFrameModel extends mfBaseModel
return [
'oaid' => $row['unit_oaid'] ?? $row['oaid'],
'street' => $row['street'],
'housenumber' => $row['housenumber'],
'housenumber' => $row['hausnummer'],
'hausnummer_id' => $row['hausnummer_id'],
'wohneinheit_id' => $row['wohneinheit_id'],
'building_type' => intval($row['building_type']),
@@ -182,4 +182,4 @@ class PreorderIFrameModel extends mfBaseModel
return $parts ? implode(', ', $parts) : "Top {$counter}";
}
}
}