You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
4.3 KiB
PHP
131 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace Admin\Controller;
|
|
|
|
use Org\Util\Date;
|
|
use Sdk\Controller\AgeController;
|
|
use User\Api\MemberApi as MemberApi;
|
|
use Org\WeixinSDK\Weixin;
|
|
|
|
class TestOrderController extends ThinkController
|
|
{
|
|
public function lists($p = 0) {
|
|
$page = intval($p);
|
|
$page = $page ? $page : 1; //默认显示第一页数据
|
|
$arraypage = $page;
|
|
|
|
if (isset($_REQUEST['row'])) {
|
|
$row = $_REQUEST['row'];
|
|
} else {
|
|
$row = 10;
|
|
}
|
|
|
|
$map['1'] = "1";
|
|
if (!empty($_REQUEST['server_type'])) {
|
|
$map['t.server_type'] = $_REQUEST['server_type'];
|
|
}
|
|
if (!empty($_REQUEST['order_type'])||$_REQUEST['order_type'] == '0') {
|
|
$map['order_type'] = $_REQUEST['order_type'];
|
|
}
|
|
if (!empty($_REQUEST['order_no'])) {
|
|
$map['order_no'] = $_REQUEST['order_no'];
|
|
}
|
|
if (!empty($_REQUEST['user_account'])) {
|
|
$map['user_account'] = $_REQUEST['user_account'];
|
|
}
|
|
if (!empty($_REQUEST['pay_way'])) {
|
|
$map['pay_way'] = $_REQUEST['pay_way'];
|
|
}
|
|
if(!empty($_REQUEST['timestart']) && !empty($_REQUEST['timeend'])){
|
|
$timestart = strtotime($_REQUEST['timestart']);
|
|
$timeend = strtotime($_REQUEST['timeend'])+86399;
|
|
$map['pay_time'] = array("between",array($timestart,$timeend));
|
|
}else if(!empty($_REQUEST['timestart']) && empty($_REQUEST['timeend'])) {
|
|
$timestart = strtotime($_REQUEST['timestart']);
|
|
$map['pay_time'] = array("EGT",$timestart);
|
|
}else if (!empty($_REQUEST['timeend']) && empty($_REQUEST['timestart'])) {
|
|
$timeend = strtotime($_REQUEST['timeend'])+86399;
|
|
$map['pay_time'] = array("ELT",$timeend);
|
|
}
|
|
$order_list = M('test_order t', 'tab_')
|
|
->field("t.*,g.sdk_version")
|
|
->join("tab_game g on t.game_id = g.id","left")
|
|
->where($map)->page($page,$row)->order('add_time desc')->select();
|
|
foreach ($order_list as $k => &$v) {
|
|
$v['game_name'] =clearGameNameType($v['game_name']);
|
|
$v['sdk_version'] =getGameTypeName($v['sdk_version']);
|
|
}
|
|
$sum_order_amount = M('test_order', 'tab_')->alias("t")->where($map)->field('sum(order_amount) as sum_order_amount,count(1) as count')->find();
|
|
$sum_pay_amount = M('test_order', 'tab_')->alias("t")->where($map)->field('sum(pay_amount) as sum_order_amount')->find();
|
|
|
|
$count = $sum_order_amount['count'];
|
|
$page = set_pagination($count, $row);
|
|
if ($page) {
|
|
$this->assign('_page', $page);//分页
|
|
}
|
|
|
|
$this->assign('datas', $order_list);
|
|
$this->assign('sum_order_amount', $sum_order_amount);
|
|
$this->assign('sum_pay_amount', $sum_pay_amount);
|
|
$this->display();
|
|
}
|
|
|
|
public function addOrder(){
|
|
$this->display();
|
|
}
|
|
|
|
public function saveOrder() {
|
|
|
|
$data = $_GET;
|
|
|
|
// dump($data);die();
|
|
$data['add_time'] = time();
|
|
$data['pay_time'] = strtotime($data['pay_time']);
|
|
$data['game_name'] = get_gamename($data['game_id']);
|
|
|
|
$is_exist = M('test_order','tab_')->where(['order_no'=>$data['order_no'],'cp_order_no'=>$data['cp_order_no']])->find();
|
|
|
|
if ($is_exist) {
|
|
$this->ajaxReturn(['status'=>0,'msg'=>'订单重复录入']);
|
|
}
|
|
|
|
$isSuccess = M('test_order','tab_')->add($data);
|
|
|
|
if ($isSuccess) {
|
|
//操作日志
|
|
addOperationLog(array(
|
|
"op_type"=>0,
|
|
"key"=>$data['order_no'],
|
|
"menu"=>"充值-财务管理-测试服订单管理-订单录入",
|
|
"url"=>U("TestOrder/lists",array("order_no"=>$data['order_no']))
|
|
));
|
|
$this->ajaxReturn(['status'=>1,'msg'=>'订单录入成功']);
|
|
} else {
|
|
$this->ajaxReturn(['status'=>0,'msg'=>'订单录入失败']);
|
|
}
|
|
|
|
}
|
|
|
|
public function del() {
|
|
|
|
$id = I('id');
|
|
|
|
if (!$id) {
|
|
$this->ajaxReturn(['status'=>0,'msg'=>'id失效']);
|
|
}
|
|
|
|
$is_del = M('test_order','tab_')->where(['id'=>$id])->delete();
|
|
|
|
if ($is_del) {
|
|
|
|
$this->ajaxReturn(['status'=>1,'msg'=>'删除成功']);
|
|
|
|
} else {
|
|
|
|
$this->ajaxReturn(['status'=>0,'msg'=>'删除失败']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} |