소스 검색

前台标段上报时间显示问题

上报方法中intime字段未加入
NoNZero 10 년 전
부모
커밋
74935a87cb
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      protected/class/numofperact.php

+ 2 - 1
protected/class/numofperact.php

@@ -28,7 +28,8 @@ class NumofperAct {
         $this->__numofperact->currdone = $currdone;
         $this->__numofperact->curralltotal = $curralltotal;
         $this->__numofperact->currstatus = 'checking';
-        $this->__numofperact->audittime = time();
+        $this->__numofperact->audittime = 0;
+        $this->__numofperact->intime = time();
         return $this->__numofperact->insert();
     }