CRMEB/crmeb/app/model/activity/integral/StoreIntegral.php
2022-12-19 18:40:49 +08:00

143 lines
3.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\model\activity\integral;
use app\model\product\product\StoreDescription;
use app\model\product\product\StoreProduct;
use crmeb\traits\ModelTrait;
use crmeb\basic\BaseModel;
use think\Model;
/**
* TODO 积分商品Model
* Class StoreCombination
* @package app\model\activity
*/
class StoreIntegral extends BaseModel
{
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'store_integral';
use ModelTrait;
/**
* 一对一获取原价
* @return \think\model\relation\HasOne
*/
public function getPrice()
{
return $this->hasOne(StoreProduct::class, 'id', 'product_id')->bind(['ot_price', 'product_price' => 'price']);
}
/**
* 一对一关联
* 商品关联商品商品详情
* @return \think\model\relation\HasOne
*/
public function description()
{
return $this->hasOne(StoreDescription::class, 'product_id', 'id')->where('type', 4)->bind(['description']);
}
/**
* 添加时间获取器
* @param $value
* @return false|string
*/
protected function getAddTimeAttr($value)
{
if ($value) return date('Y-m-d H:i:s', (int)$value);
return '';
}
/**
* 轮播图获取器
* @param $value
* @return mixed
*/
public function getImagesAttr($value)
{
return json_decode($value, true) ?? [];
}
/**
* 积分商品名称搜索器
* @param Model $query
* @param $value
* @param $data
*/
public function searchStoreNameAttr($query, $value, $data)
{
if ($value) $query->where('title|id', 'like', '%' . $value . '%');
}
/**
* 是否推荐搜索器
* @param Model $query
* @param $value
* @param $data
*/
public function searchIsHostAttr($query, $value, $data)
{
$query->where('is_host', $value ?? 1);
}
/**
* 状态搜索器
* @param Model $query
* @param $value
* @param $data
*/
public function searchIsShowAttr($query, $value, $data)
{
if ($value != '') $query->where('is_show', $value ?: 0);
}
/**
* 是否删除搜索器
* @param Model $query
* @param $value
* @param $data
*/
public function searchIsDelAttr($query, $value, $data)
{
$query->where('is_del', $value ?? 0);
}
/**
* 商品ID搜索器
* @param Model $query
* @param $value
* @param $data
*/
public function searchProductIdAttr($query, $value, $data)
{
if ($value) {
if (is_array($value)) {
$query->whereIn('product_id', $value);
} else {
$query->where('product_id', $value);
}
}
}
}