Commit 1854e1dc by 叶明星

修改备注

parent febf2bef
...@@ -157,7 +157,7 @@ class UserExchangesController extends Controller ...@@ -157,7 +157,7 @@ class UserExchangesController extends Controller
if (!$Cahce) { if (!$Cahce) {
return $this->Export(ErrorCode(101, 1), '名额被抢光了'); return $this->Export(ErrorCode(101, 1), '名额被抢光了');
} }
$Cahce = json_decode($Cahce, true); // $Cahce = json_decode($Cahce, true);
//记录当前消费的名额,自动过期 //记录当前消费的名额,自动过期
$Redis->hset($Pre, $collert['user_id'], $collert['exchange_id']); $Redis->hset($Pre, $collert['user_id'], $collert['exchange_id']);
...@@ -199,7 +199,7 @@ class UserExchangesController extends Controller ...@@ -199,7 +199,7 @@ class UserExchangesController extends Controller
$Redis->hset('ic_user', $UserInfo['user_id'], json_encode($UserInfo)); $Redis->hset('ic_user', $UserInfo['user_id'], json_encode($UserInfo));
//金额小于20元时,推送一个异步任务(用来提现或者充值),延时10秒,防止主从同步不及时 //金额小于20元时,推送一个异步任务(用来提现或者充值),延时10秒,防止主从同步不及时
//同时还要是type=1(话费充值)的时候,才会去进行兑现,因为目前微信还不能够直接走兑现任务 //同时还要是type=1(话费充值)的时候,才会去进行兑现,因为微信需要好友助力
if ($data['amount'] < 20 && $data['type'] == 1) { if ($data['amount'] < 20 && $data['type'] == 1) {
$Task = new ExchangesTask($data, $ic_exchange_settings); $Task = new ExchangesTask($data, $ic_exchange_settings);
$Task->delay(10); $Task->delay(10);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment