DataObjects/Core_notify_recur.php
[Pman.Core] / DataObjects / Office.php
index 5beee80..75d47c2 100644 (file)
@@ -54,24 +54,25 @@ class Pman_Core_DataObjects_Office extends DB_DataObject
     function beforeDelete($dependants_array, $roo)
     {
         if (count($dependants_array) != 1) {
-            $roo->jerr("more than one person..");
+            //$roo->jerr("more than one dependant type....");
             return true; // standard error message.
         }
-         $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;
         }
         
-        $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;
     }