123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <?php
- namespace app\model\order;
- use app\model\store\SystemStoreStaff;
- use app\model\user\User;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\Model;
- class OtherOrder extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'other_order';
- protected $insert = ['add_time'];
-
-
- public function searchStoreIdAttr($query, $value)
- {
- if ($value !== '') {
- if ($value == -1) {
- $query->where('store_id', '>', 0);
- } else {
- $query->where('store_id', $value);
- }
- }
- }
-
- public function searchStaffIdAttr($query, $value)
- {
- if ($value) {
- if (is_array($value)) {
- $query->whereIn('staff_id', $value);
- } else {
- $query->where('staff_id', $value);
- }
- }
- }
-
- public function searchTypeAttr($query, $value)
- {
- if ($value) {
- if (is_array($value)) {
- $query->where('type', 'in', $value);
- } else {
- $query->where('type', $value);
- }
- }
- }
- public function searchPaidAttr($query, $value)
- {
- $query->where('paid', $value);
- }
-
- public function searchPayTypeNoAttr($query, $value)
- {
- $query->where('pay_type', '<>', $value);
- }
-
- public function searchChannelTypeAttr($query, $value)
- {
- if ($value != '') $query->where('channel_type', $value);
- }
-
- public function searchOrderIdAttr($query, $value)
- {
- if ($value != "") {
- $query->where('order_id', $value);
- }
- }
-
- public function user()
- {
- return $this->hasOne(User::class, 'uid', 'uid')->field(['uid', 'nickname', 'avatar', 'phone', 'spread_uid', 'overdue_time', 'now_money', 'integral']);
- }
-
- public function staff()
- {
- return $this->hasOne(SystemStoreStaff::class, 'id', 'staff_id')
- ->field(['id', 'uid', 'store_id', 'staff_name'])
- ->bind([
- 'staff_uid' => 'uid',
- 'staff_store_id' => 'store_id',
- 'staff_name' => 'staff_name'
- ]);;
- }
-
- public function searchMemberTypeAttr($query, $value)
- {
- if ($value && $value != 'card' && $value != 'free') {
- $query->where('member_type', $value);
- } elseif ($value == 'card') {
- $query->where('member_type', 'free')->where('code', '<>', '');
- } elseif ($value == 'free') {
- $query->where('member_type', 'free')->where('code', '');
- }
- }
-
- public function searchPayTypeAttr($query, $value)
- {
- if ($value) {
- if ($value == "free") {
- $query->where(function ($query) {
- $query->where('type', 'in', [0, 2, 4])->whereOr(function ($query) {
- $query->where(['type' => 1, 'is_free' => 1]);
- });
- });
- } else {
- $query->where('pay_type', $value);
- }
- }
- }
-
- public function searchAddTimeAttr($query, $value)
- {
- if ($value) {
- $query->whereTime('add_time', 'between', $value);
- }
- }
-
- public function searchUidAttr($query, $value)
- {
- if ($value) {
- $query->where('uid', 'in', $value);
- }
- }
- }
|