|
@@ -19,6 +19,7 @@ import org.apache.poi.xssf.usermodel.XSSFRow;
|
|
import org.apache.poi.xssf.usermodel.XSSFSheet;
|
|
import org.apache.poi.xssf.usermodel.XSSFSheet;
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.util.ResourceUtils;
|
|
import org.springframework.util.ResourceUtils;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
@@ -30,7 +31,6 @@ import com.alibaba.excel.ExcelWriter;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
import com.google.common.collect.Lists;
|
|
import com.google.common.collect.Lists;
|
|
-import com.persagy.dmp.define.client.DigitalGraphDefineFacade;
|
|
|
|
import com.persagy.proxy.adm.constant.AdmCommonConstant;
|
|
import com.persagy.proxy.adm.constant.AdmCommonConstant;
|
|
import com.persagy.proxy.adm.model.AdmRelationObject;
|
|
import com.persagy.proxy.adm.model.AdmRelationObject;
|
|
import com.persagy.proxy.adm.request.AdmQueryCriteria;
|
|
import com.persagy.proxy.adm.request.AdmQueryCriteria;
|
|
@@ -56,6 +56,9 @@ public class RelationReportController {
|
|
|
|
|
|
public static final String EXPORT_SHEET_NAME = "关系维护";
|
|
public static final String EXPORT_SHEET_NAME = "关系维护";
|
|
|
|
|
|
|
|
+ @Value("${middleware.group.code}")
|
|
|
|
+ private String defaultCode;
|
|
|
|
+
|
|
@Autowired
|
|
@Autowired
|
|
private RelationObjectContext relationObjectContext;
|
|
private RelationObjectContext relationObjectContext;
|
|
|
|
|
|
@@ -269,6 +272,7 @@ public class RelationReportController {
|
|
ExcelWriter excelWriter = null;
|
|
ExcelWriter excelWriter = null;
|
|
try {
|
|
try {
|
|
String groupCode = request.getHeader(AdmCommonConstant.GROUP_CODE_HEADER);
|
|
String groupCode = request.getHeader(AdmCommonConstant.GROUP_CODE_HEADER);
|
|
|
|
+ groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
|
|
code = StrUtil.isBlank(code) ? "对象ID" : code;
|
|
code = StrUtil.isBlank(code) ? "对象ID" : code;
|
|
|
|
|
|
response.setContentType("application/vnd.ms-excel");
|
|
response.setContentType("application/vnd.ms-excel");
|
|
@@ -276,7 +280,8 @@ public class RelationReportController {
|
|
response.setCharacterEncoding(encode);
|
|
response.setCharacterEncoding(encode);
|
|
response.setHeader("Content-disposition", "attachment;filename=relation-template.xlsx");
|
|
response.setHeader("Content-disposition", "attachment;filename=relation-template.xlsx");
|
|
|
|
|
|
- List<AdmRelationObject> relationObjects = this.relationReportService.reportRelationObject(groupCode, projectId, relType, code, zoneType);
|
|
|
|
|
|
+ log.info("下载报表: groupCode[{}], projectId[{}], relType[{}], code[{}]", groupCode, projectId, relType, code);
|
|
|
|
+ List<AdmRelationObject> relationObjects = this.relationObjectContext.findRelationObject(groupCode, projectId, relType);
|
|
|
|
|
|
File templateFile = this.getTemplateFile("relation-template.xlsx");
|
|
File templateFile = this.getTemplateFile("relation-template.xlsx");
|
|
EasyExcel.write(response.getOutputStream()).withTemplate(templateFile).sheet(EXPORT_SHEET_NAME).needHead(false).doWrite(relationObjects);
|
|
EasyExcel.write(response.getOutputStream()).withTemplate(templateFile).sheet(EXPORT_SHEET_NAME).needHead(false).doWrite(relationObjects);
|