Commit a51de744 by 杨树贤

fix bug

parent 8682c4ac
......@@ -7,6 +7,7 @@ use App\Models\UserExchange;
use Common\Model\RedisModel;
use Hhxsv5\LaravelS\Swoole\Task\Task;
use DB;
use Illuminate\Support\Facades\Log;
class ExchangesTask extends Task
{
......@@ -25,12 +26,14 @@ class ExchangesTask extends Task
//验证这个订单是否充值,防止重复提现
$Redis = new RedisModel();
$Cache = $Redis->hsetnx('ic_user_exchanges' , $this->data['id'].'_'.$this->data['user_id'] , 1);
Log::error('进来了');
Log::error($Cache);
if(!$Cache)
return true;
try{
DB::beginTransaction();
Log::error('事务');
//先修改提现记录状态
$UserExchangModel = new UserExchange();
$Exchang = [
......
......@@ -80,11 +80,16 @@ class UserExchange extends Model
if ($data['status'] == 1) {
$exchange['amount'] = $exchangedAmount;
if ($exchangedAmount > 100) {
Log::Error('出现大于200的兑换申请!');
Log::Error('出现大于100的兑换申请!');
return false;
}
$data['id'] = $id;
$task = new ExchangesTask($data, $exchange, $data['audit_id']);
$result = Task::deliver($task);
if (!$result) {
Log::error('后台审核任务失败');
}
} elseif ($data['status'] == -1) {
//如果是拒绝审核,那就是我直接操作数据库就完事了
$result = DB::table('user_exchanges')->where('id', $id)
......
2310
\ No newline at end of file
3994
\ No newline at end of file
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