|
@@ -1,22 +1,28 @@
|
|
package com.gree.mall.manager.logic.policy;
|
|
package com.gree.mall.manager.logic.policy;
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
|
+import cn.hutool.core.date.DateUtil;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
+import com.gree.mall.manager.bean.ExcelData;
|
|
import com.gree.mall.manager.bean.admin.AdminUserCom;
|
|
import com.gree.mall.manager.bean.admin.AdminUserCom;
|
|
import com.gree.mall.manager.bean.policy.*;
|
|
import com.gree.mall.manager.bean.policy.*;
|
|
import com.gree.mall.manager.commonmapper.PolicyCMapper;
|
|
import com.gree.mall.manager.commonmapper.PolicyCMapper;
|
|
import com.gree.mall.manager.logic.common.CommonLogic;
|
|
import com.gree.mall.manager.logic.common.CommonLogic;
|
|
import com.gree.mall.manager.plus.entity.*;
|
|
import com.gree.mall.manager.plus.entity.*;
|
|
import com.gree.mall.manager.plus.service.*;
|
|
import com.gree.mall.manager.plus.service.*;
|
|
|
|
+import com.gree.mall.manager.utils.email.EmailUtilsNew;
|
|
|
|
+import com.gree.mall.manager.utils.excel.ExcelUtils;
|
|
import com.gree.mall.manager.zfire.bean.ZfireParamBean;
|
|
import com.gree.mall.manager.zfire.bean.ZfireParamBean;
|
|
import com.gree.mall.manager.zfire.util.FieldUtils;
|
|
import com.gree.mall.manager.zfire.util.FieldUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
|
-import java.util.List;
|
|
|
|
|
|
+import java.io.File;
|
|
|
|
+import java.io.IOException;
|
|
|
|
+import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
@Service
|
|
@Service
|
|
@@ -25,6 +31,9 @@ public class AgreementLogic {
|
|
@Autowired
|
|
@Autowired
|
|
PolicyCMapper policyCMapper;
|
|
PolicyCMapper policyCMapper;
|
|
|
|
|
|
|
|
+ @Value("${spring.profiles.active}")
|
|
|
|
+ private String active;
|
|
|
|
+
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
CommonLogic commonLogic;
|
|
CommonLogic commonLogic;
|
|
@@ -47,6 +56,9 @@ public class AgreementLogic {
|
|
@Autowired
|
|
@Autowired
|
|
MailboxReceiveService mailboxReceiveService;
|
|
MailboxReceiveService mailboxReceiveService;
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ MailboxSendRecordPolicyService mailboxSendRecordPolicyService;
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
public IPage<AgreementVo> list(Page page, ZfireParamBean zfireParam) {
|
|
public IPage<AgreementVo> list(Page page, ZfireParamBean zfireParam) {
|
|
@@ -189,4 +201,161 @@ public class AgreementLogic {
|
|
IPage<MailboxSendRecordPolicyVo> policyVoIPage = policyCMapper.listPolicy(page, zfireParam,adminCompanyIds);
|
|
IPage<MailboxSendRecordPolicyVo> policyVoIPage = policyCMapper.listPolicy(page, zfireParam,adminCompanyIds);
|
|
return policyVoIPage;
|
|
return policyVoIPage;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public void sendEmail(String sendBatch) throws IOException {
|
|
|
|
+ MailboxSendRecord mailboxSendRecord = mailboxSendRecordService.getById(sendBatch);
|
|
|
|
+ List<MailboxSendRecordPolicy> mailboxSendRecordPolicies = mailboxSendRecordPolicyService.lambdaQuery().eq(MailboxSendRecordPolicy::getSendBatch, sendBatch).list();
|
|
|
|
+
|
|
|
|
+ Mailbox mailbox = mailboxService.getById("1");
|
|
|
|
+
|
|
|
|
+ List<MailboxReceive> mailboxReceives = mailboxReceiveService.lambdaQuery().eq(MailboxReceive::getMailboxId, "1").list();
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if (mailboxSendRecord.getPolicyType().equals("AC")) {
|
|
|
|
+
|
|
|
|
+ //发邮件
|
|
|
|
+ try {
|
|
|
|
+ this.sendEmailFile(mailboxSendRecordPolicies, mailboxSendRecord, mailbox);
|
|
|
|
+ mailboxSendRecord.setSendStatus("OK");
|
|
|
|
+ mailboxSendRecord.updateById();
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ mailboxSendRecord.setSendStatus("NO");
|
|
|
|
+ mailboxSendRecord.updateById();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (mailboxSendRecord.getPolicyType().equals("EM")) {
|
|
|
|
+
|
|
|
|
+ //发邮件
|
|
|
|
+ try {
|
|
|
|
+ this.sendEmailFileEm(mailboxSendRecordPolicies, mailboxSendRecord, mailbox);
|
|
|
|
+ mailboxSendRecord.setSendStatus("OK");
|
|
|
|
+ mailboxSendRecord.updateById();
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ mailboxSendRecord.setSendStatus("NO");
|
|
|
|
+ mailboxSendRecord.updateById();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+/* if (mailboxSendRecord.getPolicyType().equals("IN")) {
|
|
|
|
+
|
|
|
|
+ //发邮件
|
|
|
|
+ try {
|
|
|
|
+ this.sendEmailFileIn(mailboxSendRecordPolicies, mailboxSendRecord, mailbox);
|
|
|
|
+ mailboxSendRecord.setSendStatus("OK");
|
|
|
|
+ mailboxSendRecord.updateById();
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ mailboxSendRecord.setSendStatus("NO");
|
|
|
|
+ mailboxSendRecord.updateById();
|
|
|
|
+ }
|
|
|
|
+ }*/
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void sendEmailFileEm(List<MailboxSendRecordPolicy> mailboxSendRecordPolicies, MailboxSendRecord mailboxSendRecord, Mailbox mailbox) throws IOException {
|
|
|
|
+
|
|
|
|
+ String[] titles = new String[]{"序号","网点编号","网点名称","保险类型","被保险人姓名","被保险人证件类型","被保险人证件号码"};
|
|
|
|
+ List<List<Object>> rows = new ArrayList<>();
|
|
|
|
+ for(int i = 0;i < mailboxSendRecordPolicies.size();i++){
|
|
|
|
+ MailboxSendRecordPolicy record = mailboxSendRecordPolicies.get(i);
|
|
|
|
+ List<Object> row = new ArrayList<>();
|
|
|
|
+ row.add(i+1);
|
|
|
|
+ row.add(mailbox.getSendName());
|
|
|
|
+ row.add(record.getPolicyNumber());
|
|
|
|
+ row.add(record.getWebsitId());
|
|
|
|
+ row.add(record.getWebsitName());
|
|
|
|
+ row.add("新增");
|
|
|
|
+ row.add(record.getPolicyName());
|
|
|
|
+ row.add("居民身份证");
|
|
|
|
+ row.add(record.getPolicyIdcard());
|
|
|
|
+ rows.add(row);
|
|
|
|
+ }
|
|
|
|
+ // 获取资源文件存放路径,用于临时存放生成的excel文件
|
|
|
|
+ String path = "/tmp";
|
|
|
|
+ if(active.equals("dev")) {
|
|
|
|
+ path = Objects.requireNonNull(this.getClass().getClassLoader().getResource("")).getPath();
|
|
|
|
+ }
|
|
|
|
+ // 文件名:采用UUID,防止多线程同时生成导致的文件重名
|
|
|
|
+ String filePath = String.format("%s-%s.xlsx",path,mailboxSendRecord.getSendBatch()+"-意外险");
|
|
|
|
+ ExcelData excelData = new ExcelData();
|
|
|
|
+ excelData.setTitles(Arrays.asList(titles));
|
|
|
|
+ ExcelUtils.createExcel(filePath,excelData);
|
|
|
|
+ File excel = new File(filePath);
|
|
|
|
+
|
|
|
|
+ //发送邮箱
|
|
|
|
+ EmailUtilsNew emailUtilsNew = new EmailUtilsNew(mailboxSendRecord.getSendMailbox(), mailbox.getSendPassword());
|
|
|
|
+
|
|
|
|
+ //分发邮件
|
|
|
|
+
|
|
|
|
+ for (String s : mailboxSendRecord.getReceiveMailbox().split(",|,")) {
|
|
|
|
+ emailUtilsNew.send(s,mailbox.getSendPassword(),"意外险-"+mailboxSendRecord.getSendBatch()+"-"+mailbox.getSendName(),"你好,以下是"+ DateUtil.format(new Date(),"yyyy-MM-dd")
|
|
|
|
+ +mailbox.getSendName()+"保险人员名单详情见附件",filePath);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ //删除该文件
|
|
|
|
+ excel.delete();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 发送买保险名单的邮件
|
|
|
|
+ * @param mailboxSendRecordPolicies
|
|
|
|
+ * @param mailboxSendRecord
|
|
|
|
+ * @param mailbox
|
|
|
|
+ *
|
|
|
|
+ */
|
|
|
|
+ private void sendEmailFile(List<MailboxSendRecordPolicy> mailboxSendRecordPolicies,MailboxSendRecord mailboxSendRecord,Mailbox mailbox) throws IOException {
|
|
|
|
+
|
|
|
|
+ String[] titles = new String[]{"序号","投保人","保单号","网点编号","网点名称","保险类型","被保险人姓名","被保险人证件类型","被保险人证件号码"};
|
|
|
|
+ List<List<Object>> rows = new ArrayList<>();
|
|
|
|
+ for(int i = 0;i < mailboxSendRecordPolicies.size();i++){
|
|
|
|
+ MailboxSendRecordPolicy record = mailboxSendRecordPolicies.get(i);
|
|
|
|
+ List<Object> row = new ArrayList<>();
|
|
|
|
+ row.add(i+1);
|
|
|
|
+ row.add(mailbox.getSendName());
|
|
|
|
+ row.add(record.getPolicyNumber());
|
|
|
|
+ row.add(record.getWebsitId());
|
|
|
|
+ row.add(record.getWebsitName());
|
|
|
|
+ row.add("新增");
|
|
|
|
+ row.add(record.getPolicyName());
|
|
|
|
+ row.add("居民身份证");
|
|
|
|
+ row.add(record.getPolicyIdcard());
|
|
|
|
+ rows.add(row);
|
|
|
|
+ }
|
|
|
|
+ // 获取资源文件存放路径,用于临时存放生成的excel文件
|
|
|
|
+ String path = "/tmp";
|
|
|
|
+ if(active.equals("dev")) {
|
|
|
|
+ path = Objects.requireNonNull(this.getClass().getClassLoader().getResource("")).getPath();
|
|
|
|
+ }
|
|
|
|
+ // 文件名:采用UUID,防止多线程同时生成导致的文件重名
|
|
|
|
+ String filePath = String.format("%s-%s.xlsx",path,mailboxSendRecord.getSendBatch()+"-意外险");
|
|
|
|
+ ExcelData excelData = new ExcelData();
|
|
|
|
+ excelData.setTitles(Arrays.asList(titles));
|
|
|
|
+ ExcelUtils.createExcel(filePath,excelData);
|
|
|
|
+ File excel = new File(filePath);
|
|
|
|
+
|
|
|
|
+ //发送邮箱
|
|
|
|
+ EmailUtilsNew emailUtilsNew = new EmailUtilsNew(mailboxSendRecord.getSendMailbox(), mailbox.getSendPassword());
|
|
|
|
+
|
|
|
|
+ //分发邮件
|
|
|
|
+
|
|
|
|
+ for (String s : mailboxSendRecord.getReceiveMailbox().split(",|,")) {
|
|
|
|
+ emailUtilsNew.send(s,mailbox.getSendPassword(),"意外险-"+mailboxSendRecord.getSendBatch()+"-"+mailbox.getSendName(),"你好,以下是"+ DateUtil.format(new Date(),"yyyy-MM-dd")
|
|
|
|
+ +mailbox.getSendName()+"保险人员名单详情见附件",filePath);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ //删除该文件
|
|
|
|
+ excel.delete();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void del(String id) {
|
|
|
|
+ agreementService.removeById(id);
|
|
|
|
+ }
|
|
}
|
|
}
|