From a7d28f948e320d54a47a693908ad1557dadb85e5 Mon Sep 17 00:00:00 2001 From: weiz <736250432@qq.com> Date: Sat, 25 May 2024 20:41:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E7=8E=B0=E5=AE=A1=E6=A0=B8=E9=80=9A?= =?UTF-8?q?=E7=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/logic/withdraw/MerchantWithdrawLogic.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/admin/logic/withdraw/MerchantWithdrawLogic.php b/app/admin/logic/withdraw/MerchantWithdrawLogic.php index f01a5df..dd74056 100644 --- a/app/admin/logic/withdraw/MerchantWithdrawLogic.php +++ b/app/admin/logic/withdraw/MerchantWithdrawLogic.php @@ -7,6 +7,7 @@ use app\common\model\merchant\Merchant; use app\common\model\supplier\Supplier; use app\common\model\withdraw\MerchantWithdraw; use app\common\logic\BaseLogic; +use app\common\service\JgPushService; use think\facade\Db; @@ -109,6 +110,11 @@ class MerchantWithdrawLogic extends BaseLogic ]); } } + $pid = !empty($data['mer_id']) ? $data['mer_id'] : $data['supplier_id']; + $apply_info = Db::name('user_auth_shop')->where('pid', $pid)->findOrEmpty(); + if (!empty($apply_info['jg_register_id'])) { + (new JgPushService())->sendMsg($apply_info['jg_register_id'], '您的提现申请请求' . ($params['status'] == 1 ? '已审核通过' : '审核未通过'), '/pages/quote/financialyDeatil'); + } Db::commit(); return true; } catch (\Exception $e) {