From d48a5dff4d986d362bfb666761cb35089c338a35 Mon Sep 17 00:00:00 2001 From: Karl Burkhart Date: Wed, 14 Aug 2013 08:04:17 +0000 Subject: [PATCH] =?UTF-8?q?anschaffungswert=20und=20anschaffungsdatum=20be?= =?UTF-8?q?i=20funktionen=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/betriebsmittel.class.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/betriebsmittel.class.php b/include/betriebsmittel.class.php index 35a3eb313..016a4cf6b 100644 --- a/include/betriebsmittel.class.php +++ b/include/betriebsmittel.class.php @@ -135,6 +135,8 @@ class betriebsmittel extends basis_db $this->breite = $row->breite; $this->tiefe = $row->tiefe; $this->nummer2 = $row->nummer2; + $this->anschaffungsdatum = $row->anschaffungsdatum; + $this->anschaffungswert = $row->anschaffungswert; return true; } @@ -198,6 +200,8 @@ class betriebsmittel extends basis_db $bm->leasing_bis = $row->leasing_bis; $bm->inventuramum = $row->inventuramum; $bm->inventurvon = $row->inventurvon; + $bm->anschaffungswert = $row->anschaffungswert; + $bm->anschaffungsdatum = $row->anschaffungsdatum; $this->result[] = $bm; } @@ -442,6 +446,8 @@ class betriebsmittel extends basis_db $bm->inventuramum = $row->inventuramum; $bm->inventurvon = $row->inventurvon; $bm->nummer2 = $row->nummer2; + $bm->anschaffungsdatum = $row->anschaffungsdatum; + $bm->anschaffungswert = $row->anschaffungswert; $this->result[] = $bm; } @@ -496,6 +502,8 @@ class betriebsmittel extends basis_db $bm->inventuramum = $row->inventuramum; $bm->inventurvon = $row->inventurvon; $bm->nummer2 = $row->nummer2; + $bm->anschaffungsdatum = $row->anschaffungsdatum; + $bm->anschaffungswert = $row->anschaffungswert; $this->result[] = $bm; } @@ -552,6 +560,8 @@ class betriebsmittel extends basis_db $obj->inventuramum = $row->inventuramum; $obj->inventurvon = $row->inventurvon; $obj->nummer2 = $row->nummer2; + $obj->anschaffungsdatum = $row->anschaffungsdatum; + $obj->anschaffungswert = $row->anschaffungswert; $this->result[] = $obj; } @@ -768,6 +778,8 @@ class betriebsmittel extends basis_db $this->leasing_bis = $row->leasing_bis; $this->inventuramum = $row->inventuramum; $this->inventurvon = $row->inventurvon; + $this->anschaffungsdatum = $row->anschaffungsdatum; + $this->anschaffungswert = $row->anschaffungswert; return $this->result=$row; }