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
1
Merge Requests
1
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
2c0e9895
Commit
2c0e9895
authored
Mar 12, 2025
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
朋友圈
parent
ce966504
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
QwMomentPlanServiceImpl.java
.../service/service/moment/impl/QwMomentPlanServiceImpl.java
+4
-4
qwMomentPlanAttendMapper.xml
...main/resources/mapper/moment/qwMomentPlanAttendMapper.xml
+1
-1
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/moment/impl/QwMomentPlanServiceImpl.java
View file @
2c0e9895
...
...
@@ -371,7 +371,7 @@ public class QwMomentPlanServiceImpl implements QwMomentPlanService {
if
(
CollectionUtils
.
isNotEmpty
(
list
))
{
for
(
QwMomentPlanAttendDTO
dto
:
list
)
{
this
.
sendTaskToClerk
(
dto
.
getClerkId
(),
plan
);
this
.
addPendingTask
(
plan
,
dto
.
getStoreId
(),
dto
.
getClerkId
())
;
this
.
addPendingTask
(
plan
,
dto
.
getStoreId
(),
dto
.
getClerkId
()
,
dto
.
getAttendId
()
)
;
}
}
}
else
{
...
...
@@ -420,7 +420,7 @@ public class QwMomentPlanServiceImpl implements QwMomentPlanService {
return
;
}
for
(
QwMomentPlanAttendDTO
dto
:
clerkList
)
{
this
.
addPendingTask
(
plan
,
dto
.
getStoreId
(),
dto
.
getClerkId
())
;
this
.
addPendingTask
(
plan
,
dto
.
getStoreId
(),
dto
.
getClerkId
()
,
dto
.
getAttendId
()
)
;
}
this
.
qwMomentPlanMapper
.
updateJobid
(
plan
.
getPlanId
(),
jobId
)
;
WxEnterpriseQwDTO
qwDTO
=
this
.
wxEnterpriseService
.
getQwInfo
(
plan
.
getWxEnterpriseId
());
...
...
@@ -515,9 +515,9 @@ public class QwMomentPlanServiceImpl implements QwMomentPlanService {
return
dto
;
}
private
void
addPendingTask
(
TabQwMomentPlan
plan
,
String
storeId
,
String
clerkId
)
{
private
void
addPendingTask
(
TabQwMomentPlan
plan
,
String
storeId
,
String
clerkId
,
Long
attendId
)
{
PendingTaskBO
bo
=
new
PendingTaskBO
();
bo
.
setRelationId
(
plan
.
getPlanId
()
+
""
);
bo
.
setRelationId
(
attendId
+
""
);
bo
.
setBusinessId
(
plan
.
getPlanId
()+
""
);
bo
.
setTaskType
(
PendingTaskTypeEnum
.
QYWX_MOMENT
.
getType
());
bo
.
setTitle
(
plan
.
getTitle
());
...
...
haoban-manage3-service/src/main/resources/mapper/moment/qwMomentPlanAttendMapper.xml
View file @
2c0e9895
...
...
@@ -95,7 +95,7 @@
<select
id=
"listClerk"
resultType=
"com.gic.haoban.manage.api.dto.moment.QwMomentPlanAttendDTO"
>
select clerk_id clerkId , clerk_code clerkCode , clerk_name clerkName , staff_id staffId , store_id storeId
select clerk_id clerkId , clerk_code clerkCode , clerk_name clerkName , staff_id staffId , store_id storeId
, attend_id attendId
from tab_haoban_qw_moment_plan_attend where plan_id = #{planId}
<if
test=
"null != statusFlag"
>
and status_flag = #{statusFlag}
...
...
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