feat(PayNotifyLogic): 修改支付通知逻辑,优化了订单推送

This commit is contained in:
mkm 2024-06-11 14:09:01 +08:00
parent d6bd3b9e97
commit 851349981a
2 changed files with 2 additions and 1 deletions

View File

@ -127,7 +127,7 @@ class PayNotifyLogic extends BaseLogic
// Db::name('order_middle')->insert(['c_order_id' => $order['id']]);
}
if (!empty($extra['payer']['openid']) && $order->pay_type == 7) {
Redis::send('push-delivery', ['order_sn' => $order['order_id'], 'openid' => $extra['payer']['openid']], 5);
Redis::send('push-delivery', ['order_id' => $order['order_id'], 'openid' => $extra['payer']['openid']], 5);
}
return true;
}

View File

@ -7,6 +7,7 @@ use Webman\RedisQueue\Consumer;
use support\Log;
/**小程序发货 */
class PushDeliverySend implements Consumer
{
// 要消费的队列名