lgy 1 day ago
parent
commit
ace149d907
1 changed files with 5 additions and 2 deletions
  1. 5 2
      jcjyhr/app/zskk/model/Patient.php

+ 5 - 2
jcjyhr/app/zskk/model/Patient.php

@@ -332,9 +332,12 @@ class Patient extends ZskkModel
     public function saveRepeatLab($data)
     public function saveRepeatLab($data)
     {
     {
         $model = new DelLabData();
         $model = new DelLabData();
-        var_dump($data);
+        foreach ($data as &$v)
+        {
+            unset($v['CREATE_TIME']);
+            unset($v['UPDATE_TIME']);
+        }
         $model->saveAll($data);
         $model->saveAll($data);
-        var_dump(2);
     }
     }
 
 
     public function getBiInspect($where)
     public function getBiInspect($where)