123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <?php
- namespace app\model\store\finance;
- use app\model\store\SystemStore;
- use app\model\store\SystemStoreStaff;
- use app\model\user\User;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\Model;
- class StoreFinanceFlow extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'store_finance_flow';
-
- public function user()
- {
- return $this->hasOne(User::class, 'uid', 'uid')->field(['uid', 'nickname'])->bind([
- 'user_nickname' => 'nickname',
- ]);
- }
-
- public function systemStoreStaff()
- {
- return $this->hasOne(SystemStoreStaff::class, 'id', 'staff_id')->field(['id', 'staff_name'])->bind([
- 'staff_name' => 'staff_name'
- ]);
- }
-
- public function systemStore()
- {
- return $this->hasOne(SystemStore::class, 'id', 'store_id');
- }
-
- public function searchIdAttr($query, $value)
- {
- if (is_array($value)) {
- $query->whereIn('id', $value);
- } else {
- $query->where('id', $value);
- }
- }
-
- public function searchStoreIdAttr($query, $value)
- {
- if ($value !== '') {
- $query->where('store_id', $value);
- }
- }
-
- public function searchUidAttr($query, $value)
- {
- if ($value) $query->where('uid', $value);
- }
-
- public function searchTradeTypeAttr($query, $value)
- {
- if ($value) $query->where('trade_type', $value);
- }
-
- public function searchNoTypeAttr($query, $value)
- {
- if ($value) $query->where('type', '<>', $value);
- }
-
- public function searchStaffIdAttr($query, $value)
- {
- if ($value) {
- if ($value == -1) {
- $query->where('staff_id', '>', 0);
- } else {
- $query->where('staff_id', $value);
- }
- }
- }
-
- public function searchOrderIdAttr($query, $value)
- {
- if ($value !== '') {
- $query->where('order_id', 'LIKE', "%$value%");
- }
- }
-
- public function searchLinkIdAttr($query, $value)
- {
- if ($value !== '') $query->where('link_id', $value);
- }
-
- public function searchPmAttr($query, $value)
- {
- if ($value !== '') $query->where('pm', $value);
- }
-
- public function searchTypeAttr($query, $value)
- {
- if ($value) {
- if (is_array($value)) {
- $query->where('type', 'in', $value);
- } else {
- $query->where('type', $value);
- }
- }
- }
-
- public function searchPayTypeAttr($query, $value)
- {
- if ($value !== '') $query->where('pay_type', $value);
- }
-
- public function searchIsDelAttr($query, $value)
- {
- if ($value !== '') $query->where('is_del', $value);
- }
- }
|