Ver código fonte

feat(event): 启用Swoole事件监听器配置

- 启用自动收货功能监听器
- 启用未支付订单自动关闭监听器
- 启用自动解冻佣金监听器
- 启用未支付订单短信提醒监听器
- 启用短信发送结果同步监听器
- 启用Excel文件删除监听器
- 启用秒杀时间检测监听器
- 启用微唯宝发货监听器
- 启用微唯宝退货退款监听器
- 启用售后订单自动取消监听器
- 启用微信提现金币审核监听器
shichen 4 meses atrás
pai
commit
8ea2e7f229
1 arquivos alterados com 13 adições e 13 exclusões
  1. 13 13
      app/event.php

+ 13 - 13
app/event.php

@@ -14,19 +14,19 @@ return [
14 14
         'swoole.init' => [\crmeb\listens\InitSwooleLockListen::class],
15 15
         'swoole.workerStart' => [\app\webscoket\SwooleWorkerStart::class],
16 16
         'swoole.start' => env('INSTALLED', false) ? [
17
-//             \crmeb\listens\AuthTakeOrderListen::class,//自动收货
18
-//             \crmeb\listens\AutoCancelGroupOrderListen::class,//未支付订单 自动关闭订单(超过多少分钟)
19
-//             \crmeb\listens\AutoUnLockBrokerageListen::class,//自动解冻佣金
20
-//             \crmeb\listens\AutoSendPayOrderSmsListen::class,//查询10分钟内未支付的订单,发送短信提示用户
21
-//             \crmeb\listens\SyncSmsResultCodeListen::class,//查询短信发送记录后 api返回结果
22
-//             // \crmeb\listens\SyncBroadcastStatusListen::class,
23
-//             \crmeb\listens\ExcelFileDelListen::class,
24
-// //            \crmeb\listens\RefundOrderAgreeListen::class,//商户自动处理退款订单期限(天)
25
-//             \crmeb\listens\SeckillTImeCheckListen::class,//自动检测秒杀结束失败
26
-//             \crmeb\listens\GongListen::class,//微唯宝发货 每分钟执行1次
27
-//             \crmeb\listens\GongAfterListen::class,//微唯宝退货退款
28
-//             \app\listens\StoreRefundOrderListen::class,//售后订单超过72小时自动取消
29
-//             \app\listens\WechatExtractListen::class,//微信提现的定时审核 3分钟执行1次
17
+            \crmeb\listens\AuthTakeOrderListen::class,//自动收货
18
+            \crmeb\listens\AutoCancelGroupOrderListen::class,//未支付订单 自动关闭订单(超过多少分钟)
19
+            \crmeb\listens\AutoUnLockBrokerageListen::class,//自动解冻佣金
20
+            \crmeb\listens\AutoSendPayOrderSmsListen::class,//查询10分钟内未支付的订单,发送短信提示用户
21
+            \crmeb\listens\SyncSmsResultCodeListen::class,//查询短信发送记录后 api返回结果
22
+            // \crmeb\listens\SyncBroadcastStatusListen::class,
23
+            \crmeb\listens\ExcelFileDelListen::class,
24
+//            \crmeb\listens\RefundOrderAgreeListen::class,//商户自动处理退款订单期限(天)
25
+            \crmeb\listens\SeckillTImeCheckListen::class,//自动检测秒杀结束失败
26
+            \crmeb\listens\GongListen::class,//微唯宝发货 每分钟执行1次
27
+            \crmeb\listens\GongAfterListen::class,//微唯宝退货退款
28
+            \app\listens\StoreRefundOrderListen::class,//售后订单超过72小时自动取消
29
+            \app\listens\WechatExtractListen::class,//微信提现的定时审核 3分钟执行1次
30 30
         ] : [],
31 31
         'pay_success_user_recharge' => [\crmeb\listens\pay\UserRechargeSuccessListen::class],
32 32
         'pay_success_order' => [\crmeb\listens\pay\OrderPaySuccessListen::class],