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); } }