修改商户资质校验的错误

This commit is contained in:
root 2023-05-16 11:31:28 +08:00
parent b3e05077fc
commit 47f1ea3c32

View File

@ -246,7 +246,11 @@ class Merchant extends BaseModel
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)