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
b99073a8
...
b99073a845d7452f6affa97dc27383d87d893b83
authored
2021-08-23 11:55:10 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
*
1 parent
fc3bcf49
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
app/Services/MusicianWithdrawService.php
app/Services/MusicianWithdrawService.php
View file @
b99073a
...
...
@@ -36,7 +36,7 @@ class MusicianWithdrawService extends Service
return
$receipt
;
});
return
Response
::
success
(
$receipt
);
return
Response
::
success
(
array_values
(
$receipt
)
);
}
/**
...
...
@@ -59,7 +59,7 @@ class MusicianWithdrawService extends Service
break
;
}
if
(
StakeholderIncomeByPayer
::
query
()
->
whereIn
(
'serial_no'
,
$this
->
request
->
input
(
'serial_no'
))
->
update
([
if
(
StakeholderIncomeByPayer
::
query
()
->
where
(
'sync_status'
,
1
)
->
where
In
(
'serial_no'
,
$this
->
request
->
input
(
'serial_no'
))
->
update
([
'withdraw_status'
=>
$withdraw_status
,
]))
{
return
Response
::
success
();
...
...
@@ -68,6 +68,4 @@ class MusicianWithdrawService extends Service
}
}
}
...
...
Please
register
or
sign in
to post a comment