修改商户资质校验的错误
This commit is contained in:
parent
b3e05077fc
commit
47f1ea3c32
@ -246,7 +246,11 @@ class Merchant extends BaseModel
|
|||||||
|
|
||||||
public function getIssetCertificateAttr()
|
public function getIssetCertificateAttr()
|
||||||
{
|
{
|
||||||
return count(merchantConfig($this->mer_id, 'mer_certificate') ?: []) > 0;
|
$merchantCertificate = merchantConfig($this->mer_id, 'mer_certificate');
|
||||||
|
if (!is_array($merchantCertificate)) {
|
||||||
|
$merchantCertificate = empty($merchantCertificate) ? [] : explode(',', $merchantCertificate);
|
||||||
|
}
|
||||||
|
return count($merchantCertificate) > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function searchMerIdsAttr($query, $value)
|
public function searchMerIdsAttr($query, $value)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user