Commit 0e76f384 authored by liuzeheng's avatar liuzeheng

我的客户列表导出

parent ce5a6042
...@@ -1481,6 +1481,11 @@ public class CustomerServiceImpl extends AbstractService<CustomerMapper, Custome ...@@ -1481,6 +1481,11 @@ public class CustomerServiceImpl extends AbstractService<CustomerMapper, Custome
*/ */
@Override @Override
public List<CustomerDO> getWaitToConfirmCustomerExcelVoListReq(CustomerExportReqDTO reqVO){ 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) ; return customerMapper.getWaitToConfirmCustomerExcelVoListReq(reqVO) ;
} }
@Override @Override
......
...@@ -92,11 +92,6 @@ public class CustomerExcelExportListener { ...@@ -92,11 +92,6 @@ public class CustomerExcelExportListener {
public void customerWaitConfirmExcelExportPushEvent(CustomerWaitConfirmExcelExportPushEvent event) { public void customerWaitConfirmExcelExportPushEvent(CustomerWaitConfirmExcelExportPushEvent event) {
CustomerExportReqDTO exportReqVO = JSONObject.parseObject(event.getRequestParams(), CustomerExportReqDTO.class); 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); List<CustomerDO> list = customerService.getWaitToConfirmCustomerExcelVoListReq(exportReqVO);
makeExcelUpload(event, list); makeExcelUpload(event, list);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment