Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
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
haoban3.0
haoban-manage3.0
Commits
832d0b42
Commit
832d0b42
authored
Dec 12, 2022
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完成代办
parent
0ad53210
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
PendingTaskTypeEnum.java
.../com/gic/haoban/manage/api/enums/PendingTaskTypeEnum.java
+1
-1
GroupChatPlanServiceImpl.java
...e/service/service/chat/impl/GroupChatPlanServiceImpl.java
+3
-1
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/enums/PendingTaskTypeEnum.java
View file @
832d0b42
...
...
@@ -10,7 +10,7 @@ public enum PendingTaskTypeEnum {
TEL_TASK
(
1
,
"话务任务"
,
"您收到了新的话务任务【{}】,赶紧去执行吧~"
),
GROUP_TASK
(
3
,
"客户群发"
,
"您收到了新的企微群发任务【{}】,赶紧到企业微信-消息-群发助手中执行吧~"
),
ACTIVITY
(
4
,
"活动"
,
"您报名的{}活动已经开始啦,快去转发赚佣金吧~"
),
GROUP_CHAT
(
5
,
"社群群发"
,
"您收到了新的
企微
群发任务【{}】,赶紧到企业微信-消息-群发助手中执行吧~"
),
GROUP_CHAT
(
5
,
"社群群发"
,
"您收到了新的
社群
群发任务【{}】,赶紧到企业微信-消息-群发助手中执行吧~"
),
;
private
int
type
;
private
String
name
;
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/chat/impl/GroupChatPlanServiceImpl.java
View file @
832d0b42
...
...
@@ -215,7 +215,7 @@ public class GroupChatPlanServiceImpl implements GroupChatPlanService {
task
.
setDescription
(
plan
.
getRemark
());
task
.
setStoreId
(
ownerDTO
.
getStoreId
());
task
.
setClerkId
(
ownerDTO
.
getClerkId
());
task
.
setEnterpriseId
(
task
.
getEnterpriseId
());
task
.
setEnterpriseId
(
ownerDTO
.
getEnterpriseId
());
task
.
setOverdueTime
(
ownerDTO
.
getExpireDate
());
this
.
pendingTaskService
.
addOrUpdatePendingTask
(
task
);
}
...
...
@@ -282,6 +282,8 @@ public class GroupChatPlanServiceImpl implements GroupChatPlanService {
}
this
.
groupChatPlanOwnerLogService
.
updateSendCount
(
ownerLog
.
getOwnerLogId
(),
sendCount
,
list
.
get
(
0
).
getSendTime
(),
failCount
);
// 完成代办
this
.
pendingTaskService
.
updateFinish
(
ownerLog
.
getOwnerLogId
()+
""
)
;
}
}
}
...
...
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