Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mancheng
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mancheng
Commits
aa49c999
Commit
aa49c999
authored
Dec 15, 2022
by
dong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix20221211
parent
ac6fac89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
apps/inves_manage/siku_view.py
+2
-2
No files found.
apps/inves_manage/siku_view.py
View file @
aa49c999
...
...
@@ -471,9 +471,9 @@ def search_project():
SikuProject
.
investor_name
.
like
(
'
%
{}
%
'
.
format
(
investor_name
))
if
investor_name
else
text
(
''
),
SikuProject
.
investor_district
.
like
(
'
%
{}
%
'
.
format
(
investor_district
))
if
investor_district
else
text
(
''
),
SikuProject
.
project_type
.
in_
(
project_type_list
)
if
project_type_list
else
SikuProject
.
project_type
.
like
(
'
%
{}
%
'
.
format
(
project_type
))
if
project_type
else
text
(
''
),
SikuProject
.
investment_volume
>
=
float
(
investment_volume_list
[
0
])
if
investment_volume_list
else
text
(
''
),
SikuProject
.
investment_volume
>
float
(
investment_volume_list
[
0
])
if
investment_volume_list
else
text
(
''
),
SikuProject
.
investment_volume
<=
float
(
investment_volume_list
[
1
])
if
investment_volume_list
else
text
(
''
),
SikuProject
.
investment_volume
>
=
float
(
investment_volume
[
0
])
if
investment_volume
and
not
investment_volume_list
else
text
(
''
),
SikuProject
.
investment_volume
>
float
(
investment_volume
[
0
])
if
investment_volume
and
not
investment_volume_list
else
text
(
''
),
SikuProject
.
investment_volume
<=
float
(
investment_volume
[
1
])
if
investment_volume
and
not
investment_volume_list
else
text
(
''
),
SikuProject
.
project_year
>=
project_year_list
[
0
]
if
project_year_list
else
text
(
''
),
SikuProject
.
project_year
<=
project_year_list
[
1
]
if
project_year_list
else
text
(
''
),
...
...
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