|
|
|
@ -1219,6 +1219,9 @@ class ExportController extends Controller
|
|
|
|
|
}else {
|
|
|
|
|
$value['payed_time'] = "------";
|
|
|
|
|
}
|
|
|
|
|
checkEncryptionAuth($value['user_account'],'spend_lists');
|
|
|
|
|
// $value['user_account'] = encryption($value['user_account']);
|
|
|
|
|
|
|
|
|
|
$value['extend'] = $value['extend'].'`';
|
|
|
|
|
$value['pay_way'] = get_pay_way($value['pay_way']);
|
|
|
|
|
$value['pay_status'] = get_info_status($value['pay_status'],9);
|
|
|
|
@ -1340,6 +1343,9 @@ class ExportController extends Controller
|
|
|
|
|
->order('id DESC')
|
|
|
|
|
->select();
|
|
|
|
|
foreach ($xlsData as $key => $value) {
|
|
|
|
|
|
|
|
|
|
checkEncryptionAuth($xlsData[$key]['user_account'],'deposit_lists');
|
|
|
|
|
|
|
|
|
|
$xlsData[$key]['create_time'] = date('Y-m-d H:i:s', $value['create_time']);
|
|
|
|
|
if ($value['pay_status'] == 1){
|
|
|
|
|
$xlsData[$key]['payed_time'] = date('Y-m-d H:i:s', $value['payed_time']);
|
|
|
|
@ -2466,6 +2472,9 @@ class ExportController extends Controller
|
|
|
|
|
$order_list['pay_amount'] = $v['pay_amount'];
|
|
|
|
|
$order_list['pay_way'] = get_pay_way($v['pay_way']);
|
|
|
|
|
$order_list['add_time'] = date('Y-m-d H:i:s', $v['add_time']);
|
|
|
|
|
|
|
|
|
|
checkEncryptionAuth($order_list['user_account'],'TestOrder_lists');
|
|
|
|
|
|
|
|
|
|
$xlsData[] = $order_list;
|
|
|
|
|
}
|
|
|
|
|
$sumData = [['server_type'=>'总计',
|
|
|
|
@ -4142,6 +4151,7 @@ class ExportController extends Controller
|
|
|
|
|
$xlsName = $_REQUEST['xlsname'];
|
|
|
|
|
$data = $data['data'];
|
|
|
|
|
foreach ($data as $key => $value) {
|
|
|
|
|
checkEncryptionAuth($data[$key]['user_account'],'deposit_lists');
|
|
|
|
|
$data[$key]['pay_way'] = get_pay_way($value['pay_way']);
|
|
|
|
|
$data[$key]['create_time'] = date('Y-m-d H:i:s',$value['create_time']);
|
|
|
|
|
if ($value['pay_status'] == 1) {
|
|
|
|
|