model = new \app\admin\model\Moneylog; } public function import() { parent::import(); } /** * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法 * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑 * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改 */ /** * 查看 */ public function index() { //当前是否为关联查询 $this->relationSearch = true; //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { //如果发送的来源是Selectpage,则转发到Selectpage if ($this->request->request('keyField')) { return $this->selectpage(); } list($where, $sort, $order, $offset, $limit) = $this->buildparams(); //公会分权限 $gh_map = []; /*$gh_ids = db('admin')->where('id',$this->auth->id)->value('gh_ids'); if(empty($gh_ids)){ $gh_map = ['moneylog.user_id' => '-1']; }else{ $user_ids = db('user')->where('gh_id','IN',$gh_ids)->column('id'); $gh_map = ['moneylog.user_id' => ['IN',$user_ids]]; } if($gh_ids == '*'){ $gh_map = []; }*/ $map['moneylog.log_type'] = ['in', [21, 22, 23, 54, 60, 82]]; if ($this->auth->id != 1 && $this->auth->id != 11) { if ($this->auth->user_id > 0) { $user_ids = Db::name('user')->where(['intro_uid' => $this->auth->user_id])->column('id'); $user_ids = $user_ids ? : []; $map['moneylog.user_id'] = ['in', $user_ids]; } else { $map['moneylog.user_id'] = -100; } } $list = $this->model ->with(['user', 'otheruser']) ->where($where) ->where($gh_map) ->where($map) ->order($sort, $order) ->paginate($limit); $wallet_logtype = config('wallet.logtype'); $mt_user_match_video_log = Db::name('user_match_video_log'); //视频 $mt_user_match_audio_log = Db::name('user_match_audio_log'); //语音 foreach ($list as $row) { $row->getRelation('user')->visible(['username', 'nickname']); $row->getRelation('otheruser')->visible(['username', 'nickname']); $row['log_type_text'] = isset($wallet_logtype[$row['log_type']]) ? $wallet_logtype[$row['log_type']] : ''; $row['call_minutes'] = ''; if ($row['log_type'] == 21) { $row['call_minutes'] = $mt_user_match_video_log->where(['id' => $row['table_id']])->value('call_minutes'); } elseif ($row['log_type'] == 22) { $row['call_minutes'] = $mt_user_match_audio_log->where(['id' => $row['table_id']])->value('call_minutes'); } } //总收益 $sum_money = db('user_money_log')->alias('moneylog')->join('user','moneylog.user_id = user.id','LEFT')->where($map)->where($gh_map)->field('sum(moneylog.change_value) as sum_money')->find(); //日收益 $today_time = strtotime(date('Y-m-d')); $today_sum_money = db('user_money_log')->alias('moneylog')->join('user','moneylog.user_id = user.id','LEFT')->where($map)->where($gh_map)->where(['moneylog.createtime' => ['egt', $today_time]])->field('sum(moneylog.change_value) as sum_money')->find(); //昨日收益 $week_time = strtotime(date('Y-m-d')) - ((date('w')==0?7:date('w'))-1)*86400; $week_sum_money = db('user_money_log')->alias('moneylog')->join('user','moneylog.user_id = user.id','LEFT')->where($map)->where($gh_map)->where(['moneylog.createtime' => ['between', [$today_time - 86400, $today_time - 1]]])->field('sum(moneylog.change_value) as sum_money')->find(); $result = array("total" => $list->total(), "rows" => $list->items(), 'extend' => [ 'sum_money' => $sum_money['sum_money'], 'today_sum_money' => $today_sum_money['sum_money'], 'week_sum_money' => $week_sum_money['sum_money'], ] ); return json($result); } return $this->view->fetch(); } }