feat(PayNotifyLogic): 添加订单支付成功推送通知功能

This commit is contained in:
mkm 2024-07-31 11:44:39 +08:00
parent 27a71efb07
commit 64821a9a3b

View File

@ -282,6 +282,7 @@ class PayNotifyLogic extends BaseLogic
}
if($order['pay_type']==9){
Db::name('wechat_micropay')->where(['order_id'=>$order['order_id']])->delete();
PushService::push('store_merchant_' . $order['store_id'], $order['store_id'], ['type' => 'cash_register', 'msg' => '您有一笔订单已支付', 'data' => $extra]);
}
return true;
}