Files
weipan02_server/application/akszadmin/controller/Recharge.php
你的名字 0483b4b364 1
2025-07-14 10:22:40 +08:00

176 lines
6.7 KiB
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://demo.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 代码仓库3https://gitee.com/zoujingli/ThinkAdmin
// | github 代码仓库3https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\akszadmin\controller;
use library\Controller;
use think\Db;
/**
* 充值管理
* Class Item
* @package app\akszadmin\controller
*/
class Recharge extends Controller
{
/**
* 绑定数据表
* @var string
*/
protected $table = 'LcRecharge';
/**
* 充值记录
* @auth true
* @menu true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
public function index()
{
$this->title = '充值记录';
$query = $this->_query($this->table)->alias('i')->field('i.*,u.phone,u.name');
$query->join('lc_user u','i.uid=u.id')->equal('i.status#i_status')->like('i.orderid#i_orderid,i.type#i_type,u.phone#u_phone,u.name#u_name')->dateBetween('i.time#i_time')->order('i.id desc')->page();
}
/**
* 数据列表处理
* @param array $data
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _index_page_filter(&$data)
{
$this->type = Db::name($this->table)->field('type')->group('type')->select();
$this->rejected = sprintf("%.2f",Db::name($this->table)->where("status = 2")->sum('money'));
$this->finished = sprintf("%.2f",Db::name($this->table)->where("status = 1")->sum('money'));
$this->reviewed = sprintf("%.2f",Db::name($this->table)->where("status = 0")->sum('money'));
}
public function edit()
{
$this->applyCsrfToken();
if($this->request->isPost()) {
$id = $this->request->param('id');
$reaolae = $this->request->param('reaolae');
$this->_save($this->table, ['reaolae'=>$reaolae,'status' => '2','time2' => date('Y-m-d H:i:s')]);
}else{
$this->title = '拒绝充值';
$id = $this->request->param('id');
$recharge = Db::name($this->table)->find($id);
if($recharge){
$recharge['username'] = Db::name("LcUser")->where(['id'=>$recharge['uid']])->value('phone');
}
$this->_form($this->table, 'edit');
}
}
/**
* 同意充值
* @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function agree()
{
$this->applyCsrfToken();
$id = $this->request->param('id');
$recharge = Db::name($this->table)->find($id);
if($recharge&&$recharge['status'] == 0){
$money = $recharge['money'];
$uid = $recharge['uid'];
$type = $recharge['type'];
addFinance($uid, $money,1, $type . '入款' . $money . '元');
setNumber('LcUser', 'money', $money, 1, "id = $uid");
$rechargeMoney = Db::name('LcFinance')->where('uid = '.$uid.' and reason like "%入款%"')->sum('money');
$level = Db::name('LcUserMember')->where('value <='.$rechargeMoney.' ')->order('level desc')->find();
if (!empty($level)){
Db::name('LcUser')->where('id', $uid)->update([
'level' => $level['level'],
'member' => $level['id'],
]);
}
// if($tid) setRechargeRebate($tid, $money);
if(getInfo('pay_bank_give') > 0 && $recharge['type'] == '银行入款'){
$money = $money * getInfo('pay_bank_give') /100;
addFinance($uid, $money, 1, '通过'.$type . '奖励' . $money . '元');
setNumber('LcUser', 'money', $money, 1, "id = $uid");
}
if(getInfo('gz_bankz') > 0 && $recharge['type'] == '公账入款'){
$money = $money * getInfo('gz_bankz') /100;
addFinance($uid, $money, 1, '通过'.$type . '奖励' . $money . '元');
setNumber('LcUser', 'money', $money, 1, "id = $uid");
}
if(getInfo('wx_bank_give') > 0 && $recharge['type'] == '微信转银行卡'){
$money = $money * getInfo('wx_bank_give') /100;
addFinance($uid, $money, 1, '通过'.$type . '奖励' . $money . '元');
setNumber('LcUser', 'money', $money, 1, "id = $uid");
}
if(getInfo('alipay_bank_give') > 0 && $recharge['type'] == '支付宝转银行卡'){
$money = $money * getInfo('alipay_bank_give') /100;
addFinance($uid, $money, 1, '通过'.$type . '奖励' . $money . '元');
setNumber('LcUser', 'money', $money, 1, "id = $uid");
}
$this->_save($this->table, ['status' => '1','time2' => date('Y-m-d H:i:s')]);
}
}
/**
* 增减余额
* @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function change(){
if(\think\facade\Request::isPost()){
$data = $this->request->param();
if(!$data['name']) $this->error("用户账号必填");
if(!$data['money']) $this->error("增减金额必填");
$uid = Db::name("LcUser")->where(['phone'=>$data['name']])->value('id');
if(!$uid) $this->error("暂无该用户");
addFinance($uid, $data['money'], $data['type'], $data['reason']);
setNumber('LcUser', 'money', $data['money'], $data['type'], "id = $uid");
$this->success("操作成功");
}
$this->fetch('form');
}
/**
* 拒绝充值
* @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function refuse()
{
$this->applyCsrfToken();
$this->_save($this->table, ['status' => '2','time2' => date('Y-m-d H:i:s')]);
}
/**
* 删除充值记录
* @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function remove()
{
$this->applyCsrfToken();
$this->_delete($this->table);
}
}