Commit 456c0fe7 by 邓实川 Committed by chenzg

测试导入

parent 3c1ebcb7
......@@ -7,7 +7,6 @@
*/
package cn.timer.api.controller.crm;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
......@@ -369,9 +368,11 @@ public class CrmController {
if (oldData.getClientStatus() == 5)
return ResultUtil.error("请解封后继续编辑操作");
List<CrmClientContacts> crmClientContacts = crmClientData.getCrmClientContacts();
if (crmClientContacts != null) {
for (CrmClientContacts crmClientContact : crmClientContacts) {
crmClientContact.updateById();
}
}
List<CrmClientAssociate> oldAssociates = CrmClientAssociate.builder().build()
.selectList(new QueryWrapper<CrmClientAssociate>().lambda().eq(CrmClientAssociate::getCid, cid));
List<Integer> oldIdsList = oldAssociates.stream().map(CrmClientAssociate::getAssociateId)
......@@ -483,7 +484,8 @@ public class CrmController {
if (type == null || type == 0) { // 全部客户(去重)
List<CrmClientData> myClient = getMyCilent(empNum, orgCode, groupId, status, like);
List<CrmClientData> myAsso = getMyAssociateCilent(empNum, orgCode, groupId, status, like);
crmClientDatas = CheckUtil.distinct(myClient, myAsso, true);
crmClientDatas = CheckUtil.distinct(myClient, myAsso, true).stream()
.filter(CheckUtil.distinctByKey(CrmClientData::getId)).collect(Collectors.toList());
} else if (type == 1) // 我负责的客户
crmClientDatas = getMyCilent(empNum, orgCode, groupId, status, like);
else if (type == 2) // 我协作的客户
......@@ -930,7 +932,7 @@ public class CrmController {
for (Integer memberId : members) {
Map<String, Object> map = selectMap(orgCode, memberId, status, startCreateTime, endCreateTime);
if (memberId.equals(12414)) {
System.err.println("map++"+map);
System.err.println("map++" + map);
}
if ((Integer) map.get("num") > 0) {
list.add(map);
......@@ -1049,22 +1051,18 @@ public class CrmController {
Integer orgCode = getOrgCode(userBean);
String filePath = null;
String time = null;
try {
File savefile = new File(realPath);
// File savefile = new File("excel/");
if (!savefile.exists()) {
savefile.mkdirs();
}
String time = DateUtil.format(new Date(), "yyyyMMddHHmmssSSS");
time = DateUtil.format(new Date(), "yyyyMMddHHmmssSSS");
filePath = FileHelper.downLoadFromUrl(url, time + ".xls", realPath);
} catch (IOException e) {
e.printStackTrace();
}
System.err.println();
// 从文件中读取Excel为ExcelReader
ExcelReader reader;
// 从流中读取Excel为ExcelReader(比如从ClassPath中读取Excel文件)
reader = ExcelUtil.getReader(ResourceUtil.getStream(filePath));
reader = ExcelUtil.getReader(ResourceUtil.getStream("crm-excel/"+time+".xls"));
reader.addHeaderAlias("*客户名称(必填)", "clientName");
reader.addHeaderAlias("*所属分组(必填)", "belongGroupName");
reader.addHeaderAlias("行业", "industryName");
......
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