Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
207
pro_v3.5.1/app/model/activity/integral/StoreIntegralOrder.php
Normal file
207
pro_v3.5.1/app/model/activity/integral/StoreIntegralOrder.php
Normal file
@@ -0,0 +1,207 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2026 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\sku\StoreProductVirtual;
|
||||
use app\model\user\User;
|
||||
use crmeb\basic\BaseModel;
|
||||
use crmeb\traits\ModelTrait;
|
||||
use think\Model;
|
||||
|
||||
/**
|
||||
* 订单Model
|
||||
* Class StoreIntegralOrder
|
||||
* @package app\model\activity\integral
|
||||
*/
|
||||
class StoreIntegralOrder extends BaseModel
|
||||
{
|
||||
use ModelTrait;
|
||||
|
||||
/**
|
||||
* 数据表主键
|
||||
* @var string
|
||||
*/
|
||||
protected $pk = 'id';
|
||||
|
||||
/**
|
||||
* 模型名称
|
||||
* @var string
|
||||
*/
|
||||
protected $name = 'store_integral_order';
|
||||
|
||||
protected $insert = ['add_time'];
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
* @var bool | string | int
|
||||
*/
|
||||
protected $updateTime = false;
|
||||
|
||||
/**
|
||||
* 创建时间修改器
|
||||
* @return int
|
||||
*/
|
||||
protected function setAddTimeAttr()
|
||||
{
|
||||
return time();
|
||||
}
|
||||
|
||||
/**
|
||||
* 购物车信息获取器
|
||||
* @param $value
|
||||
* @return array|mixed
|
||||
*/
|
||||
public function getCartInfoAttr($value)
|
||||
{
|
||||
return is_string($value) ? json_decode($value, true) ?? [] : [];
|
||||
}
|
||||
|
||||
/**
|
||||
* 配送信息
|
||||
* @param $value
|
||||
* @param $data
|
||||
* @return mixed
|
||||
*/
|
||||
protected function getCustomFormAttr($value)
|
||||
{
|
||||
if ($value) {
|
||||
return is_string($value) ? json_decode($value, true) : $value;
|
||||
}
|
||||
return [];
|
||||
}
|
||||
|
||||
/**
|
||||
* 一对一关联用户表
|
||||
* @return \think\model\relation\HasOne
|
||||
*/
|
||||
public function user()
|
||||
{
|
||||
return $this->hasOne(User::class, 'uid', 'uid')->field(['uid', 'nickname', 'phone', 'spread_uid'])->bind([
|
||||
'nickname' => 'nickname',
|
||||
'phone' => 'phone',
|
||||
'spread_uid' => 'spread_uid',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 关联卡密
|
||||
* @return \think\model\relation\HasMany
|
||||
*/
|
||||
public function virtual()
|
||||
{
|
||||
return $this->hasMany(StoreProductVirtual::class, 'order_id', 'order_id')->where('order_type', 2);
|
||||
}
|
||||
|
||||
/**
|
||||
* 关联订单记录
|
||||
* @return \think\model\relation\HasMany
|
||||
*/
|
||||
public function orderStatus()
|
||||
{
|
||||
return $this->hasMany(StoreIntegralOrderStatus::class, 'oid', 'id');
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单ID搜索器
|
||||
* @param Model $query
|
||||
* @param $value
|
||||
*/
|
||||
public function searchOrderIdAttr($query, $value)
|
||||
{
|
||||
$query->where('order_id', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态搜索器
|
||||
* @param Model $query
|
||||
* @param $value
|
||||
*/
|
||||
public function searchStatusAttr($query, $value)
|
||||
{
|
||||
if ($value !== '') {
|
||||
$query->where('status', $value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品id搜索器
|
||||
* @param Model $query
|
||||
* @param $value
|
||||
*/
|
||||
public function searchProductIdAttr($query, $value)
|
||||
{
|
||||
if ($value !== '') {
|
||||
if (is_array($value)) {
|
||||
$query->whereIn('product_id', $value);
|
||||
} else {
|
||||
$query->where('product_id', $value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 核销码搜索器
|
||||
* @param Model $query
|
||||
* @param $value
|
||||
*/
|
||||
public function searchVerifyCodeAttr($query, $value)
|
||||
{
|
||||
$query->where('verify_code', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Model $query
|
||||
* @param $value
|
||||
*/
|
||||
public function searchIdAttr($query, $value)
|
||||
{
|
||||
if (is_array($value)) {
|
||||
$query->whereIn('id', $value);
|
||||
} else {
|
||||
$query->where('id', $value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单id或者用户名搜索器
|
||||
* @param $query
|
||||
* @param $value
|
||||
*/
|
||||
public function searchOrderIdRealNameAttr($query, $value)
|
||||
{
|
||||
$query->where('order_id|real_name', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户ID搜索器
|
||||
* @param Model $query
|
||||
* @param $value
|
||||
*/
|
||||
public function searchUidAttr($query, $value)
|
||||
{
|
||||
if (is_array($value))
|
||||
$query->whereIn('uid', $value);
|
||||
else
|
||||
$query->where('uid', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户来源
|
||||
* @param Model $query
|
||||
* @param $value
|
||||
*/
|
||||
public function searchChannelTypeAttr($query, $value)
|
||||
{
|
||||
if ($value != '') $query->where('channel_type', $value);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user