rabin 1 年間 前
コミット
32c1e740c3
1 ファイル変更8 行追加0 行削除
  1. 8 0
      lib/Log.php

+ 8 - 0
lib/Log.php

@@ -98,6 +98,12 @@ class Log
         $info['status_name'] = $this->status($info['type_id'], $info['status']);
         $info['type_name'] = Dever::load("account/config_type-one#name", $info['type_id']);
         $info['cdate_string'] = date('Y-m-d H:i', $info['cdate']);
+        if ($info['audit_date']) {
+            $info['audit_date_string'] = date('Y-m-d H:i', $info['audit_date']);
+        } else {
+            $info['audit_date_string'] = '-';
+        }
+        
         $info['fee'] = Dever::number($info['ycash'] - $info['cash']);
 
         $type = Dever::db('account/config_type')->one($info['type_id']);
@@ -121,6 +127,8 @@ class Log
                 $status_name = '已审核(已发放)';
             } elseif ($status == 4) {
                 $status_name = '审核驳回';
+            } elseif ($status == 6) {
+                $status_name = '已审核(待发放)';
             } else {
                 $status_name = '已作废';
             }