123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?php
- 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;
-
- protected $pk = 'id';
-
- protected $name = 'store_delivery_order';
- protected $updateTime = false;
-
- public function user()
- {
- return $this->hasOne(User::class, 'uid', 'uid');
- }
-
- public function orderInfo()
- {
- return $this->hasOne(StoreOrder::class, 'id', 'oid');
- }
-
- public function storeInfo()
- {
- return $this->hasOne(SystemStore::class, 'id', 'relation_id')->where(['is_show' => 1, 'is_del' => 0]);
- }
-
- public function searchKeywordAttr($query, $value)
- {
- $query->where('');
- }
-
- public function searchTypeAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('type', $value);
- } else {
- if ($value !== '') $query->where('type', $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);
- }
- }
-
- public function searchOidAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('oid', $value);
- } else {
- if ($value !== '') $query->where('oid', $value);
- }
- }
-
- public function searchUidAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('uid', $value);
- } else {
- if ($value !== '') $query->where('uid', $value);
- }
- }
-
- public function searchStationTypeAttr($query, $value)
- {
- if ($value !== '') $query->where('station_type', $value);
- }
-
- public function searchStatusAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('status', $value);
- } else {
- if ($value !== '') $query->where('status', $value);
- }
- }
- }
|