123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- namespace app\common\model\store\order;
- use app\common\model\BaseModel;
- use app\common\model\store\product\ProductGroupUser;
- use app\common\model\store\service\StoreService;
- use app\common\model\store\shipping\Express;
- use app\common\model\system\merchant\Merchant;
- use app\common\model\user\User;
- use app\common\repositories\store\MerchantTakeRepository;
- class StoreOrder extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'order_id';
- }
- public static function tableName(): string
- {
- return 'store_order';
- }
- public function orderProduct()
- {
- return $this->hasMany(StoreOrderProduct::class, 'order_id', 'order_id');
- }
- public function refundProduct()
- {
- return $this->orderProduct()->where('refund_num', '>', 0);
- }
- public function merchant()
- {
- return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
- }
- public function user()
- {
- return $this->hasOne(User::class, 'uid', 'uid');
- }
- public function groupOrder()
- {
- return $this->hasOne(StoreGroupOrder::class, 'group_order_id', 'group_order_id');
- }
- public function verifyService()
- {
- return $this->hasOne(StoreService::class, 'service_id', 'verify_service_id');
- }
- public function getTakeAttr()
- {
- return app()->make(MerchantTakeRepository::class)->get($this->mer_id);
- }
- public function searchDataAttr($query, $value)
- {
- return getModelTime($query, $value);
- }
- public function presellOrder()
- {
- return $this->hasOne(PresellOrder::class, 'order_id', 'order_id');
- }
- public function finalOrder()
- {
- return $this->hasOne(PresellOrder::class,'order_id','order_id');
- }
- public function groupUser()
- {
- return $this->hasOne(ProductGroupUser::class,'order_id','order_id');
- }
- public function profitsharing()
- {
- return $this->hasMany(StoreOrderProfitsharing::class, 'order_id', 'order_id');
- }
- public function firstProfitsharing()
- {
- return $this->hasOne(StoreOrderProfitsharing::class, 'order_id', 'order_id')->where('type', 'order');
- }
- public function presellProfitsharing()
- {
- return $this->hasOne(StoreOrderProfitsharing::class, 'order_id', 'order_id')->where('type', 'presell');
- }
- public function searchMerIdAttr($query, $value)
- {
- return $query->where('mer_id', $value);
- }
- public function getRefundStatusAttr()
- {
- $day = (int)systemConfig('sys_refund_timer') ?: 15;
- return ($this->verify_time ? strtotime($this->verify_time) > strtotime('-' . $day . ' day') : true);
- }
- }
|