Your Name 2 years ago
parent
commit
4b5c686d29
1 changed files with 7 additions and 6 deletions
  1. 7 6
      learn/active/lib/Manage.php

+ 7 - 6
learn/active/lib/Manage.php

@@ -400,7 +400,8 @@ Class Manage
     {
         $data = Dever::db('active/code')->state(array('order_id' => $id));
         if ($data) {
-            $head = array('参加人信息', '核销码', '核销状态', '领取时间', '核销时间', '核销人', '管理');
+            $head = array('参加人信息', '核销码', '核销状态', '领取时间', '核销人', '管理');
+             // '核销时间',
             $body = array();
             foreach ($data as $k => $v) {
                 $user = Dever::db('active/user')->find($v['join_uid']);
@@ -433,10 +434,10 @@ Class Manage
                 if ($v['cdate']) {
                     $cdate = date('Y-m-d H:i',$v['cdate']);
                 }
-                $offdate = '';
-                if ($v['offdate']) {
-                    $offdate = date('Y-m-d H:i',$v['offdate']);
-                }
+                // $offdate = '';
+                // if ($v['offdate']) {
+                //     $offdate = date('Y-m-d H:i',$v['offdate']);
+                // }
                 $active = Dever::db('active/info')->find($v['active_id']);
                 $m = '';
                 if ($v['status'] == 1 && $active['refund_type'] == 2 ) {
@@ -463,7 +464,7 @@ Class Manage
                     $v['write_code'],
                     $status,
                     $cdate,
-                    $offdate,
+                    // $offdate,
                     $admin_name,
                     $m,
                 );