Update RebateCurrentService.php

This commit is contained in:
邹景立 2021-03-16 17:16:50 +08:00
parent b5e0fe7101
commit daf96f80ab

View File

@ -144,8 +144,9 @@ class RebateCurrentService extends Service
// 批量发放配置奖励
foreach (self::PRIZES as $vo) {
if (method_exists($this, $vo['func'])) {
$this->app->log->notice("订单 {$orderNo} 发放 [{$vo['func']}] {$vo['name']}");
$this->app->log->notice("订单 {$orderNo} 开始发放 [{$vo['func']}] {$vo['name']}");
$this->{$vo['func']}();
$this->app->log->notice("订单 {$orderNo} 完成发放 [{$vo['func']}] {$vo['name']}");
}
}
}