fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [10177] Logistic: Updating new fields


From: Torstein
Subject: [Fmsystem-commits] [10177] Logistic: Updating new fields
Date: Tue, 09 Oct 2012 12:29:03 +0000

Revision: 10177
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=10177
Author:   vator
Date:     2012-10-09 12:29:03 +0000 (Tue, 09 Oct 2012)
Log Message:
-----------
Logistic: Updating new fields

Modified Paths:
--------------
    trunk/logistic/inc/model/class.requirement.inc.php

Modified: trunk/logistic/inc/model/class.requirement.inc.php
===================================================================
--- trunk/logistic/inc/model/class.requirement.inc.php  2012-10-09 12:28:49 UTC 
(rev 10176)
+++ trunk/logistic/inc/model/class.requirement.inc.php  2012-10-09 12:29:03 UTC 
(rev 10177)
@@ -33,11 +33,14 @@
        {
 
                public static $so;
-               protected static $requirement_id;
-               protected static $activity_id;
-               protected static $date_from;
-               protected static $date_to;
-
+               
+               protected $id;
+               protected $activity_id;
+               protected $date_from;
+               protected $date_to;
+               protected $no_of_elements;
+               protected $location_id;
+               
                /**
                 * Constructor.  Takes an optional ID.  If a contract is 
created from outside
                 * the database the ID should be empty so the database can add 
one according to its logic.
@@ -46,19 +49,39 @@
                 */
                public function __construct(int $id = null)
                {
-                       $this->requirement_id = (int) $id;
+                       $this->id = (int) $id;
                }
+               
+               public function set_id($id)
+               {
+                       $this->id = $id;
+               }
 
-               public function set_requirement_id($id)
+               public function get_id()
                {
-                       $this->requirement_id = $id;
+                       return $this->id;
                }
 
-               public function get_requirement_id()
+               public function set_no_of_elements($no_of_elements)
                {
-                       return $this->requirement_id;
+                       $this->no_of_elements = $no_of_elements;
                }
 
+               public function get_no_of_elements()
+               {
+                       return $this->no_of_elements;
+               }
+               
+               public function set_location_id($location_id)
+               {
+                       $this->location_id = $location_id;
+               }
+
+               public function get_location_id()
+               {
+                       return $this->location_id;
+               }
+
                public function set_activity_id($activity_id)
                {
                        $this->activity_id = $activity_id;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]