123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?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\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);
- }
- }
- }
|