123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\model\other;
- use app\model\product\label\StoreProductLabel;
- use app\model\product\specs\StoreProductSpecs;
- use app\model\user\label\UserLabel;
- use app\model\activity\table\TableQrcode;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\Model;
- /**
- * 分类表
- * Class Category
- * @package app\model\other
- */
- class Category extends BaseModel
- {
- use ModelTrait;
- /**
- * 表名
- * @var string
- */
- protected $name = 'category';
- /**
- * 主键
- * @var string
- */
- protected $pk = 'id';
- /**
- * 用户标签
- * @return \think\model\relation\HasMany
- */
- public function label()
- {
- return $this->hasMany(UserLabel::class, 'label_cate', 'id');
- }
- /**
- * 商品标签
- * @return \think\model\relation\HasMany
- */
- public function productLabel()
- {
- return $this->hasMany(StoreProductLabel::class, 'label_cate', 'id');
- }
- /**
- * 商品参数
- * @return \think\model\relation\HasMany
- */
- public function specs()
- {
- return $this->hasMany(StoreProductSpecs::class, 'temp_id', 'id');
- }
- /**
- * 获取子集分类查询条件
- * @return \think\model\relation\HasMany
- */
- public function children()
- {
- return $this->hasMany(self::class, 'pid', 'id')->where('is_show', 1)->order('sort DESC,id DESC');
- }
- /**分类关联桌码 一对多
- * @return \think\model\relation\HasMany
- */
- public function tableQrcode()
- {
- return $this->hasMany(TableQrcode::class, 'cate_id', 'id')->where('is_using', 1)->where('is_del', 0)->order('table_number ASC,id ASC');
- }
- /**
- * ID搜索器
- * @param Model $query
- * @param $value
- */
- public function searchIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('id', $value);
- } else {
- if ($value) $query->where('id', $value);
- }
- }
- /**
- * PID搜索器
- * @param Model $query
- * @param $value
- */
- public function searchPidAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('pid', $value);
- } else {
- if ($value !== '') $query->where('pid', $value);
- }
- }
- /**
- * 归属人
- * @param Model $query
- * @param $value
- */
- public function searchOwnerIdAttr($query, $value)
- {
- $query->where('owner_id', $value);
- }
- /**
- * 商户搜索器
- * @param Model $query
- * @param $value
- */
- public function searchTypeAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('type', $value);
- } else {
- if ($value !== '') $query->where('type', $value);
- }
- }
- /**
- * 关联门店ID、供应商ID搜索器
- * @param Model $query
- * @param $value
- */
- public function searchRelationIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('relation_id', $value);
- } else {
- if ($value !== '') $query->where('relation_id', $value);
- }
- }
- /**
- * 供应商
- * @param Model $query
- * @param $value
- */
- public function searchSupplierIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('relation_id', $value)->where('type', 2);
- } else {
- if ($value !== '') $query->where('relation_id', $value)->where('type', 2);
- }
- }
- /**
- * 门店
- * @param Model $query
- * @param $value
- */
- public function searchStoreIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('relation_id', $value)->where('type', 1);
- } else {
- if ($value !== '') $query->where('relation_id', $value)->where('type', 1);
- }
- }
- /**
- * 标签类型0:用户1:客服话术
- * @param Model $query
- * @param $value
- */
- public function searchGroupAttr($query, $value)
- {
- if ($value !== '') $query->where('group', $value);
- }
- /**
- * @param $query
- * @param $value
- */
- public function searchNotIdAttr($query, $value)
- {
- $query->where('id', '<>', $value);
- }
- /**
- * 分类是否显示搜索器
- * @param Model $query
- * @param $value
- * @param $data
- */
- public function searchIsShowAttr($query, $value, $data)
- {
- if ($value !== '') $query->where('is_show', $value);
- }
- }
|