徐总多门店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jiuhaoshenghuo/app/model/other/Category.php

212 lines
4.9 KiB

<?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')->order('sort desc');
}
/**
* 获取子集分类查询条件
* @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);
}
}