'支付预售尾款', 'pay_product' => '购买商品', 'order_one' => '获得一级推广佣金', 'order_two' => '获得二级推广佣金', 'refund_one' => '退回一级推广佣金', 'refund_two' => '退回二级推广佣金', 'refund' => '商品退款', 'recharge' => '余额充值', 'sys_inc_money' => '系统增加余额', 'sys_dec_money' => '系统减少余额', 'brokerage' => '佣金转入余额', 'sign_integral' => '签到积分', ]; /** * UserBillRepository constructor. * @param UserBillDao $dao */ public function __construct(UserBillDao $dao) { $this->dao = $dao; } public function userList($where, $uid, $page, $limit) { $where['uid'] = $uid; $query = $this->dao->search($where)->order('create_time DESC'); $count = $query->count(); $list = $query->setOption('field', [])->field('bill_id,pm,title,number,balance,mark,create_time,status')->page($page, $limit)->select(); return compact('count', 'list'); } public function getList($where, $page, $limit) { $query = $this->dao->searchJoin($where)->order('a.create_time DESC'); $count = $query->count(); $list = $query->page($page, $limit)->select(); return compact('count', 'list'); } /** * @param int $uid * @param string $category * @param string $type * @param int $pm * @param array $data * @return BaseDao|Model * @author zfy * @day 2020-05-07 */ public function bill(int $uid, string $category, string $type, int $pm, array $data) { $data['category'] = $category; $data['type'] = $type; $data['uid'] = $uid; $data['pm'] = $pm; $bill = $this->dao->create($data); if($category == 'now_money'){ $tempData = ['tempCode' => 'USER_BALANCE_CHANGE','id' => $bill->bill_id]; Queue::push(SendTemplateMessageJob::class,$tempData); } return $bill; } /** * @param int $uid * @param string $category * @param string $type * @param array $data * @return BaseDao|Model * @author zfy * @day 2020-05-07 */ public function incBill(int $uid, string $category, string $type, array $data) { return $this->bill($uid, $category, $type, 1, $data); } /** * @param int $uid * @param string $category * @param string $type * @param array $data * @return BaseDao|Model * @author zfy * @day 2020-05-07 */ public function decBill(int $uid, string $category, string $type, array $data) { return $this->bill($uid, $category, $type, 0, $data); } public function type() { $data = []; foreach (self::TYPE_INFO as $type => $title) { $data[] = compact('type', 'title'); } return $data; } /** * TODO 积分日志头部统计 * @return array * @author Qinii * @day 6/9/21 */ public function getStat($merId = 0) { if($merId){ $isusd = app()->make(ProductRepository::class)->getSearch(['mer_id' => $merId])->sum('integral_total'); $refund = $this->dao->search(['category' => 'mer_integral','type' => 'refund','mer_id' => $merId])->sum('number'); $numb = app()->make(ProductRepository::class)->getSearch(['mer_id' => $merId])->sum('integral_price_total'); return [ [ 'className' => 'el-icon-s-cooperation', 'count' => $isusd, 'field' => '个', 'name' => '已使用积分(分)' ], [ 'className' => 'el-icon-edit', 'count' => $refund, 'field' => '次', 'name' => '退款订单返回积分(分)' ], [ 'className' => 'el-icon-edit', 'count' => $numb, 'field' => '次', 'name' => '积分抵扣金额(元)' ], ]; } // 总积分 $integral = app()->make(UserRepository::class)->search(['status' => 1])->sum('integral'); // 客户签到次数 $sign = app()->make(UserSignRepository::class)->getSearch([])->count('*'); // 签到送出积分 $sign_integral = $this->dao->search(['type' => 'sign_integral'])->sum('number'); // 使用积分 $isusd = $this->dao->search(['category' => 'integral','type' => 'deduction'])->sum('number'); $refund = $this->dao->search(['category' => 'mer_integral','type' => 'refund'])->sum('number'); $order = $isusd - $refund; // 下单赠送积分 $order_integral1 = $this->dao->search(['category' => 'integral','type' => 'lock'])->sum('number'); $order_integral2 = $this->dao->search(['category' => 'integral','type' => 'refund_lock'])->sum('number'); $order_integral = $order_integral1 - $order_integral2; $order_integral = $order_integral < 0 ? 0 : $order_integral; // 冻结积分 $freeze_integral = $this->dao->lockIntegral(); return [ [ 'className' => 'el-icon-s-cooperation', 'count' => $integral, 'field' => '个', 'name' => '总积分' ], [ 'className' => 'el-icon-edit', 'count' => $sign, 'field' => '次', 'name' => '客户签到次数' ], [ 'className' => 'el-icon-s-goods', 'count' => $sign_integral , 'field' => '个', 'name' => '签到送出积分' ], [ 'className' => 'el-icon-s-order', 'count' => $order, 'field' => '个', 'name' => '使用积分' ], [ 'className' => 'el-icon-present', 'count' => $order_integral, 'field' => '个', 'name' => '下单赠送积分' ], [ 'className' => 'el-icon-warning', 'count' => $freeze_integral, 'field' => '', 'name' => '冻结积分' ], ]; } }