| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- * Created by PhpStorm.
- * User: lofate
- * Date: 2019/11/28
- * TIME: 10:16
- */
- namespace app\adminapi\controller\v1\finance;
- use app\models\finance\FinanceModel;
- use app\models\user\{User,UserBill};
- use app\adminapi\controller\AuthController;
- use crmeb\services\UtilService as Util;
- class Finance extends AuthController
- {
- /**
- * 筛选类型
- */
- public function bill_type()
- {
- $list = UserBill::where('type', 'not in', ['gain', 'system_sub', 'deduction', 'sign'])
- ->where('mer_id', $this->merId)
- ->where('category', 'not in', 'integral')
- ->field(['title', 'type'])
- ->group('type')
- ->distinct(true)
- ->select();
- return $this->success(compact('list'));
- }
- /**
- * 资金记录
- */
- public function list()
- {
- $where = Util::getMore([
- ['start_time', ''],
- ['end_time', ''],
- ['nickname', ''],
- ['limit', 20],
- ['page', 1],
- ['type', ''],
- ]);
- $where['mer_id'] = $this->merId;
- return $this->success(FinanceModel::getBillList($where));
- }
- /**
- * 佣金记录
- */
- public function get_commission_list()
- {
- $where = Util::getMore([
- ['page', 1],
- ['limit', 20],
- ['nickname', ''],
- ['price_max', ''],
- ['price_min', ''],
- ['excel', ''],
- ]);
- $where['mer_id'] = $this->merId;
- return $this->success(User::getCommissionList($where));
- }
- /**
- * 佣金详情用户信息
- */
- public function user_info($id = '')
- {
- if ($id == '') return $this->fail('缺少参数');
- $user_info=User::userInfo($id);
- return $this->success(compact('user_info'));
- }
- /**
- * 佣金提现记录个人列表
- */
- public function get_extract_list($id = '')
- {
- if ($id == '') return $this->fail('缺少参数');
- $where = Util::getMore([
- ['page', 1],
- ['limit', 20],
- ['start_time', ''],
- ['end_time', ''],
- ['nickname', '']
- ]);
- return $this->success(UserBill::getExtrctOneList($where, $id));
- }
- }
|