Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
holmes
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
QA
holmes
Commits
4f4bcf41
Commit
4f4bcf41
authored
Feb 28, 2022
by
黎博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
线上工单为0时发送消息修改
parent
f841ba8a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
17 deletions
+26
-17
DingdingUtils.java
src/main/java/cn/qg/holmes/utils/DingdingUtils.java
+26
-17
No files found.
src/main/java/cn/qg/holmes/utils/DingdingUtils.java
View file @
4f4bcf41
...
@@ -317,8 +317,13 @@ public class DingdingUtils {
...
@@ -317,8 +317,13 @@ public class DingdingUtils {
public
static
String
buildDailyProdBugNotifyMsg
(
Iterable
<
Issue
>
issues
)
{
public
static
String
buildDailyProdBugNotifyMsg
(
Iterable
<
Issue
>
issues
)
{
String
title
=
"线上未解决工单统计"
;
String
title
=
"线上未解决工单统计"
;
String
content
=
"📣线上未解决工单统计:"
+
"\n\n"
;
String
content
=
"📣线上未解决工单统计:"
+
"\n\n"
;
int
count
=
0
;
List
<
Issue
>
issueList
=
new
ArrayList
<>()
;
for
(
Issue
issue:
issues
)
{
for
(
Issue
issue:
issues
)
{
issueList
.
add
(
issue
);
}
if
(
issueList
.
size
()
>
0
)
{
int
count
=
0
;
for
(
Issue
issue:
issueList
)
{
count
=
count
+
1
;
count
=
count
+
1
;
String
issueUrl
=
"http://jira2.quantgroup.cn/browse/"
+
issue
.
getKey
();
String
issueUrl
=
"http://jira2.quantgroup.cn/browse/"
+
issue
.
getKey
();
content
=
content
+
count
+
"、["
+
issue
.
getSummary
().
replace
(
"\""
,
""
)
+
"]("
+
issueUrl
+
")\n"
;
content
=
content
+
count
+
"、["
+
issue
.
getSummary
().
replace
(
"\""
,
""
)
+
"]("
+
issueUrl
+
")\n"
;
...
@@ -337,6 +342,10 @@ public class DingdingUtils {
...
@@ -337,6 +342,10 @@ public class DingdingUtils {
content
+=
"- 持续时间:"
+
duration
+
"小时\n\n"
;
content
+=
"- 持续时间:"
+
duration
+
"小时\n\n"
;
}
}
content
+=
"**截止当前,共有"
+
String
.
valueOf
(
count
)
+
"个工单未解决,请对应经办人尽快跟进解决**"
;
content
+=
"**截止当前,共有"
+
String
.
valueOf
(
count
)
+
"个工单未解决,请对应经办人尽快跟进解决**"
;
}
if
(
issueList
.
size
()
==
0
)
{
content
+=
"**截止当前,所有工单都已经解决完毕,产研小伙伴最给力了👍🏻**"
;
}
return
buildMarkdownMsg
(
title
,
content
,
true
);
return
buildMarkdownMsg
(
title
,
content
,
true
);
}
}
...
...
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