Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
bom_server
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
deb44092
authored
Mar 20, 2021
by
mushishixian
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修改价格排序为起订量排序
parent
d2b0b80d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
internal/logic/search.go
internal/logic/search.go
View file @
deb44092
...
...
@@ -89,12 +89,12 @@ func getSearchParams(index string, bomItem model.BomItem, sort int, flag bool) (
source
:=
es
.
NewSearchSource
()
.
Query
(
query
)
if
sort
==
1
{
source
.
Sort
(
"_score"
,
false
)
source
.
Sort
(
"
single_price
"
,
true
)
source
.
Sort
(
"
moq
"
,
true
)
}
//要去判断sort,sort=2是按照价格排序
if
sort
==
2
{
source
.
Sort
(
"_score"
,
false
)
source
.
Sort
(
"
single_price
"
,
true
)
source
.
Sort
(
"
moq
"
,
true
)
//sort=3是按照库存排序
}
else
if
sort
==
3
{
source
.
Sort
(
"_score"
,
false
)
...
...
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