Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
ic_server_welfare
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a51de744
authored
Oct 08, 2019
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix bug
parent
8682c4ac
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
4 deletions
app/Http/Controllers/ExchangesTask.php
app/Models/UserExchange.php
storage/laravels.json
storage/laravels.pid
app/Http/Controllers/ExchangesTask.php
View file @
a51de744
...
...
@@ -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
=
[
...
...
app/Models/UserExchange.php
View file @
a51de744
...
...
@@ -80,11 +80,16 @@ class UserExchange extends Model
if
(
$data
[
'status'
]
==
1
)
{
$exchange
[
'amount'
]
=
$exchangedAmount
;
if
(
$exchangedAmount
>
100
)
{
Log
::
Error
(
'出现大于
2
00的兑换申请!'
);
Log
::
Error
(
'出现大于
1
00的兑换申请!'
);
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
)
...
...
storage/laravels.json
View file @
a51de744
This diff is collapsed.
Click to expand it.
storage/laravels.pid
View file @
a51de744
2310
\ No newline at end of file
3994
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment