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
7c5e2b8a
Commit
7c5e2b8a
authored
Jul 16, 2025
by
tianyiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor(core): 修改bug
parent
07e98c1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
7 deletions
+17
-7
ComprehensiveStatisticalAnalysisServiceImpl.java
...ice/impl/ComprehensiveStatisticalAnalysisServiceImpl.java
+17
-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 @
7c5e2b8a
...
@@ -45,7 +45,6 @@ import org.elasticsearch.client.core.CountRequest;
...
@@ -45,7 +45,6 @@ import org.elasticsearch.client.core.CountRequest;
import
org.elasticsearch.client.core.CountResponse
;
import
org.elasticsearch.client.core.CountResponse
;
import
org.elasticsearch.index.query.*
;
import
org.elasticsearch.index.query.*
;
import
org.elasticsearch.search.SearchHit
;
import
org.elasticsearch.search.SearchHit
;
import
org.elasticsearch.search.aggregations.Aggregation
;
import
org.elasticsearch.search.aggregations.AggregationBuilders
;
import
org.elasticsearch.search.aggregations.AggregationBuilders
;
import
org.elasticsearch.search.aggregations.bucket.nested.ParsedNested
;
import
org.elasticsearch.search.aggregations.bucket.nested.ParsedNested
;
import
org.elasticsearch.search.aggregations.bucket.terms.Terms
;
import
org.elasticsearch.search.aggregations.bucket.terms.Terms
;
...
@@ -2652,6 +2651,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
...
@@ -2652,6 +2651,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
private
void
getTypeCount
(
String
businessType
,
Map
<
String
,
Object
>
tabTotalMap
,
String
orgCode
,
List
<
Map
<
String
,
Object
>>
data
)
{
private
void
getTypeCount
(
String
businessType
,
Map
<
String
,
Object
>
tabTotalMap
,
String
orgCode
,
List
<
Map
<
String
,
Object
>>
data
)
{
BoolQueryBuilder
equipBoolMust
=
QueryBuilders
.
boolQuery
();
BoolQueryBuilder
equipBoolMust
=
QueryBuilders
.
boolQuery
();
equipBoolMust
.
must
(
QueryBuilders
.
prefixQuery
(
"ORG_BRANCH_CODE"
,
orgCode
));
equipBoolMust
.
must
(
QueryBuilders
.
prefixQuery
(
"ORG_BRANCH_CODE"
,
orgCode
));
equipBoolMust
.
mustNot
(
QueryBuilders
.
termsQuery
(
"STATUS"
,
Arrays
.
asList
(
"草稿"
,
"已拒领"
,
"待认领"
)));
BoolQueryBuilder
companyBoolMust
=
QueryBuilders
.
boolQuery
();
BoolQueryBuilder
companyBoolMust
=
QueryBuilders
.
boolQuery
();
companyBoolMust
.
must
(
QueryBuilders
.
prefixQuery
(
"superviseOrgCode"
,
orgCode
));
companyBoolMust
.
must
(
QueryBuilders
.
prefixQuery
(
"superviseOrgCode"
,
orgCode
));
BoolQueryBuilder
personBoolMust
=
QueryBuilders
.
boolQuery
();
BoolQueryBuilder
personBoolMust
=
QueryBuilders
.
boolQuery
();
...
@@ -2803,21 +2803,26 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
...
@@ -2803,21 +2803,26 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
List
<
Map
<
String
,
Object
>>
staticCountByGroupMap
=
new
ArrayList
<>();
List
<
Map
<
String
,
Object
>>
staticCountByGroupMap
=
new
ArrayList
<>();
String
equipCode
=
null
;
if
(!
ObjectUtils
.
isEmpty
(
typeData
))
{
if
(!
ObjectUtils
.
isEmpty
(
typeData
))
{
String
id
=
null
;
String
id
=
null
;
JSONObject
jsonObject
=
new
JSONObject
();
if
(
typeData
.
size
()
==
1
)
{
if
(
typeData
.
size
()
==
1
)
{
groupField
=
"EQU_CATEGORY_CODE"
;
groupField
=
"EQU_CATEGORY_CODE"
;
id
=
JSONObject
.
parseObject
(
JSONObject
.
toJSONString
(
typeData
.
get
(
0
))).
getString
(
"key"
);
jsonObject
=
JSONObject
.
parseObject
(
JSONObject
.
toJSONString
(
typeData
.
get
(
0
))
);
}
else
if
(
typeData
.
size
()
==
2
)
{
}
else
if
(
typeData
.
size
()
==
2
)
{
groupField
=
"EQU_DEFINE_CODE"
;
groupField
=
"EQU_DEFINE_CODE"
;
id
=
JSONObject
.
parseObject
(
JSONObject
.
toJSONString
(
typeData
.
get
(
1
))).
getString
(
"key"
);
jsonObject
=
JSONObject
.
parseObject
(
JSONObject
.
toJSONString
(
typeData
.
get
(
1
))
);
}
}
id
=
jsonObject
.
getString
(
"key"
);
equipCode
=
jsonObject
.
getString
(
"code"
);
staticCountByGroupMap
=
tzsCustomFilterMapper
.
selectEquipmentCategoryByParentId
(
id
);
staticCountByGroupMap
=
tzsCustomFilterMapper
.
selectEquipmentCategoryByParentId
(
id
);
}
else
{
}
else
{
groupField
=
"EQU_LIST_CODE"
;
groupField
=
"EQU_LIST_CODE"
;
Map
<
String
,
List
<
Map
<
String
,
Object
>>>
resourceJson
=
JsonUtils
.
getResourceJson
(
equipCategory
);
Map
<
String
,
List
<
Map
<
String
,
Object
>>>
resourceJson
=
JsonUtils
.
getResourceJson
(
equipCategory
);
staticCountByGroupMap
=
resourceJson
.
get
(
EquipmentClassifityEnum
.
ZHTJFX
.
getCode
());
staticCountByGroupMap
=
resourceJson
.
get
(
EquipmentClassifityEnum
.
ZHTJFX
.
getCode
());
}
}
boolMust
.
mustNot
(
QueryBuilders
.
termsQuery
(
"STATUS"
,
Arrays
.
asList
(
"草稿"
,
"已拒领"
,
"待认领"
)));
Map
<
String
,
Long
>
staticCountByGroup
=
new
HashMap
<>();
Map
<
String
,
Long
>
staticCountByGroup
=
new
HashMap
<>();
getStatisticCountByGroup
(
request
,
builder
,
boolMust
,
groupField
,
staticCountByGroup
);
getStatisticCountByGroup
(
request
,
builder
,
boolMust
,
groupField
,
staticCountByGroup
);
...
@@ -2833,7 +2838,8 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
...
@@ -2833,7 +2838,8 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
map
.
put
(
"key"
,
categoryMap
.
get
(
"key"
));
map
.
put
(
"key"
,
categoryMap
.
get
(
"key"
));
map
.
put
(
"label"
,
categoryMap
.
get
(
"label"
));
map
.
put
(
"label"
,
categoryMap
.
get
(
"label"
));
map
.
put
(
"code"
,
categoryMap
.
get
(
"value"
));
map
.
put
(
"code"
,
categoryMap
.
get
(
"value"
));
map
.
put
(
"value"
,
staticCountByGroup
.
containsKey
(
code
)
?
staticCountByGroup
.
get
(
code
)
:
0
);
map
.
put
(
"fieldKey"
,
groupField
.
replace
(
"_CODE"
,
""
));
map
.
put
(
"value"
,
staticCountByGroup
.
containsKey
(
code
)
?
staticCountByGroup
.
get
(
code
)
:
0L
);
map
.
put
(
"img"
,
dpEquipPhotoPrefix
+
code
+
dpEquipPhotoSuffix
);
map
.
put
(
"img"
,
dpEquipPhotoPrefix
+
code
+
dpEquipPhotoSuffix
);
map
.
put
(
"measurementUnit"
,
"台套"
);
map
.
put
(
"measurementUnit"
,
"台套"
);
// 统计该分类下的数据完整性的分组数量 DATA_QUALITY_SCORE
// 统计该分类下的数据完整性的分组数量 DATA_QUALITY_SCORE
...
@@ -2851,6 +2857,9 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
...
@@ -2851,6 +2857,9 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
map
.
put
(
"NEXT_INSPECT_DATE"
,
nextInspectCountByGroup
);
map
.
put
(
"NEXT_INSPECT_DATE"
,
nextInspectCountByGroup
);
dataMapList
.
add
(
map
);
dataMapList
.
add
(
map
);
}
}
if
(!
ObjectUtils
.
isEmpty
(
equipCode
)){
tabTotalMap
.
put
(
equipCode
,
dataMapList
.
stream
().
mapToLong
(
map
->
(
Long
)
map
.
get
(
"value"
)).
sum
());
}
return
dataMapList
;
return
dataMapList
;
}
}
...
@@ -2920,9 +2929,9 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
...
@@ -2920,9 +2929,9 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
// 查询
// 查询
JSONObject
expiryDateStatus
=
this
.
getExpiryDateStatusGroupStatistics
(
boolQuery
);
JSONObject
expiryDateStatus
=
this
.
getExpiryDateStatusGroupStatistics
(
boolQuery
);
JSONObject
personType
=
this
.
getPersonTypeGroupStatistics
(
boolQuery
);
JSONObject
personType
=
this
.
getPersonTypeGroupStatistics
(
boolQuery
);
result
.
put
(
"tabTotalMap"
,
new
JSONObject
()
result
.
put
(
"tabTotalMap"
,
new
JSONObject
()
.
fluentPut
(
"expiryDateStatusTotal"
,
this
.
sumWithJSONObjectValues
(
expiryDateStatus
))
.
fluentPut
(
"expiryDateStatusTotal"
,
this
.
sumWithJSONObjectValues
(
expiryDateStatus
))
.
fluentPut
(
"personTypeTotal"
,
this
.
sumWithJSONObjectValues
(
personType
)));
.
fluentPut
(
"personTypeTotal"
,
this
.
sumWithJSONObjectValues
(
personType
)));
result
.
put
(
"datas"
,
new
JSONObject
()
result
.
put
(
"datas"
,
new
JSONObject
()
.
fluentPut
(
"expiryDateStatus"
,
expiryDateStatus
)
.
fluentPut
(
"expiryDateStatus"
,
expiryDateStatus
)
.
fluentPut
(
"personType"
,
personType
));
.
fluentPut
(
"personType"
,
personType
));
...
@@ -2931,6 +2940,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
...
@@ -2931,6 +2940,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
/**
/**
* 对JSONObject类型的所有values求和
* 对JSONObject类型的所有values求和
*
* @param jsonObject
* @param jsonObject
* @return
* @return
*/
*/
...
...
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