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
16d68e7e
...
16d68e7e0430108981ef72889e6ace5577d49a00
authored
2021-11-19 14:57:38 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
I
1 parent
60d081c2
Show 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 @
16d68e7
...
...
@@ -57,7 +57,7 @@ class MusicianWithdrawService extends Service
$app
=
StakeholderIncomeSyncApp
::
query
()
->
where
([
'serial_no'
=>
$this
->
request
->
serial_no
,
'sync_status'
=>
1
,
'withdraw_status'
=>
1
])
->
first
();
if
(
empty
(
$app
))
return
Response
::
error
(
ErrorCode
::
WITHDRAW_NO_RECORD
);
if
(
$receipt
=
Company
::
query
()
->
where
([
'
receipt_name
'
=>
$app
->
company_id
])
->
first
())
{
if
(
$receipt
=
Company
::
query
()
->
where
([
'
id
'
=>
$app
->
company_id
])
->
first
())
{
return
Response
::
success
([
'receipt_type'
=>
$receipt
->
receipt_type
,
...
...
Please
register
or
sign in
to post a comment