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.
296 lines
6.6 KiB
296 lines
6.6 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\activity\bargain;
|
|
|
|
use app\model\product\product\StoreDescription;
|
|
use app\model\product\product\StoreProduct;
|
|
use crmeb\basic\BaseModel;
|
|
use crmeb\traits\ModelTrait;
|
|
use think\Model;
|
|
|
|
/**
|
|
* 砍价商品Model
|
|
* Class StoreBargain
|
|
* @package app\model\activity\bargain
|
|
*/
|
|
class StoreBargain extends BaseModel
|
|
{
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'store_bargain';
|
|
|
|
|
|
public function getImagesAttr($value)
|
|
{
|
|
return json_decode($value, true) ?? [];
|
|
}
|
|
|
|
/**
|
|
* 配送信息
|
|
* @param $value
|
|
* @return false|string
|
|
*/
|
|
protected function setDeliveryTypeAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_array($value) ? implode(',', $value) : $value;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* 配送信息
|
|
* @param $value
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
protected function getDeliveryTypeAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_string($value) ? explode(',', $value) : $value;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* 配送信息
|
|
* @param $value
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
protected function getCustomFormAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_string($value) ? json_decode($value, true) : $value;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* 商品标签
|
|
* @param $value
|
|
* @return array|mixed
|
|
*/
|
|
protected function getLabelIdAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_string($value) ? explode(',', $value) : $value;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
* @return array|mixed
|
|
*/
|
|
public function getStoreLabelIdAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_string($value) ? array_map('intval', array_filter(explode(',', $value))) : $value;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* 商品保障服务
|
|
* @param $value
|
|
* @return array|mixed
|
|
*/
|
|
protected function getEnsureIdAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_string($value) ? array_map('intval', array_filter(explode(',', $value))) : $value;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* 参数信息
|
|
* @param $value
|
|
* @return array|mixed
|
|
*/
|
|
protected function getSpecsAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_string($value) ? json_decode($value, true) : $value;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* 适用门店信息
|
|
* @param $value
|
|
* @return string
|
|
*/
|
|
protected function setApplicableStoreIdAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_array($value) ? implode(',', $value) : $value;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* 适用门店信息
|
|
* @param $value
|
|
* @return array|false|string[]
|
|
*/
|
|
protected function getApplicableStoreIdAttr($value)
|
|
{
|
|
if ($value) {
|
|
return is_string($value) ? array_map('intval', array_filter(explode(',', $value))) : $value;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* 一对一关联
|
|
* 商品关联商品商品详情
|
|
* @return \think\model\relation\HasOne
|
|
*/
|
|
public function descriptions()
|
|
{
|
|
return $this->hasOne(StoreDescription::class, 'product_id', 'id')->where('type', 2)->bind(['description']);
|
|
}
|
|
|
|
/**
|
|
* 原价
|
|
* @return \think\model\relation\HasOne
|
|
*/
|
|
public function product()
|
|
{
|
|
return $this->hasOne(StoreProduct::class, 'id', 'product_id')->field(['id', 'ot_price'])->bind(['ot_price']);
|
|
}
|
|
|
|
/**
|
|
* 添加时间获取器
|
|
* @param $value
|
|
* @return false|string
|
|
*/
|
|
protected function getAddTimeAttr($value)
|
|
{
|
|
if ($value) return date('Y-m-d H:i:s', (int)$value);
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* 砍价商品名称搜索器
|
|
* @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 searchStatusAttr($query, $value, $data)
|
|
{
|
|
if ($value != '') $query->where('status', $value ?? 1);
|
|
}
|
|
|
|
/**
|
|
* 是否推荐搜索器
|
|
* @param Model $query
|
|
* @param $value
|
|
* @param $data
|
|
*/
|
|
public function searchIsHotAttr($query, $value, $data)
|
|
{
|
|
$query->where('is_hot', $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);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 活动有效时间搜索器
|
|
* @param $query
|
|
* @param $value
|
|
*/
|
|
public function searchBargainTimeAttr($query, $value)
|
|
{
|
|
if ($value == 1) {
|
|
$time = time();
|
|
$query->where('start_time', '<=', $time)->where('stop_time', '>=', $time);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 系统表单搜索器
|
|
* @param Model $query
|
|
* @param $value
|
|
*/
|
|
public function searchSystemFormIdAttr($query, $value)
|
|
{
|
|
if (is_array($value)) {
|
|
if ($value) $query->whereIn('system_form_id', $value);
|
|
} else {
|
|
if ($value !== '') $query->where('system_form_id', $value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 适用门店类型搜索器
|
|
* @param Model $query
|
|
* @param $value
|
|
*/
|
|
public function searchApplicableTypeAttr($query, $value)
|
|
{
|
|
if (is_array($value)) {
|
|
if ($value) $query->whereIn('applicable_type', $value);
|
|
} else {
|
|
if ($value !== '') $query->where('applicable_type', $value);
|
|
}
|
|
}
|
|
}
|
|
|