DataObjects/Core_watch.php
[Pman.Core] / DataObjects / Office.php
index f007d4b..75d47c2 100644 (file)
@@ -53,38 +53,26 @@ class Pman_Core_DataObjects_Office extends DB_DataObject
     
     function beforeDelete($dependants_array, $roo)
     {
-         if (count($dependants_array) != 1) {
-            //$roo->jerr("more than one person..");
+        if (count($dependants_array) != 1) {
+            //$roo->jerr("more than one dependant type....");
             return true; // standard error message.
         }
-        $p = DB_DAtaObject::Factory('Person');
-        $p->office_id = $this->id;
-        if ($p->count() > 1) {
-            return true; // default err..
-        }
-        $p->find(true);
-        $pp = clone($p);
-        $p->office_id = $this->
-        
-        
         
+        $p = DB_DAtaObject::Factory('Person');
         
-       
-         $p = DB_DAtaObject::Factory('Person');
         if (!is_a($dependants_array[0], get_class($p))) {
             $roo->jerr("dep is not a person..");
             return true;
         }
-        print_R($dep)
-        $x = $dependants_array[0];
-        $old = clone($x);
-        $x->office_id = 0;
-        print_R($x);
-        $x->update($old);
-        
-        
         
-        $roo->jerr("updated person?..");
+        $p->office_id = $this->id;
+        if ($p->count() > 1) {
+            return true; // default err..
+        }
+        $p->find(true);
+        $pp = clone($p);
+        $p->office_id = 0;
+        $p->update($pp);
         return true;
     }