Readded order fields in AddressDB::$wohneinheit_query for preorder address reporting

This commit is contained in:
Frank Schubert
2025-01-08 13:12:50 +01:00
parent 5b60d76bbd
commit efbbf53e78

View File

@@ -63,7 +63,10 @@ class AddressDB {
`Wohneinheit`.`patch_cluster` AS `patch_cluster`,
`Wohneinheit`.`patch_shelf` AS `patch_shelf`,
`Wohneinheit`.`patch_module` AS `patch_module`,
`Wohneinheit`.`patch_port` AS `patch_port`
`Wohneinheit`.`patch_port` AS `patch_port`,
tbl_preorder.type AS `order_type`,
tbl_address.id AS `partner_id`,
tbl_address.company AS `partner_company`
FROM `Hausnummer`
LEFT JOIN `Netzgebiet` ON (`Hausnummer`.`netzgebiet_id` = `Netzgebiet`.`id`)
LEFT JOIN `Plz` ON (`Plz`.`id` = `Hausnummer`.`plz_id`)
@@ -71,6 +74,8 @@ class AddressDB {
LEFT JOIN `Ortschaft` ON (`Ortschaft`.`id` = `Hausnummer`.`ortschaft_id`)
LEFT JOIN `Gemeinde` ON (`Gemeinde`.`id` = `Strasse`.`gemeinde_id`)
LEFT JOIN `Wohneinheit` ON (`Wohneinheit`.`hausnummer_id` = `Hausnummer`.`id`)
LEFT JOIN `".FRONKDB_DBNAME."`.`Preorder` as tbl_preorder on (tbl_preorder.`adb_wohneinheit_id` = `Wohneinheit`.`id` AND (tbl_preorder.`deleted` = 0 OR tbl_preorder.`deleted` IS NULL))
LEFT JOIN `".FRONKDB_DBNAME."`.`Address` as tbl_address on (tbl_address.`id` = tbl_preorder.partner_id)
";
/*public static $wohneinheit_query = "select `Netzgebiet`.`id` AS `netzgebiet_id`,