DataObjects/ProjectDirectory.php
[Pman.Core] / DataObjects / ProjectDirectory.php
index aeb21f2..9528f67 100644 (file)
@@ -14,8 +14,6 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject
     public $project_id;                      // int(11)  not_null
     public $person_id;                       // int(11)  not_null
     public $ispm;                            // int(11)  not_null
-    public $office_id;                       // int(11)  
-    public $company_id;                      // int(11)  
     public $role;                            // string(16)  not_null
 
     
@@ -33,6 +31,7 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject
     function toEventString() {
         $p = $this->person();
         // this is weird... company is in the person.. - effieciency??
+        // for seaching??
         $c = DB_DataObject::factory('Companies');
         $c->get($this->company_id);
         $pr = DB_DataObject::factory('Projects');