Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
6622ae98
Commit
6622ae98
authored
Sep 04, 2019
by
zhuwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
265fbbad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
AmercementService.php
application/index/service/AmercementService.php
+5
-4
No files found.
application/index/service/AmercementService.php
View file @
6622ae98
...
...
@@ -400,7 +400,8 @@ class AmercementService
*/
public
function
getAmercementListPc
(
$params
,
$page_no
,
$page_size
)
{
$conditions
=
$this
->
buildConditions
(
$params
);
big_log
(
$params
);
$conditions
=
$this
->
buildConditions
(
$params
);
big_log
(
$conditions
);
$field
=
"id,status,type,money,submit_agent_id,agent_id,remarks,create_time,forfeit_penalty"
;
$result
=
$this
->
m_amercement
->
getAmercementList
(
$conditions
,
$field
,
$page_no
,
$page_size
);
...
...
@@ -496,17 +497,17 @@ class AmercementService
}
//状态
if
(
!
empty
(
$params
[
'status'
]))
{
if
(
isset
(
$params
[
'status'
])
&&
is_numeric
(
$params
[
"status"
]))
{
$conditions
[
"status"
]
=
$params
[
"status"
];
}
//项目
if
(
!
empty
(
$params
[
'type'
]))
{
if
(
isset
(
$params
[
'type'
])
&&
is_numeric
(
$params
[
"type"
]))
{
$conditions
[
"type"
]
=
$params
[
"type"
];
}
//罚款ID
if
(
!
empty
(
$params
[
'id'
]))
{
if
(
isset
(
$params
[
'id'
])
&&
is_numeric
(
$params
[
"id"
]))
{
$conditions
[
"id"
]
=
$params
[
"id"
];
}
...
...
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