repair search

master
yulingwei 4 years ago
parent 81d6240c42
commit 9cdab21db9

@ -3196,6 +3196,10 @@ class ExportController extends Controller
$map['tab_game.relation_game_id'] =$_REQUEST['game_id'];
unset($_REQUEST['game_id']);
}
if (!empty($_REQUEST['game_type'])) {
$map['tab_game.sdk_version'] = $_REQUEST['game_type'];
unset($_REQUEST['game_type']);
}
$today = total(1);
$week = total(2);
$mounth = total(3);
@ -3276,38 +3280,57 @@ class ExportController extends Controller
array('week', "本周充值"),
array('mounth', "本月充值"),
);
$page = intval($p);
$page = $page ? $page : 1; //默认显示第一页数据
$arraypage = $page;
if (isset($_REQUEST['row'])) {
$row = $_REQUEST['row'];
} else {
$row = 10;
}
$spend = M('Spend', 'tab_');
$deposit = M('Deposit', "tab_");
$map['game_id']=array('gt',0);
if(isset($_REQUEST['timestart'])&&isset($_REQUEST['timeend'])){
$map['pay_time'] =array('BETWEEN',array(strtotime($_REQUEST['timestart']),strtotime($_REQUEST['timeend'])+24*60*60-1));
unset($_REQUEST['timestart']);unset($_REQUEST['timeend']);
if (!empty($_REQUEST['timestart']) && !empty($_REQUEST['timeend'])) {
$map['pay_time'] = ['between', array(strtotime($_REQUEST['timestart']), strtotime($_REQUEST['timeend']) + 86399)];
unset($_REQUEST['timestart']);
unset($_REQUEST['timeend']);
} elseif (!empty($_REQUEST['timestart']) && empty($_REQUEST['timeend'])) {
$map['pay_time'] = ['between', array(strtotime($_REQUEST['timestart']), time())];
unset($_REQUEST['timestart']);
} elseif (empty($_REQUEST['timestart']) && !empty($_REQUEST['timeend'])) {
$map['pay_time'] = ['elt', strtotime($_REQUEST['timeend']) + 86399];
unset($_REQUEST['timeend']);
}
if(isset($_REQUEST['start'])&&isset($_REQUEST['end'])){
$map['pay_time'] =array('BETWEEN',array(strtotime($_REQUEST['start']),strtotime($_REQUEST['end'])+24*60*60-1));
unset($_REQUEST['start']);unset($_REQUEST['end']);
//为数据权限添加
setPowerPromoteIds($map);
$map['game_id'] = array('gt', 0);
// var_dump($_REQUEST);exit;
if (isset($_REQUEST['game_id']) && $_REQUEST['game_id'] != '') {
$map['tab_game.relation_game_id'] = $_REQUEST['game_id'];
unset($_REQUEST['game_id']);
}
if(isset($_REQUEST['game_name'])&&$_REQUEST['game_name']!=''){
$map['game_id'] =$_REQUEST['game_name'];
unset($_REQUEST['game_name']);
if (!empty($_REQUEST['game_type'])) {
$map['tab_spend.sdk_version'] = $_REQUEST['game_type'];
unset($_REQUEST['game_type']);
}
$map['tab_spend.pay_status'] = 1;
$today = total(1);
$week = total(2);
$mounth = total(3);
$data = $spend
->field('tab_game.relation_game_name as game_name, tab_game.relation_game_id as game_id,date_format(FROM_UNIXTIME(pay_time),"%Y-%m-%d") AS time, sum(pay_amount) as count') ->where($map)
->join('tab_game on tab_game.id = tab_spend.game_id', 'left')
->where($map)
->join('tab_game on tab_game.id = tab_spend.game_id', 'left')
->group('tab_game.relation_game_id')
->order('count desc,pay_time')
->select();
//今日、本周、本月不随搜索条件而变动
$map2['tab_spend.pay_status'] = 1;
$map2['game_id'] = array('gt', 0);
@ -3331,7 +3354,7 @@ class ExportController extends Controller
$data[$key]['week'] = $data2[$value['game_id']]['week'];
$data[$key]['mounth'] = $data2[$value['game_id']]['mounth'];
}
$total=A('Platform')->data_total($data);
$total = $this->data_total($data);
$this->assign('total', $total);
if ($_REQUEST['data_order'] != '') {
$data_order = reset(explode(',', $_REQUEST['data_order']));
@ -3339,16 +3362,19 @@ class ExportController extends Controller
$this->assign('userarpu_order', $data_order);
$this->assign('userarpu_order_type', $data_order_type);
}
if($count > $row){
$page = new \Think\Page($count, $row);
$page->setConfig('theme','%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END% %HEADER%');
$this->assign('_page', $page->show());
$page = set_pagination($count, $row);
if ($page) {
$this->assign('_page', $page);
}
//$this->checkListOrCountAuthRestMap($map,[]);
$data = my_sort($data, $data_order_type, (int)$data_order);
$size = $row;//每页显示的记录数
$pnum = ceil(count($data) / $size); //总页数ceil()函数用于求大于数字的最小整数
//$pnum = ceil(count($data) / $size); //总页数ceil()函数用于求大于数字的最小整数
//用array_slice(array,offset,length) 函数在数组中根据条件取出一段值;array(数组),offset(元素的开始位置),length(组的长度)
// $data = array_slice($data, ($arraypage-1)*$size, $size);
$length = count($data);
$data[$length] = array(
'game_name'=>'汇总',

@ -45,6 +45,10 @@ class PlatformController extends ThinkController
unset($_REQUEST['game_id']);
}
if (!empty($_REQUEST['game_type'])) {
$map['tab_game.sdk_version'] = $_REQUEST['game_type'];
}
$today = total(1);
$week = total(2);
$mounth = total(3);
@ -149,6 +153,10 @@ class PlatformController extends ThinkController
$map['tab_game.relation_game_id'] = $_REQUEST['game_id'];
unset($_REQUEST['game_id']);
}
if (!empty($_REQUEST['game_type'])) {
$map['tab_spend.sdk_version'] = $_REQUEST['game_type'];
unset($_REQUEST['game_type']);
}
$map['tab_spend.pay_status'] = 1;
$today = total(1);
$week = total(2);

@ -60,11 +60,18 @@
<div class="input-list input-list-game search_label_rehab">
<select id="game_id" name="game_id" class="select_gallery" >
<option value="">游戏名称</option>
<volist name="games" id="vo">
<option game-id="{$vo.relation_game_id}" value="{$vo.relation_game_id}">{$vo.relation_game_name}</option>
<volist name=":getAllGame()" id="vo">
<option value="{$vo.game_id}" <if condition="$vo.game_id eq I('game_id')">selected</if> >{$vo.game_name}</option>
</volist>
</select>
</div>
<div class="input-list input-list-game search_label_rehab">
<select id="game_type" name="game_type" class="select_gallery" >
<option value="">设备类型</option>
<option value="1" <?php echo I('game_type') == 1 ? "selected" : ''?>>安卓</option>
<option value="2" <?php echo I('game_type') == 2 ? "selected" : ''?>>苹果</option>
</select>
</div>
<input type="hidden" name="" value="" class="sortBy">
<div class="input-list">
<a class="sch-btn" href="javascript:;" id="search" url="{:U('Platform/game_statistics','model='.$model['name'] .'&row='.I('row'),false)}">搜索</a>
@ -167,6 +174,7 @@
'timestart'=>$_GET['timestart'],
'timeend'=>$_GET['timeend'],
'game_id'=>$_GET['game_id'],
'game_type'=>$_GET['game_type'],
'p'=>$_GET['p'],
'xlsname'=>'统计_平台统计_游戏注册统计',
),

@ -58,11 +58,18 @@
<div class="input-list input-list-game search_label_rehab">
<select id="game_id" name="game_id" class="select_gallery" >
<option value="">游戏名称</option>
<volist name="games" id="vo">
<option game-id="{$vo.relation_game_id}" value="{$vo.relation_game_id}">{$vo.relation_game_name}</option>
<volist name=":getAllGame()" id="vo">
<option value="{$vo.game_id}" <if condition="$vo.game_id eq I('game_id')">selected</if> >{$vo.game_name}</option>
</volist>
</select>
</div>
<div class="input-list input-list-game search_label_rehab">
<select id="game_type" name="game_type" class="select_gallery" >
<option value="">设备类型</option>
<option value="1" <?php echo I('game_type') == 1 ? "selected" : ''?>>安卓</option>
<option value="2" <?php echo I('game_type') == 2 ? "selected" : ''?>>苹果</option>
</select>
</div>
<input type="hidden" name="" value="" class="sortBy">
<div class="input-list">
<a class="sch-btn" href="javascript:;" id="search" url="{:U('Platform/gamepay_statistics','model='.$model['name'].'&row='.I('row'),false)}">搜索</a>
@ -136,7 +143,7 @@
<div class="page">
<if condition="$role_export_check eq true ">
<a class="sch-btn" href="{:U('Export/platform_statistics',
array('timestart'=>$_GET['timestart'],'timeend'=>$_GET['timeend'],'type'=>1,'game_id'=>$_GET['game_id'],p=>$_GET['p'],'xlsname'=>'统计_平台统计_游戏充值统计',)
array('timestart'=>$_GET['timestart'],'timeend'=>$_GET['timeend'],'type'=>1,'game_type'=>$_GET['game_type'], 'game_id'=>$_GET['game_id'],p=>$_GET['p'],'xlsname'=>'统计_平台统计_游戏充值统计',)
,false)}">导出</a>
</if>
{$_page|default=''}

Loading…
Cancel
Save