123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <?php
- namespace app\data\controller\user;
- use app\data\service\UserAdminService;
- use app\data\service\UserTransferService;
- use think\admin\Controller;
- use think\admin\extend\CodeExtend;
- use think\admin\service\AdminService;
- /**
- * 用户提现管理
- * Class Transfer
- * @package app\data\controller\user
- */
- class Transfer extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- private $table = 'DataUserTransfer';
- /**
- * 提现转账方案
- * @var array
- */
- protected $types = [];
- protected function initialize()
- {
- $this->types = UserTransferService::instance()->types();
- }
- /**
- * 用户提现配置
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function config()
- {
- $this->skey = 'TransferRule';
- $this->title = '用户提现配置';
- $this->_sysdata();
- }
- /**
- * 微信转账配置
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function payment()
- {
- $this->skey = 'TransferWxpay';
- $this->title = '微信提现配置';
- $this->_sysdata();
- }
- /**
- * 配置数据处理
- * @param string $tpl 模板文件
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- private function _sysdata($tpl = '')
- {
- if ($this->request->isGet()) {
- $this->data = sysdata($this->skey);
- $this->fetch($tpl);
- } else {
- sysdata($this->skey, $this->request->post());
- $this->success('配置修改成功');
- }
- }
- /**
- * 用户提现管理
- * @menu true
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $this->title = '用户提现管理';
- $this->transfer = UserTransferService::instance()->amount(0);
- // 创建查询对象
- $query = $this->_query($this->table)->order('id desc');
- // 用户条件搜索
- $db = $this->_query('DataUser')->like('phone,username|nickname#nickname')->db();
- if ($db->getOptions('where')) $query->whereRaw("uid in {$db->field('id')->buildSql()}");
- // 数据列表处理
- $query->equal('type,status')->dateBetween('create_at')->page();
- }
- /**
- * 数据列表处理
- * @param array $data
- */
- protected function _page_filter(array &$data)
- {
- UserAdminService::instance()->buildByUid($data);
- foreach ($data as &$vo) {
- $vo['type_name'] = UserTransferService::instance()->types($vo['type']);
- }
- }
- /**
- * 提现审核操作
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function auditStatus()
- {
- $this->_audit();
- }
- /**
- * 提现打款操作
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function auditPayment()
- {
- $this->_audit();
- }
- /**
- * 提现审核打款
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- private function _audit()
- {
- if ($this->request->isGet()) {
- $this->_form($this->table, 'audit', 'code');
- } else {
- $data = $this->_vali([
- 'code.require' => '打款单号不能为空!',
- 'status.require' => '交易审核操作类型!',
- 'status.in:0,1,2,3,4' => '交易审核操作类型!',
- 'remark.default' => '',
- ]);
- $map = ['code' => $data['code']];
- $find = $this->app->db->name($this->table)->where($map)->find();
- if (empty($find)) $this->error('不允许操作审核!');
- // 提现状态(0已拒绝, 1待审核, 2已审核, 3打款中, 4已打款, 5已收款)
- if (in_array($data['status'], [0, 1, 2, 3])) {
- $data['last_at'] = date('Y-m-d H:i:s');
- } elseif ($data['status'] == 4) {
- $data['trade_no'] = CodeExtend::uniqidDate(20);
- $data['trade_time'] = date('Y-m-d H:i:s');
- $data['change_time'] = date('Y-m-d H:i:s');
- $data['change_desc'] = ($data['remark'] ?: '线下打款成功') . ' By ' . AdminService::instance()->getUserName();
- }
- if ($this->app->db->name($this->table)->strict(false)->where($map)->update($data) !== false) {
- $this->success('操作成功');
- } else {
- $this->error('操作失败!');
- }
- }
- }
- /**
- * 后台打款服务
- * @auth true
- */
- public function sync()
- {
- $this->_queue('提现到微信余额定时处理', 'xdata:UserTransfer', 0, [], 0, 50);
- }
- }
|