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
1f1143ee
Commit
1f1143ee
authored
Jan 03, 2023
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
小程序查询
parent
296c28b9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletions
+8
-1
GroupChatPlanOwnerLogServiceImpl.java
...e/service/chat/impl/GroupChatPlanOwnerLogServiceImpl.java
+4
-0
GroupChatPlanOwnerLogMapper.xml
...ain/resources/mapper/chat/GroupChatPlanOwnerLogMapper.xml
+3
-0
GroupChatPlanController.java
...manage/web/controller/haoban/GroupChatPlanController.java
+1
-1
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/chat/impl/GroupChatPlanOwnerLogServiceImpl.java
View file @
1f1143ee
...
...
@@ -191,6 +191,10 @@ public class GroupChatPlanOwnerLogServiceImpl implements GroupChatPlanOwnerLogSe
if
(
clerkType
==
1
)
{
storeId
=
clerk
.
getStoreId
();
clerkId
=
null
;
qdto
.
setClerkId
(
null
);
if
(
StringUtils
.
isNotBlank
(
qdto
.
getSearchClerkId
()))
{
qdto
.
setClerkId
(
qdto
.
getSearchClerkId
());
}
}
qdto
.
setStoreId
(
storeId
);
PageHelper
.
startPage
(
basePageInfo
);
...
...
haoban-manage3-service/src/main/resources/mapper/chat/GroupChatPlanOwnerLogMapper.xml
View file @
1f1143ee
...
...
@@ -167,6 +167,9 @@
<if
test=
"null != sendStatus"
>
and a.send_status = #{sendStatus}
</if>
<if
test=
"null != searchParams"
>
and b.name like #{searchParams}
</if>
group by b.plan_id
order by a.create_time desc , a.owner_log_id
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/haoban/GroupChatPlanController.java
View file @
1f1143ee
...
...
@@ -57,7 +57,7 @@ public class GroupChatPlanController {
qdto
.
setEnterpriseId
(
enterpriseId
);
qdto
.
setClerkId
(
clerkId
);
if
(
StringUtils
.
isNotBlank
(
searchParams
))
{
qdto
.
setSearchParams
(
searchParams
);
qdto
.
setSearchParams
(
"%"
+
searchParams
+
"%"
);
}
ServiceResponse
<
Page
<
ChatOwnerTotalDTO
>>
pageResp
=
this
.
groupChatPlanApiService
.
listOwnerLogPageForWxaTotal
(
qdto
,
basePageInfo
);
...
...
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