123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- <?php
- namespace app\common\dao\user;
- use app\common\dao\BaseDao;
- use app\common\model\BaseModel;
- use app\common\model\user\UserBill;
- /**
- * Class UserBillDao
- * @package app\common\dao\user
- * @author zfy
- * @day 2020/6/22
- */
- class UserBillDao extends BaseDao
- {
- /**
- * @return BaseModel
- * @author zfy
- * @day 2020-03-30
- */
- protected function getModel(): string
- {
- return UserBill::class;
- }
- /**
- * @param array $where
- * @param $data
- * @return int
- * @throws \think\db\exception\DbException
- * @author zfy
- * @day 2020/6/22
- */
- public function updateBill(array $where, $data)
- {
- return UserBill::getDB()->where($where)->limit(1)->update($data);
- }
- /**
- * @param $time
- * @return \think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author zfy
- * @day 2020/6/22
- */
- public function getTimeoutBrokerageBill($time)
- {
- return UserBill::getDB()->where('create_time', '<=', $time)->where('category', 'brokerage')
- ->whereIn('type', ['order_one', 'order_two'])->with('user')->where('status', 0)->select();
- }
- public function getTimeoutIntegralBill($time)
- {
- return UserBill::getDB()->where('create_time', '<=', $time)->where('category', 'integral')
- ->where('type', 'lock')->with('user')->where('status', 0)->select();
- }
- public function getTimeoutMerchantMoneyBill($time)
- {
- return UserBill::getDB()->where('create_time', '<=', $time)->where('category', 'mer_lock_money')
- ->where('status', 0)->select();
- }
- public function refundMerchantMoney($order_id, $type, $mer_id)
- {
- return UserBill::getDB()->where('link_id', $order_id)->where('mer_id', $mer_id)
- ->where('category', 'mer_refund_money')->where('type', $type)->sum('number');
- }
- public function merchantLickMoney($merId = null)
- {
- $lst = UserBill::getDB()->where('category', 'mer_lock_money')->when($merId, function ($query, $val) {
- $query->where('mer_id', $val);
- })->where('status', 0)->select()->toArray();
- $lockMoney = 0;
- if (count($lst)) {
- $lockMoney = -1 * UserBill::getDB()->whereIn('link_id', array_column($lst, 'link_id'))
- ->where('category', 'mer_refund_money')->sum('number');
- }
- foreach ($lst as $bill) {
- $lockMoney = bcadd($lockMoney, $bill['number'], 2);
- }
- return $lockMoney;
- }
- /**
- * @param $uid
- * @return float
- * @author zfy
- * @day 2020/6/22
- */
- public function lockBrokerage($uid)
- {
- $lst = UserBill::getDB()->where('category', 'brokerage')
- ->whereIn('type', ['order_one', 'order_two'])->where('uid', $uid)->where('status', 0)->field('link_id,number')->select()->toArray();
- $refundPrice = 0;
- if (count($lst)) {
- $refundPrice = -1 * UserBill::getDB()->whereIn('link_id', array_column($lst, 'link_id'))->where('uid', $uid)
- ->where('category', 'brokerage')->whereIn('type', ['refund_two', 'refund_one'])->sum('number');
- }
- foreach ($lst as $bill) {
- $refundPrice = bcadd($refundPrice, $bill['number'], 2);
- }
- return $refundPrice;
- }
- public function lockIntegral($uid = null, $order_id = null)
- {
- $lst = UserBill::getDB()->where('category', 'integral')
- ->where('type', 'lock')->when($order_id, function ($query, $order_id) {
- $query->where('link_id', $order_id);
- })->when($uid, function ($query, $uid) {
- $query->where('uid', $uid);
- })->where('status', 0)->field('link_id,number')->select()->toArray();
- $lockIntegral = 0;
- if (count($lst)) {
- $lockIntegral = -1 * UserBill::getDB()->whereIn('link_id', array_column($lst, 'link_id'))->where('uid', $uid)
- ->where('category', 'integral')->where('type', 'refund_lock')->sum('number');
- }
- foreach ($lst as $bill) {
- $lockIntegral = bcadd($lockIntegral, $bill['number'], 0);
- }
- return $lockIntegral;
- }
- public function deductionIntegral($uid)
- {
- return UserBill::getDB()->where('uid', $uid)
- ->where('category', 'integral')->where('type', 'deduction')->sum('number');
- }
- public function totalGainIntegral($uid)
- {
- return UserBill::getDB()->where('uid', $uid)
- ->where('category', 'integral')->where('pm', 1)->whereNotIn('type', ['refund', 'cancel'])->sum('number');
- }
- /**
- * @param $uid
- * @return float
- * @author zfy
- * @day 2020/6/22
- */
- public function totalBrokerage($uid)
- {
- return bcsub(UserBill::getDB()->where('category', 'brokerage')
- ->whereIn('type', ['order_one', 'order_two'])->where('uid', $uid)->sum('number'),
- UserBill::getDB()->where('uid', $uid)
- ->where('category', 'brokerage')->whereIn('type', ['refund_two', 'refund_one'])->sum('number'), 2);
- }
- /**
- * @param $uid
- * @return float
- * @author zfy
- * @day 2020/6/22
- */
- public function yesterdayBrokerage($uid)
- {
- return getModelTime(UserBill::getDB()->where('category', 'brokerage')
- ->whereIn('type', ['order_one', 'order_two'])->where('uid', $uid), 'yesterday')->sum('number');
- }
- /**
- * @param array $where
- * @return \think\db\BaseQuery
- * @author zfy
- * @day 2020/6/22
- */
- public function search(array $where)
- {
- return UserBill::getDB()
- ->when(isset($where['now_money']) && in_array($where['now_money'], [0, 1, 2]), function ($query) use ($where) {
- if ($where['now_money'] == 0)
- $query->where('category', 'now_money')->whereIn('type', ['pay_product', 'recharge', 'sys_inc_money', 'sys_dec_money', 'brokerage', 'presell', 'refund']);
- else if ($where['now_money'] == 1)
- $query->where('category', 'now_money')->whereIn('type', ['pay_product', 'sys_dec_money', 'presell']);
- else if ($where['now_money'] == 2)
- $query->where('category', 'now_money')->whereIn('type', ['recharge', 'sys_inc_money', 'brokerage', 'refund']);
- })
- ->when(isset($where['uid']) && $where['uid'] !== '', function ($query) use ($where) {
- $query->where('uid', $where['uid'])->where('mer_id', 0);
- })
- ->when(isset($where['pm']) && $where['pm'] !== '', function ($query) use ($where) {
- $query->where('pm', $where['pm']);
- })
- ->when(isset($where['category']) && $where['category'] !== '', function ($query) use ($where) {
- $query->where('category', $where['category']);
- })
- ->when(isset($where['status']) && $where['status'] !== '', function ($query) use ($where) {
- $query->where('status', $where['status']);
- })
- ->when(isset($where['date']) && $where['date'] !== '', function ($query) use ($where) {
- getModelTime($query, $where['date'], 'create_time');
- })
- ->when(isset($where['day']) && $where['day'] !== '', function ($query) use ($where) {
- $query->whereDay('create_time', $where['day']);
- })
- ->when(isset($where['month']) && $where['month'] !== '', function ($query) use ($where) {
- $query->whereMonth('create_time', $where['month']);
- })
- ->when(isset($where['type']) && $where['type'] !== '', function ($query) use ($where) {
- $query->where('type', $where['type']);
- })
- ->when(isset($where['mer_id']) && $where['mer_id'] !== '', function ($query) use ($where) {
- $query->where('mer_id', $where['mer_id']);
- })
- ->when(isset($where['link_id']) && $where['link_id'] !== '', function ($query) use ($where) {
- $query->where('link_id', $where['link_id']);
- });
- }
- public function userNowMoneyIncTotal($uid)
- {
- return $this->search(['uid' => $uid, 'now_money' => 2])->sum('number');
- }
- public function searchJoin(array $where)
- {
- return UserBill::getDB()->alias('a')->leftJoin('User b', 'a.uid = b.uid')
- ->field('a.bill_id,a.pm,a.title,a.number,a.balance,a.mark,a.create_time,a.status,b.nickname,a.uid,a.category')
- ->when(isset($where['mer_id']) && $where['mer_id'] !== '', function ($query) use ($where) {
- $query->where('a.mer_id',$where['mer_id']);
- })
- ->when(isset($where['type']) && $where['type'] !== '', function ($query) use ($where) {
- $query->where('a.type', $where['type']);
- })
- ->when(isset($where['date']) && $where['date'] !== '', function ($query) use ($where) {
- getModelTime($query, $where['date'], 'a.create_time');
- })
- ->when(isset($where['keyword']) && $where['keyword'] !== '', function ($query) use ($where) {
- $query->whereLike('a.uid|b.nickname|a.title', "%{$where['keyword']}%");
- })
- ->when(isset($where['category']) && $where['category'] !== '', function ($query) use ($where) {
- $query->where('a.category', $where['category']);
- })
- ;
- }
- public function refundBrokerage($order_id, $uid)
- {
- return UserBill::getDB()->where('link_id', $order_id)->where('uid', $uid)
- ->where('category', 'brokerage')->whereIn('type', ['refund_two', 'refund_one'])->sum('number');
- }
- public function refundIntegral($order_id, $uid)
- {
- return UserBill::getDB()->where('link_id', $order_id)->where('uid', $uid)
- ->where('category', 'integral')->where('type', 'refund_lock')->sum('number');
- }
- public function validIntegral($uid, $start, $end)
- {
- $lst = UserBill::getDB()->where('category', 'integral')
- ->where('type', 'lock')->whereBetween('create_time', [$start, $end])->where('uid', $uid)->where('status', 1)->field('link_id,number')->select()->toArray();
- $integral = 0;
- if (count($lst)) {
- $integral = -1 * UserBill::getDB()->whereIn('link_id', array_column($lst, 'link_id'))->where('uid', $uid)
- ->where('category', 'integral')->where('type', 'refund_lock')->sum('number');
- }
- foreach ($lst as $bill) {
- $integral = bcadd($integral, $bill['number'], 0);
- }
- $integral2 = UserBill::getDB()->where('uid', $uid)->whereBetween('create_time', [$start, $end])
- ->where('category', 'integral')->where('pm', 1)->whereNotIn('type', ['lock', 'refund'])->sum('number');
- $integral3 = UserBill::getDB()->where('uid', $uid)->whereBetween('create_time', [$start, $end])
- ->where('category', 'integral')->where('type', 'sys_dec')->sum('number');
- return (int)max(bcsub(bcadd($integral, $integral2, 0), $integral3, 0), 0);
- }
- }
|