From 3b5936239e754b4d1ee956b85f7c92bb061d09b2 Mon Sep 17 00:00:00 2001 From: Manfred Date: Wed, 29 Sep 2021 18:33:55 +0200 Subject: [PATCH] Projekttiel in Funktion getProjectphaseForMitarbeiter --- include/projektphase.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/projektphase.class.php b/include/projektphase.class.php index 1b0818ca0..d029ba080 100644 --- a/include/projektphase.class.php +++ b/include/projektphase.class.php @@ -688,7 +688,7 @@ public function getFortschritt($projektphase_id) $qry = " SELECT - DISTINCT tbl_projektphase.* + DISTINCT tbl_projektphase.*,tbl_projekt.titel FROM fue.tbl_projektphase JOIN fue.tbl_projekt USING (projekt_kurzbz) @@ -718,6 +718,7 @@ public function getFortschritt($projektphase_id) $obj->bezeichnung = $row->bezeichnung; $obj->typ = $row->typ; $obj->beschreibung = $row->beschreibung; + $obj->projekttitel = $row->titel; $obj->start = $row->start; $obj->ende = $row->ende; $obj->personentage = $row->personentage;