Commit 3ea7e31e by 杨树贤

优化逻辑

parent d87b5672
Showing with 4 additions and 3 deletions
...@@ -86,10 +86,11 @@ class SupplierApplyService ...@@ -86,10 +86,11 @@ class SupplierApplyService
'audit_uid' => request()->user->userId, 'audit_uid' => request()->user->userId,
]); ]);
$apply = SupplierApplyModel::where('id', $applyId)->first()->toArray(); $apply = SupplierApplyModel::where('id', $applyId)->first()->toArray();
if ($result) { if ($result ) {
if ($status == SupplierApplyModel::STATUS_PASS) {
$existAccount = SupplierAccountModel::where('supplier_code', $apply['supplier_code'])->exists(); $existAccount = SupplierAccountModel::where('supplier_code', $apply['supplier_code'])->exists();
//如果没有供应商账号,那么就要新增供应商账号 //如果没有供应商账号,那么就要新增供应商账号
if (!$existAccount) { if ($existAccount) {
SupplierAccountModel::where('supplier_code', $apply['supplier_code'])->update([ SupplierAccountModel::where('supplier_code', $apply['supplier_code'])->update([
'mobile' => $apply['mobile'], 'mobile' => $apply['mobile'],
'email' => $apply['email'], 'email' => $apply['email'],
...@@ -115,7 +116,7 @@ class SupplierApplyService ...@@ -115,7 +116,7 @@ class SupplierApplyService
'source' => 2, 'source' => 2,
]); ]);
} }
}
//无论是否通过,都要发短信通知 //无论是否通过,都要发短信通知
if ($status == SupplierApplyModel::STATUS_REJECT) { if ($status == SupplierApplyModel::STATUS_REJECT) {
$message = "${apply['contact_name']} 先生/女生您好,您的“云芯入驻申请”已收到,审核结果为:不通过,原因为:${auditReason},如对审核结果有疑问,可联系您在猎芯的专属渠道经理(周强),联系电话:13512343214,联系邮箱:qiang@ichunt.com"; $message = "${apply['contact_name']} 先生/女生您好,您的“云芯入驻申请”已收到,审核结果为:不通过,原因为:${auditReason},如对审核结果有疑问,可联系您在猎芯的专属渠道经理(周强),联系电话:13512343214,联系邮箱:qiang@ichunt.com";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment