| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- // +----------------------------------------------------------------------
- // | 商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2021 https://www.thinkphp.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: thinkphp <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\common\model;
- use cores\BaseModel;
- use think\model\Collection;
- use think\model\relation\HasOne;
- use think\Paginator;
- /**
- * 学校专业模型类
- * Class SpecialityBook
- * @package app\common\model
- */
- class SpecialityBook extends BaseModel
- {
- // 定义表名
- protected $name = 'speciality_book';
- // 定义主键
- protected $pk = 'order_id';
- /**
- * 获取列表
- * @param array $param 查询条件
- * @param int $listRows 分页数量
- * @return mixed
- * @throws \think\db\exception\DbException
- */
- public function getList(array $param = [], int $listRows = 15)
- {
- // 筛选条件
- $query = $this->getQueryFilter($param);
- // 排序条件
- $sort = $this->setQuerySort($param);
- // 执行查询
- $list = $query->alias($this->name)
- ->order($sort)
- ->paginate($listRows);
- // 整理列表数据并返回
- return $list;
- }
- /**
- * 设置商品展示的数据
- * @param Collection|Paginator $list 商品列表
- * @param callable|null $callback 回调函数
- * @return mixed
- */
- protected function setListData($list, callable $callback = null)
- {
- if ($list->isEmpty()) return $list;
- // 遍历商品列表整理数据
- foreach ($list as &$item) {
- $data = $this->setData($item, $callback);
- }
- return $list;
- }
- /**
- * 整理数据
- * @param Collection|static $info
- * @param callable|null $callback
- * @return mixed
- */
- protected function setData($info, callable $callback = null)
- {
- // 回调函数
- is_callable($callback) && call_user_func($callback, $info);
- return $info->hidden(array_merge($this->hidden, ['transaction_id']));
- }
- /**
- * 检索查询条件
- * @param array $params
- * @return \think\db\BaseQuery
- */
- private function getQueryFilter(array $params)
- {
- $filter = [];
- // 实例化新查询对象
- $query = $this->getNewQuery();
- // 报名用户
- !empty($params['user_id']) && $filter[] = ['user_id', '=', "{$params['user_id']}"];
- // 专业学校
- !empty($params['school_id']) && $filter[] = ['school_id', '=', "{$params['school_id']}"];
- // 专业
- !empty($params['speciality_id']) && $filter[] = ['speciality_id', '=', "{$params['speciality_id']}"];
- // 状态
- !empty($params['status']) && $filter[] = ['status', '=', "{$params['status']}"];
- // 实例化新查询对象
- return $query->where($filter)->where(function($query) use ($params){
- // 关键词
- if(!empty($params['keyword'])){
- $query->where('order_no','like', "%{$params['keyword']}%");
- }
- });
- }
- /**
- * 检索排序条件
- * @param array $param
- * @return array|string[]
- */
- private function setQuerySort(array $param = [])
- {
- $params = $this->setQueryDefaultValue($param, [
- 'sortType' => 'all', // 排序类型
- 'create_time' => false, // 排序 (true高到低 false低到高)
- ]);
- // 排序规则
- $sort = [];
- if ($params['sortType'] === 'all') {
- $sort = ['create_time' => 'desc','pay_time'=>'desc'];
- } elseif ($params['sortType'] === 'pay') {
- $sort = ['pay_time' => 'desc'];
- }
- return array_merge($sort, [$this->getPk() => 'desc']);
- }
- /**
- * @return HasOne
- */
- public function speciality(): HasOne
- {
- return $this->HasOne('SchoolSpeciality','speciality_id','speciality_id')->bind(['speciality_name','speciality_logo']);
- }
- /**
- * @return HasOne
- */
- public function school(): HasOne
- {
- return $this->HasOne('School','id','school_id')->bind(['school_name','logo as school_logo']);
- }
- /**
- * @return HasOne
- */
- public function user(): HasOne
- {
- return $this->HasOne('User','user_id','user_id')
- ->with('avatar')
- ->field('user_id,gender,nick_name,preview_url as avatar_url')
- ->bind(['nick_name','avatar_url']);
- }
- /**
- * 批量更新订单
- * @param $orderIds
- * @param $data
- * @return bool|false
- */
- public function onBatchUpdate($orderIds, $data): bool
- {
- return static::updateBase($data, [['order_id', 'in', $orderIds]]);
- }
- }
|