123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- namespace app\data\controller\user;
- use app\data\model\BaseUserUpgrade;
- use app\data\model\DataUser;
- use app\data\model\DataUserBalance;
- use app\data\service\UserAdminService;
- use app\data\service\UserBalanceService;
- use app\data\service\UserUpgradeService;
- use think\admin\Controller;
- use think\admin\extend\CodeExtend;
- use app\data\model\SystemUser;
- use think\admin\service\AdminService;
- /**
- * 余额充值记录
- * Class Balance
- * @package app\data\controller\user
- */
- class Balance extends Controller
- {
- /**
- * 余额充值管理
- * @auth true
- * @menu true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $this->title = '余额充值记录';
- // 统计用户余额
- $this->balance = UserBalanceService::amount(0);
- // 现有余额类型
- $this->names = DataUserBalance::mk()->group('name')->column('name');
- // 创建查询对象
- $query = DataUserBalance::mQuery()->equal('name,upgrade');
- // 用户搜索查询
- $db = DataUser::mQuery()->like('phone|nickname#user_keys')->db();
- if ($db->getOptions('where')) $query->whereRaw("uuid in {$db->field('id')->buildSql()}");
- // 数据查询分页
- $query->where(['deleted' => 0])->like('code,remark')->dateBetween('create_at')->order('id desc')->page();
- }
- /**
- * 数据列表处理
- * @param array $data
- */
- protected function _index_page_filter(array &$data)
- {
- UserAdminService::buildByUid($data);
- $uids = array_unique(array_column($data, 'create_by'));
- $users = SystemUser::mk()->whereIn('id', $uids)->column('username', 'id');
- $this->upgrades = BaseUserUpgrade::items();
- foreach ($data as &$vo) {
- $vo['upgradeinfo'] = $this->upgrades[$vo['upgrade']] ?? [];
- $vo['create_byname'] = $users[$vo['create_by']] ?? '';
- }
- }
- /**
- * 添加余额充值
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function add()
- {
- $data = $this->_vali([
- 'uuid.require' => '用户UID不能为空!'
- ],$this->request->isGet() ? 'get' : 'post');
- $this->user = DataUser::mk()->where(['id' => $data['uuid']])->find();
- if (empty($this->user)) $this->error('待充值的用户不存在!');
- DataUserBalance::mForm('form');
- }
- /**
- * 表单数据处理
- * @param array $data
- */
- protected function _form_filter(array &$data)
- {
- if (empty($data['code'])) {
- $data['code'] = CodeExtend::uniqidDate('20', 'B');
- }
- if ($this->request->isGet()) {
- $this->upgrades = BaseUserUpgrade::items();
- }
- if ($this->request->isPost()) {
- $data['create_by'] = AdminService::getUserId();
- if (empty(floatval($data['amount']))) {
- $this->error('金额为零!');
- }
- if($data['amount'] < 1){
- $data['amount'] = abs($data['amount']);
- $pm = 0;
- }else{
- $pm = 1;
- }
- userMoneyChange($data['amount'],1,$data['uuid'],'后台余额充值',$pm,$data['create_by']);
- $this->success('成功');
- }
- }
- /**
- * 表单结果处理
- * @param bool $state
- * @param array $data
- * @throws \think\db\exception\DbException
- */
- protected function _form_result(bool $state, array $data)
- {
- if ($state && isset($data['uuid'])) {
- UserBalanceService::amount($data['uuid']);
- UserUpgradeService::upgrade($data['uuid']);
- }
- }
- /**
- * 删除充值记录
- * @auth true
- */
- public function remove()
- {
- DataUserBalance::mDelete('', [['code', 'like', 'B%']]);
- }
- /**
- * 删除结果处理
- * @param bool $state
- * @throws \think\db\exception\DbException
- */
- protected function _delete_result(bool $state)
- {
- if ($state) {
- $map = [['id', 'in', str2arr(input('id', ''))]];
- foreach (DataUserBalance::mk()->where($map)->cursor() as $vo) {
- UserBalanceService::amount($vo['uuid']);
- UserUpgradeService::upgrade($vo['uuid']);
- }
- }
- }
- }
|