123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <?php
- namespace app\model\store;
- use app\model\user\User;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\Model;
- class DeliveryService extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'delivery_service';
-
- protected $updateTime = false;
- protected function getAddTimeAttr($value)
- {
- if ($value) return date('Y-m-d H:i:s', $value);
- return $value;
- }
-
- public function user()
- {
- return $this->hasOne(User::class, 'uid', 'uid')->field(['uid', 'nickname'])->bind([
- 'nickname' => 'nickname'
- ]);
- }
-
- public function searchUidAttr($query, $value)
- {
- $query->where('uid', $value);
- }
-
- 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 searchSupplierIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('relation_id', $value)->where('type', 2);
- } else {
- if ($value !== '') $query->where('relation_id', $value)->where('type', 2);
- }
- }
-
- public function searchStoreIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('relation_id', $value)->where('type', 1);
- } else {
- if ($value !== '') $query->where('relation_id', $value)->where('type', 1);
- }
- }
-
- public function searchStatusAttr($query, $value)
- {
- $query->where('status', $value);
- }
-
- public function searchCustomerAttr($query, $value)
- {
- $query->where('customer', $value);
- }
-
- public function searchNicknameAttr($query, $value)
- {
- $query->whereLike('nickname', '%' . $value . '%');
- }
- public function searchPhoneAttr($query, $value)
- {
- $query->where('phone', $value);
- }
-
- public function searchIsDelAttr($query, $value)
- {
- if ($value !== '') {
- $query->where('is_del', $value);
- }
- }
- }
|