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
fbc177e4
Commit
fbc177e4
authored
Jul 31, 2024
by
刘林
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop_tzs_register_to_0715' into…
Merge remote-tracking branch 'origin/develop_tzs_register_to_0715' into develop_tzs_register_to_0715
parents
04535f92
e71f7c87
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
10 deletions
+13
-10
JGDPStatisticsServiceImpl.java
...statistcs/biz/service/impl/JGDPStatisticsServiceImpl.java
+6
-4
StCommonServiceImpl.java
...odule/statistcs/biz/service/impl/StCommonServiceImpl.java
+6
-5
ZLDPStatisticsServiceImpl.java
...statistcs/biz/service/impl/ZLDPStatisticsServiceImpl.java
+1
-1
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 @
fbc177e4
...
...
@@ -526,17 +526,19 @@ public class JGDPStatisticsServiceImpl {
return
countDto
;
}
private
CountDto
getYellowStatusCompany
(
DPFilterParamDto
dpFilterParamDto
)
{
private
CountDto
getRedStatusCompany
(
DPFilterParamDto
dpFilterParamDto
)
{
CountDto
countDto
=
new
CountDto
();
countDto
.
setLongValue
(
this
.
countCompanyForCertDateTimeOut
(
dpFilterParamDto
));
countDto
.
setLabel
(
"
资质临
期"
);
countDto
.
setLabel
(
"
许可超
期"
);
return
countDto
;
}
private
CountDto
get
Red
StatusCompany
(
DPFilterParamDto
dpFilterParamDto
)
{
private
CountDto
get
Yellow
StatusCompany
(
DPFilterParamDto
dpFilterParamDto
)
{
CountDto
countDto
=
new
CountDto
();
countDto
.
setLongValue
(
this
.
countCompanyForCertDateTemporary
(
dpFilterParamDto
));
countDto
.
setLabel
(
"
资质超
期"
);
countDto
.
setLabel
(
"
许可临
期"
);
return
countDto
;
}
...
...
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/StCommonServiceImpl.java
View file @
fbc177e4
...
...
@@ -240,21 +240,22 @@ public class StCommonServiceImpl {
result
.
put
(
DPMapStatisticsItemEnum
.
PRESSURE_PIPELINES
.
getCode
(),
length
);
}
public
CountDto
getYellowStatusCompany
(
DPFilterParamDto
dpFilterParamDto
)
{
public
CountDto
getRedStatusCompany
(
DPFilterParamDto
dpFilterParamDto
)
{
CountDto
countDto
=
new
CountDto
();
countDto
.
setLongValue
(
this
.
countCompanyForCertDateTimeOut
(
dpFilterParamDto
));
countDto
.
setLabel
(
"
资质临
期"
);
countDto
.
setLabel
(
"
许可超
期"
);
return
countDto
;
}
public
CountDto
get
Red
StatusCompany
(
DPFilterParamDto
dpFilterParamDto
)
{
public
CountDto
get
Yellow
StatusCompany
(
DPFilterParamDto
dpFilterParamDto
)
{
CountDto
countDto
=
new
CountDto
();
countDto
.
setLongValue
(
this
.
countCompanyForCertDateTemporary
(
dpFilterParamDto
));
countDto
.
setLabel
(
"
资质超
期"
);
countDto
.
setLabel
(
"
许可临
期"
);
return
countDto
;
}
private
long
countCompanyForCertDateTemporary
(
DPFilterParamDto
dpFilterParamDto
)
{
String
orgCode
=
this
.
getAndSetOrgCode
(
dpFilterParamDto
.
getCityCode
());
// 临期6个月
...
...
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/ZLDPStatisticsServiceImpl.java
View file @
fbc177e4
...
...
@@ -602,7 +602,7 @@ public class ZLDPStatisticsServiceImpl {
JSONObject
jsonObject11
=
new
JSONObject
();
jsonObject11
.
put
(
"key"
,
"zzcq"
);
jsonObject11
.
put
(
"value"
,
orgCode
==
null
?
0L
:
stCommonService
.
getRedStatusCompany
(
params
).
getLongValue
());
jsonObject11
.
put
(
"name"
,
"
资质
超期"
);
jsonObject11
.
put
(
"name"
,
"
许可
超期"
);
jsonArray
.
add
(
jsonObject0
);
jsonArray
.
add
(
jsonObject1
);
...
...
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