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
9819f9a2
Commit
9819f9a2
authored
Aug 16, 2024
by
麻笑宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
下钻接口修改搜索字段
parent
80891bd9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
JGDPStatisticsServiceImpl.java
...statistcs/biz/service/impl/JGDPStatisticsServiceImpl.java
+8
-8
JYJCDPStatisticsServiceImpl.java
...atistcs/biz/service/impl/JYJCDPStatisticsServiceImpl.java
+3
-3
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/JGDPStatisticsServiceImpl.java
View file @
9819f9a2
...
...
@@ -1572,9 +1572,9 @@ public class JGDPStatisticsServiceImpl {
}
Map
<
String
,
Object
>
itemResult
=
new
HashMap
<>();
itemResult
.
put
(
"xdata"
,
r
.
getRegionName
());
List
<
Long
>
ydata
=
this
.
countBizFinishedNumForDetail
(
filterParamDto
,
dpFilterParamForDetailDto
.
get
BusinessTyp
e
());
List
<
Long
>
ydata
=
this
.
countBizFinishedNumForDetail
(
filterParamDto
,
dpFilterParamForDetailDto
.
get
TreeValu
e
());
BigDecimal
finishedNum
=
BigDecimal
.
valueOf
(
ydata
.
stream
().
mapToLong
(
Long:
:
longValue
).
sum
());
List
<
Long
>
everyInFlow
=
countBizDataInFlowingForDetail
(
filterParamDto
,
dpFilterParamForDetailDto
.
get
BusinessTyp
e
());
List
<
Long
>
everyInFlow
=
countBizDataInFlowingForDetail
(
filterParamDto
,
dpFilterParamForDetailDto
.
get
TreeValu
e
());
BigDecimal
everyNum
=
BigDecimal
.
valueOf
(
everyInFlow
.
stream
().
mapToLong
(
Long:
:
longValue
).
sum
());
BigDecimal
all
=
everyNum
.
add
(
finishedNum
);
if
(
all
.
compareTo
(
BigDecimal
.
ZERO
)
>
0
)
{
...
...
@@ -1644,17 +1644,17 @@ public class JGDPStatisticsServiceImpl {
filterParamDto
.
setBeginDate
(
dpFilterParamForDetailDto
.
getTimeSearchOne
().
getBeginDate
());
filterParamDto
.
setEndDate
(
dpFilterParamForDetailDto
.
getTimeSearchOne
().
getEndDate
());
}
if
(
BusinessTypeEnum
.
AZGZ
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
BusinessTyp
e
())){
if
(
BusinessTypeEnum
.
AZGZ
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
TreeValu
e
())){
maps
=
commonMapper
.
countBizFinishedNumForDPListAZGZ
(
page
,
orgCode
,
filterParamDto
);
}
else
if
(
BusinessTypeEnum
.
JDJY
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
BusinessTyp
e
())){
}
else
if
(
BusinessTypeEnum
.
JDJY
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
TreeValu
e
())){
maps
=
commonMapper
.
countBizFinishedNumForDPListJDJY
(
page
,
orgCode
,
filterParamDto
);
}
else
if
(
BusinessTypeEnum
.
SYDJ
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
BusinessTyp
e
())){
}
else
if
(
BusinessTypeEnum
.
SYDJ
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
TreeValu
e
())){
maps
=
commonMapper
.
countBizFinishedNumForDPListSYDJ
(
page
,
orgCode
,
filterParamDto
);
}
else
if
(
BusinessTypeEnum
.
DQJY
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
BusinessTyp
e
())){
}
else
if
(
BusinessTypeEnum
.
DQJY
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
TreeValu
e
())){
maps
=
commonMapper
.
countBizFinishedNumForDPListDQJY
(
page
,
orgCode
,
filterParamDto
);
}
else
if
(
BusinessTypeEnum
.
BGDJ
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
BusinessTyp
e
())){
}
else
if
(
BusinessTypeEnum
.
BGDJ
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
TreeValu
e
())){
maps
=
commonMapper
.
countBizFinishedNumForDPListBGDJ
(
page
,
orgCode
,
filterParamDto
);
}
else
if
(
BusinessTypeEnum
.
ZXBX
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
BusinessTyp
e
())){
}
else
if
(
BusinessTypeEnum
.
ZXBX
.
getCode
().
equals
(
dpFilterParamForDetailDto
.
get
TreeValu
e
())){
maps
=
commonMapper
.
countBizFinishedNumForDPListZXBX
(
page
,
orgCode
,
filterParamDto
);
}
else
{
maps
=
commonMapper
.
countBizFinishedNumForDPList
(
page
,
orgCode
,
filterParamDto
);
...
...
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/JYJCDPStatisticsServiceImpl.java
View file @
9819f9a2
...
...
@@ -889,9 +889,9 @@ public class JYJCDPStatisticsServiceImpl {
}
Map
<
String
,
Object
>
itemResult
=
new
HashMap
<>();
itemResult
.
put
(
"xdata"
,
r
.
getRegionName
());
Long
ydata
=
this
.
countBizFinishedNumForDetail
(
filterParamDto
,
dpFilterParamForDetailDto
.
get
BusinessTyp
e
());
Long
ydata
=
this
.
countBizFinishedNumForDetail
(
filterParamDto
,
dpFilterParamForDetailDto
.
get
TreeValu
e
());
BigDecimal
finishedNum
=
BigDecimal
.
valueOf
(
ydata
);
Long
everyInFlow
=
this
.
countBizDataInFlowingForDetail
(
filterParamDto
,
dpFilterParamForDetailDto
.
get
BusinessTyp
e
());
Long
everyInFlow
=
this
.
countBizDataInFlowingForDetail
(
filterParamDto
,
dpFilterParamForDetailDto
.
get
TreeValu
e
());
BigDecimal
everyNum
=
BigDecimal
.
valueOf
(
everyInFlow
);
BigDecimal
all
=
everyNum
.
add
(
finishedNum
);
if
(
all
.
compareTo
(
BigDecimal
.
ZERO
)
>
0
)
{
...
...
@@ -967,7 +967,7 @@ public class JYJCDPStatisticsServiceImpl {
filterParamDto
.
setBeginDate
(
dpFilterParamForDetailDto
.
getTimeSearchOne
().
getBeginDate
());
filterParamDto
.
setEndDate
(
dpFilterParamForDetailDto
.
getTimeSearchOne
().
getEndDate
());
}
Page
<
Map
<
String
,
Object
>>
maps
=
inspectionApplicationMapper
.
getInspectDetailList
(
page
,
orgCode
,
filterParamDto
,
dpFilterParamForDetailDto
.
get
BusinessTyp
e
());
Page
<
Map
<
String
,
Object
>>
maps
=
inspectionApplicationMapper
.
getInspectDetailList
(
page
,
orgCode
,
filterParamDto
,
dpFilterParamForDetailDto
.
get
TreeValu
e
());
return
maps
;
}
...
...
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