Update Transfer.php

This commit is contained in:
邹景立 2021-03-17 15:53:11 +08:00
parent c6b8a43142
commit 4ea718130b

View File

@ -100,7 +100,18 @@ class Transfer extends Auth
{
$query = $this->_query($this->table)->where(['uid' => $this->uuid]);
$result = $query->like('date,code')->in('status')->order('id desc')->page(true, false, false, 10);
$this->success('获取提现成功', $result);
// 统计历史数据
$map = [['uid', '=', $this->uuid], ['status', '>', 1]];
[$total, $count, $locks] = UserRebateService::instance()->amount($this->uuid);
$this->success('获取提现成功', array_merge($result, [
'total' => [
'锁定' => $locks,
'可提' => $total - $count,
'上月' => $this->app->db->name($this->table)->where($map)->whereLike('date', date("Y-m-%", strtotime('-1 month')))->sum('amount'),
'本月' => $this->app->db->name($this->table)->where($map)->whereLike('date', date("Y-m-%"))->sum('amount'),
'全年' => $this->app->db->name($this->table)->where($map)->whereLike('date', date("Y-%"))->sum('amount'),
],
]));
}
/**