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
b576a7fa
Commit
b576a7fa
authored
Apr 16, 2024
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.A071自测bug
parent
f649b413
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
CommonMapper.xml
...-module-jg-api/src/main/resources/mapper/CommonMapper.xml
+2
-2
ReportAnalysisServiceImpl.java
...module/jg/biz/service/impl/ReportAnalysisServiceImpl.java
+7
-2
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/resources/mapper/CommonMapper.xml
View file @
b576a7fa
...
...
@@ -360,10 +360,10 @@
and n.notice_status != '6610'
and n.notice_status != '6615'
<if
test=
"param.beginDate != null"
>
and
n.notice_date >= #{param.beginDate}
and
date_ge(CAST(n.notice_date as date), #{param.beginDate})
</if>
<if
test=
"param.endDate != null"
>
and
n.notice_date
<![CDATA[ <= ]]>
#{param.endDate}
and
date_le(CAST(n.notice_date as date), #{param.endDate})
</if>
<if
test=
"param.receiveOrgCode != null"
>
and n.receive_company_org_code like concat(#{param.receiveOrgCode}, '%')
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/ReportAnalysisServiceImpl.java
View file @
b576a7fa
...
...
@@ -65,6 +65,11 @@ public class ReportAnalysisServiceImpl implements IReportAnalysisService {
private
String
rootOrgCode
;
/**
* 告知类已发起统计数据范围: 来源FlowStatusEnum: 待受理 + 已驳回 + 已完成
*/
private
List
<
String
>
noticeLaunchesStatusList
=
Arrays
.
asList
(
"6612"
,
"6614"
,
"6616"
);
/**
* 维保备案已发起统计数据范围
*/
private
List
<
String
>
mainLaunchesStatusList
=
Arrays
.
asList
(
"维保单位已撤回"
,
"维保单位已驳回"
,
"维保单位待受理"
,
"监管单位已驳回"
,
"监管单位待受理"
,
"已完成"
);
...
...
@@ -146,8 +151,8 @@ public class ReportAnalysisServiceImpl implements IReportAnalysisService {
vo
.
setEquCategoryName
(
getEquipCategoryNameByCode
(
c
.
getEquCategory
()));
vo
.
setEquDefineName
(
getEquipCategoryNameByCode
(
c
.
getEquDefine
()));
vo
.
setFinishedNumber
(
this
.
countDocumentNum
(
countDataBOList
,
FlowStatusEnum
.
TO_BE_FINISHED
.
getCode
(),
c
));
// 已发起
: 已完成 + 待受理
vo
.
setLaunchesNumber
(
this
.
countDocumentNum
(
countDataBOList
,
FlowStatusEnum
.
TO_BE_PROCESSED
.
getCode
(),
c
)
+
vo
.
getFinishedNumber
(
));
// 已发起
vo
.
setLaunchesNumber
(
this
.
countDocumentNum
(
countDataBOList
,
noticeLaunchesStatusList
,
c
));
return
vo
;
}).
collect
(
Collectors
.
toList
());
}
...
...
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