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
43caf7a6
...
43caf7a67befb86c2558ce058f9d961c3bec0758
authored
2022-12-16 15:00:21 +0800
by
谭纯
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改歌曲文件分贝接口待办查询status=0的
1 parent
ead1e8ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
app/Services/PropertyTrackService.php
app/Services/PropertyTrackService.php
View file @
43caf7a
...
...
@@ -79,7 +79,8 @@ class PropertyTrackService extends Service
*/
public
function
pending
()
{
$count
=
PropertyTrack
::
query
()
->
where
([
'create_admin'
=>
$this
->
request
->
get
(
'identifier'
)
->
company_id
])
->
whereNull
(
'upload_time'
)
->
count
();
//$count = PropertyTrack::query()->where(['create_admin'=>$this->request->get('identifier')->company_id])->whereNull('upload_time')->count();
$count
=
PropertyTrack
::
query
()
->
where
([
'create_admin'
=>
$this
->
request
->
get
(
'identifier'
)
->
company_id
])
->
where
(
'status'
,
0
)
->
count
();
return
Response
::
success
([
'count'
=>
$count
]);
}
...
...
Please
register
or
sign in
to post a comment