Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
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
lanbaoming
jiedao-api-boot-master
Commits
0e76f384
Commit
0e76f384
authored
May 30, 2024
by
liuzeheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的客户列表导出
parent
ce5a6042
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
CustomerServiceImpl.java
...module/customer/service/customer/CustomerServiceImpl.java
+5
-0
CustomerExcelExportListener.java
...dao/module/sale/listener/CustomerExcelExportListener.java
+0
-5
No files found.
yudao-module-customer/yudao-module-customer-core/src/main/java/cn/iocoder/yudao/module/customer/service/customer/CustomerServiceImpl.java
View file @
0e76f384
...
...
@@ -1481,6 +1481,11 @@ public class CustomerServiceImpl extends AbstractService<CustomerMapper, Custome
*/
@Override
public
List
<
CustomerDO
>
getWaitToConfirmCustomerExcelVoListReq
(
CustomerExportReqDTO
reqVO
){
reqVO
.
setIsCustomerServiceConfirmed
(
false
)
;
reqVO
.
setIsInOpenSea
(
false
)
;
List
<
Long
>
setCustomerService
=
new
ArrayList
<>();
setCustomerService
.
add
(
WebFrameworkUtils
.
getLoginUserId
())
;
reqVO
.
setCustomerService
(
setCustomerService
)
;
return
customerMapper
.
getWaitToConfirmCustomerExcelVoListReq
(
reqVO
)
;
}
@Override
...
...
yudao-module-sale/yudao-module-sale-core/src/main/java/cn/iocoder/yudao/module/sale/listener/CustomerExcelExportListener.java
View file @
0e76f384
...
...
@@ -92,11 +92,6 @@ public class CustomerExcelExportListener {
public
void
customerWaitConfirmExcelExportPushEvent
(
CustomerWaitConfirmExcelExportPushEvent
event
)
{
CustomerExportReqDTO
exportReqVO
=
JSONObject
.
parseObject
(
event
.
getRequestParams
(),
CustomerExportReqDTO
.
class
);
exportReqVO
.
setIsCustomerServiceConfirmed
(
false
)
;
exportReqVO
.
setIsInOpenSea
(
false
)
;
List
<
Long
>
setCustomerService
=
new
ArrayList
<>();
setCustomerService
.
add
(
WebFrameworkUtils
.
getLoginUserId
())
;
exportReqVO
.
setCustomerService
(
setCustomerService
)
;
List
<
CustomerDO
>
list
=
customerService
.
getWaitToConfirmCustomerExcelVoListReq
(
exportReqVO
);
makeExcelUpload
(
event
,
list
);
...
...
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