Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
303dd809
Commit
303dd809
authored
Jul 02, 2025
by
tianyiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
过滤高级筛选无效筛选项
parent
80618b45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
ComprehensiveStatisticalAnalysisServiceImpl.java
...ice/impl/ComprehensiveStatisticalAnalysisServiceImpl.java
+9
-7
No files found.
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/ComprehensiveStatisticalAnalysisServiceImpl.java
View file @
303dd809
...
...
@@ -730,7 +730,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
case
"notLike"
:
NestedQueryBuilder
notLikeQuery
=
QueryBuilders
.
nestedQuery
(
path
,
QueryBuilders
.
boolQuery
().
must
(
QueryBuilders
.
wildcardQuery
(
path
+
stringEnd
,
"*"
+
value
+
"*"
)),
QueryBuilders
.
boolQuery
().
must
(
QueryBuilders
.
wildcardQuery
(
path
+
stringEnd
,
"*"
+
value
+
"*"
)),
ScoreMode
.
Avg
);
if
(
isCustom
)
{
...
...
@@ -901,12 +901,14 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
// 如果只有技术参数或者只有参数范围,则舍弃对应的分组
group
.
forEach
(
item
->
{
JSONObject
itemObj
=
JSONObject
.
parseObject
(
JSONObject
.
toJSONString
(
item
));
if
(
itemObj
.
getString
(
"field"
).
equals
(
"techParam"
))
{
techParam
.
putAll
(
itemObj
);
}
else
if
(
itemObj
.
getString
(
"field"
).
equals
(
"paramRange"
))
{
paramRange
.
putAll
(
itemObj
);
}
else
{
resultGroup
.
add
(
itemObj
);
if
(
itemObj
.
containsKey
(
"field"
)
&&
itemObj
.
containsKey
(
"value"
))
{
if
(
itemObj
.
getString
(
"field"
).
equals
(
"techParam"
))
{
techParam
.
putAll
(
itemObj
);
}
else
if
(
itemObj
.
getString
(
"field"
).
equals
(
"paramRange"
))
{
paramRange
.
putAll
(
itemObj
);
}
else
{
resultGroup
.
add
(
itemObj
);
}
}
});
}
...
...
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