123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- namespace app\common\dao\user;
- use app\common\dao\BaseDao;
- use app\common\model\user\UserRecharge;
- use think\db\BaseQuery;
- /**
- * Class UserRechargeDao
- * @package app\common\dao\user
- * @author zfy
- * @day 2020/6/2
- */
- class UserRechargeDao extends BaseDao
- {
- /**
- * @return string
- * @author zfy
- * @day 2020/6/2
- */
- protected function getModel(): string
- {
- return UserRecharge::class;
- }
- public function createOrderId($uid)
- {
- $count = (int)UserRecharge::getDB()->where('uid', $uid)->where('create_time', '>=', date("Y-m-d"))->where('create_time', '<', date("Y-m-d", strtotime('+1 day')))->count();
- return 'wx' . date('YmdHis', time()) . ($uid . $count);
- }
- public function userRechargePrice($uid)
- {
- return UserRecharge::getDB()->where('uid', $uid)->where('paid', 1)->sum('price');
- }
- /**
- * @param array $where
- * @return BaseQuery
- * @author zfy
- * @day 2020/6/23
- */
- public function searchJoinQuery(array $where)
- {
- return UserRecharge::getDB()->alias('a')->join('User b', 'a.uid = b.uid')
- ->field('a.paid,a.order_id,a.recharge_id,b.nickname,b.avatar,a.price,a.give_price,a.recharge_type,a.pay_time')
- ->when(isset($where['keyword']) && $where['keyword'] !== '', function ($query) use ($where) {
- $query->whereLike('b.nickname|a.order_id', "%{$where['keyword']}%");
- })->when(isset($where['paid']) && $where['paid'] !== '', function ($query) use ($where) {
- $query->whereLike('a.paid', $where['paid']);
- })->when(isset($where['date']) && $where['date'] !== '', function ($query) use ($where) {
- getModelTime($query, $where['date'], 'a.create_time');
- });
- }
- public function totalPayPrice()
- {
- return UserRecharge::getDB()->where('paid', 1)->sum('price');
- }
- public function totalRefundPrice()
- {
- return UserRecharge::getDB()->where('paid', 1)->sum('refund_price');
- }
- public function totalRoutinePrice()
- {
- return UserRecharge::getDB()->where('paid', 1)->where('recharge_type', 'routine')->sum('price');
- }
- public function totalWxPrice()
- {
- return UserRecharge::getDB()->where('paid', 1)->whereIn('recharge_type', ['h5', 'wechat'])->sum('price');
- }
- }
|