Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Cong.Zhao
/
musician-api.hikoon.com
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
2cc2ef17
...
2cc2ef17cd2337fdb6546feba7831a22db73b013
authored
2021-12-03 14:51:46 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
确认账单bug
1 parent
587b4f3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
app/Services/MusicianWithdrawService.php
app/Services/MusicianWithdrawService.php
View file @
2cc2ef1
...
...
@@ -85,7 +85,7 @@ class MusicianWithdrawService extends Service
{
if
(
RedisClient
::
instance
(
'bills'
)
->
set
(
CacheKeyTools
::
billsConfirm
(
$this
->
request
->
serial_no
),
true
,
'EX'
,
3
,
'NX'
))
{
$app
=
StakeholderIncomeSyncApp
::
query
()
->
where
([
'serial_no'
=>
$this
->
request
->
serial_no
,
'sync_status'
=>
1
,
'identifier'
=>
$this
->
identifier
->
identifier
,
'type'
=>
1
])
->
select
([
'id'
,
'subject_no'
,
'company_id'
,
'stakeholder_id'
,
'related_id'
])
->
first
();
$app
=
StakeholderIncomeSyncApp
::
query
()
->
where
([
'serial_no'
=>
$this
->
request
->
serial_no
,
'sync_status'
=>
1
,
'
withdraw_status'
=>
0
,
'
identifier'
=>
$this
->
identifier
->
identifier
,
'type'
=>
1
])
->
select
([
'id'
,
'subject_no'
,
'company_id'
,
'stakeholder_id'
,
'related_id'
])
->
first
();
DB
::
beginTransaction
();
...
...
Please
register
or
sign in
to post a comment