- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
150 lines
2.9 KiB
PHP
150 lines
2.9 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\model\order;
|
|
|
|
|
|
use app\model\store\SystemStore;
|
|
use app\model\user\User;
|
|
use crmeb\basic\BaseModel;
|
|
use crmeb\traits\ModelTrait;
|
|
use think\Model;
|
|
|
|
|
|
class StoreDeliveryOrder extends BaseModel
|
|
{
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'store_delivery_order';
|
|
|
|
protected $updateTime = false;
|
|
|
|
/**
|
|
* @return \think\model\relation\HasOne
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->hasOne(User::class, 'uid', 'uid');
|
|
}
|
|
|
|
/**
|
|
* @return \think\model\relation\HasOne
|
|
*/
|
|
public function orderInfo()
|
|
{
|
|
return $this->hasOne(StoreOrder::class, 'id', 'oid');
|
|
}
|
|
|
|
/**
|
|
* @return \think\model\relation\HasOne
|
|
*/
|
|
public function storeInfo()
|
|
{
|
|
return $this->hasOne(SystemStore::class, 'id', 'relation_id')->where(['is_show' => 1, 'is_del' => 0]);
|
|
}
|
|
|
|
/**
|
|
* @param $query
|
|
* @param $value
|
|
* @return void
|
|
*/
|
|
public function searchKeywordAttr($query, $value)
|
|
{
|
|
$query->where('');
|
|
}
|
|
|
|
/**
|
|
* 商户搜索器
|
|
* @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);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 订单ID搜索器
|
|
* @param Model $query
|
|
* @param $value
|
|
*/
|
|
public function searchOidAttr($query, $value)
|
|
{
|
|
if (is_array($value)) {
|
|
if ($value) $query->whereIn('oid', $value);
|
|
} else {
|
|
if ($value !== '') $query->where('oid', $value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* UID搜索器
|
|
* @param Model $query
|
|
* @param $value
|
|
*/
|
|
public function searchUidAttr($query, $value)
|
|
{
|
|
if (is_array($value)) {
|
|
if ($value) $query->whereIn('uid', $value);
|
|
} else {
|
|
if ($value !== '') $query->where('uid', $value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 平台类型搜索器
|
|
* @param $query
|
|
* @param $value
|
|
* @return void
|
|
*/
|
|
public function searchStationTypeAttr($query, $value)
|
|
{
|
|
if ($value !== '') $query->where('station_type', $value);
|
|
}
|
|
|
|
/**
|
|
* status搜索器
|
|
* @param Model $query
|
|
* @param $value
|
|
*/
|
|
public function searchStatusAttr($query, $value)
|
|
{
|
|
if (is_array($value)) {
|
|
if ($value) $query->whereIn('status', $value);
|
|
} else {
|
|
if ($value !== '') $query->where('status', $value);
|
|
}
|
|
}
|
|
|
|
}
|