hasMany(Product::class, 'mer_id', 'mer_id'); } public function showProduct() { return $this->hasMany(Product::class, 'mer_id', 'mer_id') ->where((new ProductDao())->productShow()) ->field('mer_id,product_id,store_name,image,price,is_show,status,is_gift_bag,is_good') ->order('sort desc'); } public function recommend() { return $this->hasMany(Product::class, 'mer_id', 'mer_id') ->where((new ProductDao())->productShow()) ->where('is_good', 1) ->field('mer_id,product_id,store_name,image,price,is_show,status,is_gift_bag,is_good,sales,create_time') ->order('is_good DESC,sort DESC,create_time DESC') ->limit(9); } public function coupon() { $time = date('Y-m-d H:i:s'); return $this->hasMany(StoreCouponUser::class, 'mer_id', 'mer_id')->where('start_time', '<', $time)->where('end_time', '>', $time) ->where('is_fail', 0)->where('status', 0)->order('coupon_price DESC') ->with(['product' => function ($query) { $query->field('coupon_id,product_id'); }, 'coupon' => function ($query) { $query->field('coupon_id,type'); }]); } public function merchantCategory() { return $this->hasOne(MerchantCategory::class, 'merchant_category_id', 'category_id'); } public function merchantType() { return $this->hasOne(MerchantType::class, 'mer_type_id', 'type_id'); } public function typeName() { return $this->merchantType()->bind(['type_name']); } public function getMerCommissionRateAttr() { return $this->commission_rate > 0 ? $this->commission_rate : bcmul($this->merchantCategory->commission_rate, 100, 4); } public function getOpenReceiptAttr() { return merchantConfig($this->mer_id, 'mer_open_receipt'); } public function admin() { return $this->hasOne(MerchantAdmin::class, 'mer_id', 'mer_id')->where('level', 0); } public function searchKeywordAttr($query, $value) { $query->whereLike('mer_name|mer_keyword', "%{$value}%"); } public function getFinancialAlipayAttr($value) { return $value ? json_decode($value) : $value; } public function getFinancialWechatAttr($value) { return $value ? json_decode($value) : $value; } public function getFinancialBankAttr($value) { return $value ? json_decode($value) : $value; } public function getMerCertificateAttr() { return merchantConfig($this->mer_id, 'mer_certificate'); } public function getIssetCertificateAttr() { return count(merchantConfig($this->mer_id, 'mer_certificate') ?: []) > 0; } }