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
754de616
Commit
754de616
authored
Jan 13, 2022
by
fudahua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:仅看自己
parent
f078543c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
NoticeMessageTypeEnum.java
...om/gic/haoban/manage/api/enums/NoticeMessageTypeEnum.java
+6
-6
PendingTaskMapper.xml
...3-service/src/main/resources/mapper/PendingTaskMapper.xml
+1
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/enums/NoticeMessageTypeEnum.java
View file @
754de616
...
...
@@ -23,9 +23,9 @@ public enum NoticeMessageTypeEnum {
GROUP_TASK_INVALID
(
2006
,
"群发任务逾期失效通知"
,
NoticeMessageCategoryTypeEnum
.
TASK
.
getType
(),
"group_task_invalid"
,
"/pages/route/index"
,
"hbapp_marketing_task_list"
),
PERFORMANCE_TASK_CREATE
(
2007
,
"指标任务通知"
,
NoticeMessageCategoryTypeEnum
.
TASK
.
getType
(),
"performance_task_create"
,
"/pages/route/index?pageType="
,
"hbapp_task_kpi_detail"
),
EVALUATE_TASK_CREATE
(
2008
,
"不良评价通知"
,
NoticeMessageCategoryTypeEnum
.
TASK
.
getType
(),
"evaluate_task_create"
,
"/pages/route/index?pageType="
,
"hbapp_task_detail"
),
PERFORMANCE_TASK_CHANGE
(
200
7
,
"指标任务通知"
,
NoticeMessageCategoryTypeEnum
.
TASK
.
getType
(),
"performance_task_change"
,
"/pages/route/index?pageType="
,
"hbapp_task_kpi_detail"
),
PERFORMANCE_TASK_CHANGE
(
200
9
,
"指标任务通知"
,
NoticeMessageCategoryTypeEnum
.
TASK
.
getType
(),
"performance_task_change"
,
"/pages/route/index?pageType="
,
"hbapp_task_kpi_detail"
),
TASK_TRANS
(
20
07
,
"话务任务通知"
,
NoticeMessageCategoryTypeEnum
.
TASK
.
getType
(),
"task_trans"
,
"/pages/route/index?pageType="
,
"hbapp_task_list_new"
),
TASK_TRANS
(
20
10
,
"话务任务通知"
,
NoticeMessageCategoryTypeEnum
.
TASK
.
getType
(),
"task_trans"
,
"/pages/route/index?pageType="
,
"hbapp_task_list_new"
),
STORE_ACCOUNT
(
3001
,
"门店账号申请"
,
NoticeMessageCategoryTypeEnum
.
OTHER
.
getType
(),
"store_account"
,
"/pages/route/index?pageType="
,
"store_relate_store_record_list"
),
...
...
@@ -46,14 +46,14 @@ public enum NoticeMessageTypeEnum {
CUSTOMER_MOVE
(
30
0
2
,
"客户变动通知"
,
NoticeMessageCategoryTypeEnum
.
OTHER
.
getType
(),
"customer_move"
,
"/pages/route/index?pageType="
,
"hbapp_customer_list"
),
CUSTOMER_MOVED
(
30
02
,
"客户变动通知"
,
NoticeMessageCategoryTypeEnum
.
OTHER
.
getType
(),
"customer_moved"
,
"/pages/route/index?pageType="
,
"hbapp_customer_list"
),
CUSTOMER_UNBIND
(
30
20
,
"客户变动通知"
,
NoticeMessageCategoryTypeEnum
.
OTHER
.
getType
(),
"customer_unbind"
,
"/pages/route/index?pageType="
,
"hbapp_customer_list"
),
CUSTOMER_MOVE
(
30
5
2
,
"客户变动通知"
,
NoticeMessageCategoryTypeEnum
.
OTHER
.
getType
(),
"customer_move"
,
"/pages/route/index?pageType="
,
"hbapp_customer_list"
),
CUSTOMER_MOVED
(
30
53
,
"客户变动通知"
,
NoticeMessageCategoryTypeEnum
.
OTHER
.
getType
(),
"customer_moved"
,
"/pages/route/index?pageType="
,
"hbapp_customer_list"
),
CUSTOMER_UNBIND
(
30
54
,
"客户变动通知"
,
NoticeMessageCategoryTypeEnum
.
OTHER
.
getType
(),
"customer_unbind"
,
"/pages/route/index?pageType="
,
"hbapp_customer_list"
),
CUSTOMER_ORDER_CREATE
(
4001
,
"客户下单通知"
,
NoticeMessageCategoryTypeEnum
.
CUSTOMER
.
getType
(),
"customer_order_create"
,
"/pages/route/index?pageType="
,
"hbapp_customer_order_detail"
),
CUSTOMER_ORDER_REFUND
(
4002
,
"客户退单通知"
,
NoticeMessageCategoryTypeEnum
.
CUSTOMER
.
getType
(),
"customer_order_refund"
,
"/pages/route/index?pageType="
,
"hbapp_customer_order_detail"
),
CUSTOMER_ORDER_LOOK
(
4003
,
"客户浏览通知"
,
NoticeMessageCategoryTypeEnum
.
CUSTOMER
.
getType
(),
"customer_order_look"
,
"/pages/route/index?pageType="
,
"hbapp_customer_look_goods"
),
CUSTOMER_GET_COUPON
(
400
3
,
"客户领券通知"
,
NoticeMessageCategoryTypeEnum
.
CUSTOMER
.
getType
(),
"customer_get_coupon"
,
"/pages/route/index"
,
""
),;
CUSTOMER_GET_COUPON
(
400
4
,
"客户领券通知"
,
NoticeMessageCategoryTypeEnum
.
CUSTOMER
.
getType
(),
"customer_get_coupon"
,
"/pages/route/index"
,
""
),;
/**
* 消息类型
*/
...
...
haoban-manage3-service/src/main/resources/mapper/PendingTaskMapper.xml
View file @
754de616
...
...
@@ -278,6 +278,7 @@
where enterprise_id = #{enterpriseId}
and store_id =#{storeId}
and task_status_flag=0
and finish_flag =0
<if
test=
"clerkId != null"
>
and clerk_id = #{clerkId}
</if>
...
...
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