Merge pull request 'feat(PayNotifyLogic): 添加订单支付成功推送通知功能' (#69) from dev into rose

Reviewed-on: #69
This commit is contained in:
mkm 2024-07-31 11:45:06 +08:00
commit 14d1ca8c11

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;
}