|
@@ -1,10 +1,38 @@
|
|
package com.yh.saas.plugin.yiliangyiyun.service.impl;
|
|
package com.yh.saas.plugin.yiliangyiyun.service.impl;
|
|
|
|
|
|
|
|
+import com.aliyun.oss.OSSClient;
|
|
|
|
+import com.aliyun.oss.model.ObjectMetadata;
|
|
|
|
+import com.aliyun.oss.model.PutObjectRequest;
|
|
|
|
+import com.baomidou.mybatisplus.plugins.Page;
|
|
|
|
+import com.google.common.collect.Lists;
|
|
|
|
+import com.winsea.svc.base.base.util.DateUtils;
|
|
|
|
+import com.yh.saas.plugin.yiliangyiyun.entity.HyDriverCarInfo;
|
|
import com.yh.saas.plugin.yiliangyiyun.entity.HyOperLog;
|
|
import com.yh.saas.plugin.yiliangyiyun.entity.HyOperLog;
|
|
|
|
+import com.yh.saas.plugin.yiliangyiyun.entity.OrderInfo;
|
|
import com.yh.saas.plugin.yiliangyiyun.mapper.HyOperLogMapper;
|
|
import com.yh.saas.plugin.yiliangyiyun.mapper.HyOperLogMapper;
|
|
import com.yh.saas.plugin.yiliangyiyun.service.IHyOperLogService;
|
|
import com.yh.saas.plugin.yiliangyiyun.service.IHyOperLogService;
|
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
|
|
|
+import lombok.Getter;
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
|
+import org.apache.commons.collections.CollectionUtils;
|
|
|
|
+import org.apache.commons.httpclient.util.DateUtil;
|
|
|
|
+import org.apache.poi.hssf.usermodel.*;
|
|
|
|
+import org.apache.poi.hssf.util.HSSFColor;
|
|
|
|
+import org.apache.poi.ss.usermodel.IndexedColors;
|
|
|
|
+import org.apache.poi.ss.usermodel.Workbook;
|
|
|
|
+import org.apache.poi.ss.util.CellRangeAddress;
|
|
|
|
+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.web.multipart.MultipartFile;
|
|
|
|
+
|
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
|
+import java.io.ByteArrayOutputStream;
|
|
|
|
+import java.io.File;
|
|
|
|
+import java.io.IOException;
|
|
|
|
+import java.net.URLDecoder;
|
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
|
+import java.util.*;
|
|
|
|
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
@@ -15,6 +43,478 @@ import org.springframework.stereotype.Service;
|
|
* @since 2022-08-02
|
|
* @since 2022-08-02
|
|
*/
|
|
*/
|
|
@Service
|
|
@Service
|
|
|
|
+@Slf4j
|
|
public class HyOperLogServiceImpl extends ServiceImpl<HyOperLogMapper, HyOperLog> implements IHyOperLogService {
|
|
public class HyOperLogServiceImpl extends ServiceImpl<HyOperLogMapper, HyOperLog> implements IHyOperLogService {
|
|
|
|
|
|
|
|
+ @Value("${file-root-path}")
|
|
|
|
+ private String localPath;
|
|
|
|
+ @Getter
|
|
|
|
+ @Value("${oss.endpoint.internal:}")
|
|
|
|
+ private String baseUrl;
|
|
|
|
+ @Getter
|
|
|
|
+ @Value("${oss.bucket.name:}")
|
|
|
|
+ private String bucket;
|
|
|
|
+ @Autowired
|
|
|
|
+ private OSSClient ossClient;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 后台管理日志管理列表
|
|
|
|
+ *
|
|
|
|
+ * @param hyOperLog
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public Page<HyOperLog> selectOperLog(HyOperLog hyOperLog) {
|
|
|
|
+ Map<String, Object> pageView = new HashMap<>(9);
|
|
|
|
+ pageView.put("startRecord", (hyOperLog.getCurrentPage() - 1)
|
|
|
|
+ * hyOperLog.getPageSize());
|
|
|
|
+ //公司id
|
|
|
|
+ pageView.put("searchKeyWord", hyOperLog.getSearchKeyWord());
|
|
|
|
+ pageView.put("startDate", hyOperLog.getStartDate());
|
|
|
|
+ pageView.put("endDate", hyOperLog.getEndDate());
|
|
|
|
+ pageView.put("pageSize", hyOperLog.getPageSize());
|
|
|
|
+ pageView.put("currentPage", hyOperLog.getCurrentPage());
|
|
|
|
+ // 查询司机总数
|
|
|
|
+ Integer dataCount = baseMapper.getCountByCondition(pageView);
|
|
|
|
+ List<HyOperLog> dataList = baseMapper.getListByCondition(pageView);
|
|
|
|
+ Page<HyOperLog> page = new Page<>();
|
|
|
|
+ page.setRecords(dataList == null ? Lists.newArrayList() : dataList);
|
|
|
|
+ page.setTotal(dataCount == null ? 0 : dataCount);
|
|
|
|
+ page.setCurrent(hyOperLog.getCurrentPage());
|
|
|
|
+ page.setSize(hyOperLog.getPageSize());
|
|
|
|
+ return page;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 删除日志信息
|
|
|
|
+ *
|
|
|
|
+ * @param hyOperLog
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public void deleteOperLog(HyOperLog hyOperLog) {
|
|
|
|
+ //获取删除idlist
|
|
|
|
+ List<HyOperLog> hyOperLogs = hyOperLog.getHyOperLogList();
|
|
|
|
+ if (CollectionUtils.isNotEmpty(hyOperLogs)) {
|
|
|
|
+ for (HyOperLog hyOperLog1 : hyOperLogs){
|
|
|
|
+ this.deleteById(hyOperLog1.getId());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 后台管理日志导出
|
|
|
|
+ *
|
|
|
|
+ * @return
|
|
|
|
+ * @throws Exception
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public void export(HyOperLog hyOperLog, HttpServletResponse response) throws Exception {
|
|
|
|
+ // 1.Excel的头部信息
|
|
|
|
+ String headerTitle = "";
|
|
|
|
+
|
|
|
|
+ // 2.创建一个webbook 对应一个Excel文件
|
|
|
|
+ HSSFWorkbook wb = new HSSFWorkbook();
|
|
|
|
+
|
|
|
|
+ // 3.在webbook中添加一个sheet,对应Excel文件中的sheet
|
|
|
|
+ HSSFSheet sheet;
|
|
|
|
+
|
|
|
|
+ sheet = wb.createSheet("日志信息");
|
|
|
|
+ headerTitle = "日志信息";
|
|
|
|
+
|
|
|
|
+ // 4.设置打印参数
|
|
|
|
+ sheet.setMargin(HSSFSheet.TopMargin, (short) 1);// 页边距(上)
|
|
|
|
+ sheet.setMargin(HSSFSheet.BottomMargin, (short) 1);// 页边距(下)
|
|
|
|
+ sheet.setMargin(HSSFSheet.LeftMargin, (short) 1);// 页边距(左)
|
|
|
|
+ sheet.setMargin(HSSFSheet.RightMargin, (short) 1);// 页边距(右)
|
|
|
|
+
|
|
|
|
+ // 不显示网格
|
|
|
|
+ sheet.setDisplayGridlines(false);
|
|
|
|
+ // 设置水平居中
|
|
|
|
+ sheet.setHorizontallyCenter(true);
|
|
|
|
+
|
|
|
|
+ /**************** 数据行样式 start ****************/
|
|
|
|
+ HSSFFont fontTitle = wb.createFont();
|
|
|
|
+ fontTitle.setFontName("宋体");
|
|
|
|
+ fontTitle.setFontHeightInPoints((short) 14);
|
|
|
|
+ // 设置字体加粗
|
|
|
|
+ fontTitle.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
|
|
|
|
+
|
|
|
|
+ HSSFFont fontComp = wb.createFont();
|
|
|
|
+ fontComp.setFontName("宋体");
|
|
|
|
+ fontComp.setFontHeightInPoints((short) 16);
|
|
|
|
+ // 设置字体加粗
|
|
|
|
+ fontComp.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
|
|
|
|
+
|
|
|
|
+ HSSFFont fontDetail = wb.createFont();
|
|
|
|
+ fontDetail.setFontName("宋体");
|
|
|
|
+ fontDetail.setFontHeightInPoints((short) 12);
|
|
|
|
+
|
|
|
|
+ HSSFFont fontDetail1 = wb.createFont();
|
|
|
|
+ fontDetail1.setFontName("宋体");
|
|
|
|
+ fontDetail1.setFontHeightInPoints((short) 12);
|
|
|
|
+ fontDetail1.setColor(HSSFColor.RED.index);
|
|
|
|
+
|
|
|
|
+ // title
|
|
|
|
+ HSSFCellStyle styleTitle = wb.createCellStyle();
|
|
|
|
+ // 指定单元格居中对齐
|
|
|
|
+ styleTitle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
|
+ // 指定单元格垂直居中对齐
|
|
|
|
+ styleTitle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
+ // 指定单元格自动换行
|
|
|
|
+ styleTitle.setWrapText(true);
|
|
|
|
+ // 设置单元格字体
|
|
|
|
+ styleTitle.setFont(fontTitle);
|
|
|
|
+ // 右边框
|
|
|
|
+ styleTitle.setBorderRight(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 左边框
|
|
|
|
+ styleTitle.setBorderLeft(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 上边框
|
|
|
|
+ styleTitle.setBorderTop(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 下边框
|
|
|
|
+ styleTitle.setBorderBottom(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+
|
|
|
|
+ // title
|
|
|
|
+ HSSFCellStyle styleComp = wb.createCellStyle();
|
|
|
|
+ // 指定单元格居中对齐
|
|
|
|
+ styleComp.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
|
+ // 指定单元格垂直居中对齐
|
|
|
|
+ styleComp.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
+ // 指定单元格自动换行
|
|
|
|
+ styleComp.setWrapText(true);
|
|
|
|
+ // 设置单元格字体
|
|
|
|
+ styleComp.setFont(fontComp);
|
|
|
|
+ // 右边框
|
|
|
|
+ styleComp.setBorderRight(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 左边框
|
|
|
|
+ styleComp.setBorderLeft(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 上边框
|
|
|
|
+ styleComp.setBorderTop(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 下边框
|
|
|
|
+ styleComp.setBorderBottom(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+
|
|
|
|
+ HSSFCellStyle styleInfo = wb.createCellStyle();
|
|
|
|
+ // 指定单元格居中对齐
|
|
|
|
+ styleInfo.setAlignment(HSSFCellStyle.ALIGN_LEFT);
|
|
|
|
+ // 指定单元格垂直居中对齐
|
|
|
|
+ styleInfo.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
+ // 指定单元格自动换行
|
|
|
|
+ styleInfo.setWrapText(true);
|
|
|
|
+ // 设置单元格字体
|
|
|
|
+ styleInfo.setFont(fontDetail);
|
|
|
|
+ // 右边框
|
|
|
|
+ styleInfo.setBorderRight(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 左边框
|
|
|
|
+ styleInfo.setBorderLeft(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 上边框
|
|
|
|
+ styleInfo.setBorderTop(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+ // 下边框
|
|
|
|
+ styleInfo.setBorderBottom(HSSFCellStyle.BORDER_NONE);
|
|
|
|
+
|
|
|
|
+ HSSFCellStyle styleDetail = wb.createCellStyle();
|
|
|
|
+ // 指定单元格居中对齐
|
|
|
|
+ styleDetail.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
|
+ // 指定单元格垂直居中对齐
|
|
|
|
+ styleDetail.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
+ // 指定单元格自动换行
|
|
|
|
+ styleDetail.setWrapText(true);
|
|
|
|
+ // 设置单元格字体
|
|
|
|
+ styleDetail.setFont(fontDetail);
|
|
|
|
+ // 右边框
|
|
|
|
+ styleDetail.setBorderRight(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 左边框
|
|
|
|
+ styleDetail.setBorderLeft(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 上边框
|
|
|
|
+ styleDetail.setBorderTop(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 下styleDetailTitle
|
|
|
|
+ styleDetail.setBorderBottom(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+
|
|
|
|
+ HSSFCellStyle styleDetailYellow = wb.createCellStyle();
|
|
|
|
+ // 指定单元格居中对齐
|
|
|
|
+ styleDetailYellow.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
|
+ // 指定单元格垂直居中对齐
|
|
|
|
+ styleDetailYellow.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
+ // 指定单元格自动换行
|
|
|
|
+ styleDetailYellow.setWrapText(true);
|
|
|
|
+ // 设置单元格字体
|
|
|
|
+ styleDetailYellow.setFont(fontDetail);
|
|
|
|
+ // 右边框
|
|
|
|
+ styleDetailYellow.setBorderRight(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 左边框
|
|
|
|
+ styleDetailYellow.setBorderLeft(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 上边框
|
|
|
|
+ styleDetailYellow.setBorderTop(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 下styleDetailTitle
|
|
|
|
+ styleDetailYellow.setBorderBottom(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ styleDetailYellow.setFillForegroundColor(IndexedColors.YELLOW.getIndex());
|
|
|
|
+ styleDetailYellow.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
|
|
|
|
+
|
|
|
|
+ HSSFCellStyle styleDetailLeft = wb.createCellStyle();
|
|
|
|
+ // 指定单元格居中对齐
|
|
|
|
+ styleDetailLeft.setAlignment(HSSFCellStyle.ALIGN_LEFT);
|
|
|
|
+ // 指定单元格垂直居中对齐
|
|
|
|
+ styleDetailLeft.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
+ // 指定单元格自动换行
|
|
|
|
+ styleDetailLeft.setWrapText(true);
|
|
|
|
+ // 设置单元格字体
|
|
|
|
+ styleDetailLeft.setFont(fontDetail);
|
|
|
|
+ // 右边框
|
|
|
|
+ styleDetailLeft.setBorderRight(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 左边框
|
|
|
|
+ styleDetailLeft.setBorderLeft(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 上边框
|
|
|
|
+ styleDetailLeft.setBorderTop(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ // 下styleDetailTitle
|
|
|
|
+ styleDetailLeft.setBorderBottom(HSSFCellStyle.BORDER_THIN);
|
|
|
|
+ /**************** 数据行样式 end ****************/
|
|
|
|
+
|
|
|
|
+ // 设置列宽
|
|
|
|
+ sheet.setColumnWidth(0, 1 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(1, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(2, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(3, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(4, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(5, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(6, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(7, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(8, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(9, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(10, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(11, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(12, 1 * 256 + 184);
|
|
|
|
+
|
|
|
|
+ // 创建单元格对象
|
|
|
|
+ HSSFCell cell = null;
|
|
|
|
+
|
|
|
|
+ // 创建打印设置对象
|
|
|
|
+ HSSFPrintSetup ps = sheet.getPrintSetup();
|
|
|
|
+ // 打印方向,true:横向,false:纵向(默认)
|
|
|
|
+ ps.setLandscape(false);
|
|
|
|
+ // // 打印质量
|
|
|
|
+ // ps.setVResolution((short) 700)
|
|
|
|
+ // 设置缩放比例
|
|
|
|
+ ps.setScale((short) 80);
|
|
|
|
+ // 纸张类型
|
|
|
|
+ ps.setPaperSize(HSSFPrintSetup.A4_PAPERSIZE);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ int rownum = 1;
|
|
|
|
+ HSSFRow row0 = sheet.createRow((int) rownum);
|
|
|
|
+ row0.setHeightInPoints(25);
|
|
|
|
+ cell = row0.createCell(1);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell.setCellValue("日志信息");
|
|
|
|
+ sheet.addMergedRegion(new CellRangeAddress(rownum, rownum, (short) 1, (short) 11));
|
|
|
|
+ cell = row0.createCell(2);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(3);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(4);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(5);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(6);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(7);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(8);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(9);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(10);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(11);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ rownum++;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ HSSFRow row1 = sheet.createRow((int) rownum);
|
|
|
|
+ row1.setHeightInPoints(30);
|
|
|
|
+ cell = row1.createCell(1);
|
|
|
|
+ cell.setCellValue("系统模块");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(2);
|
|
|
|
+ cell.setCellValue("请求方式");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(3);
|
|
|
|
+ cell.setCellValue("操作人员");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(4);
|
|
|
|
+ cell.setCellValue("操作地址");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(5);
|
|
|
|
+ cell.setCellValue("方法地址");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(6);
|
|
|
|
+ cell.setCellValue("操作状态");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(7);
|
|
|
|
+ cell.setCellValue("错误信息");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(8);
|
|
|
|
+ cell.setCellValue("方法名");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(9);
|
|
|
|
+ cell.setCellValue("请求参数");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(10);
|
|
|
|
+ cell.setCellValue("响应结果");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(11);
|
|
|
|
+ cell.setCellValue("操作日期");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ rownum++;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ Map<String, Object> pageView = new HashMap<>();
|
|
|
|
+ //开始时间
|
|
|
|
+ pageView.put("startDate", hyOperLog.getStartDate());
|
|
|
|
+ pageView.put("endDate", hyOperLog.getEndDate());
|
|
|
|
+ // 查询订单列表
|
|
|
|
+ List<HyOperLog> dataList = baseMapper.getListByCondition(pageView);
|
|
|
|
+ //设置日期格式
|
|
|
|
+ SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
+
|
|
|
|
+ // 详情信息
|
|
|
|
+ if (!org.springframework.util.CollectionUtils.isEmpty(dataList)) {
|
|
|
|
+ for (int i = 0; i < dataList.size(); i++) {
|
|
|
|
+ HyOperLog hyOperLog1 = dataList.get(i);
|
|
|
|
+ HSSFRow rowx = sheet.createRow((int) rownum);
|
|
|
|
+ rowx.setHeightInPoints(20);
|
|
|
|
+ cell = rowx.createCell(1);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getTitle()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(2);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getRequestMethod()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(3);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getOperator()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(4);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getIp()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(5);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getUrl()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(6);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getStatus()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(7);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getErrMsg()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(8);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getMethod()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(9);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getRequestValue()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(10);
|
|
|
|
+ cell.setCellValue(editString(hyOperLog1.getJsonResult()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(11);
|
|
|
|
+ cell.setCellValue(editString(df.format(hyOperLog1.getCreateDate())));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ rownum++;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ String path = null;
|
|
|
|
+ String tempPath = null;
|
|
|
|
+ String excelPath = null;
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+
|
|
|
|
+ // 取得绝对路径
|
|
|
|
+ tempPath = URLDecoder.decode((localPath), "utf-8");
|
|
|
|
+
|
|
|
|
+ // EXCEL路径
|
|
|
|
+ excelPath = "/web/temp/pay/" + DateUtil.formatDate(new Date(), DateUtils.DATE_FMT_YYYYMMDD_NS) + '/'
|
|
|
|
+ + UUID.randomUUID().toString().replaceAll("-", "");
|
|
|
|
+
|
|
|
|
+ path = tempPath + excelPath + '/' + "订单信息"
|
|
|
|
+ + ".xlsx";
|
|
|
|
+
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ log.debug(e.getMessage());
|
|
|
|
+ }
|
|
|
|
+ // 下载
|
|
|
|
+ download(path, response, wb);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 后台通过服务器间接传文件
|
|
|
|
+ *
|
|
|
|
+ * @param file
|
|
|
|
+ * @return
|
|
|
|
+ * @throws IOException
|
|
|
|
+ */
|
|
|
|
+ public String upload(MultipartFile file, String name) throws IOException {
|
|
|
|
+ ObjectMetadata objectMetadata = new ObjectMetadata();
|
|
|
|
+ objectMetadata.setContentLength(file.getSize());
|
|
|
|
+ objectMetadata.setContentType(file.getContentType());
|
|
|
|
+ PutObjectRequest putObjectRequest = new PutObjectRequest(bucket, "pcfiles/" + name + ".xlsx", file.getInputStream(), objectMetadata);
|
|
|
|
+ ossClient.putObject(putObjectRequest);
|
|
|
|
+ return baseUrl + "pcfiles/" + name + ".xlsx";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 判断字符串
|
|
|
|
+ *
|
|
|
|
+ * @param example
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ private String editString(String example) {
|
|
|
|
+ String exampleOne = example != null ? example : "";
|
|
|
|
+ return exampleOne;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 下载
|
|
|
|
+ *
|
|
|
|
+ * @param path
|
|
|
|
+ * @param response
|
|
|
|
+ */
|
|
|
|
+ private void download(String path, HttpServletResponse response, Workbook wb) {
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+
|
|
|
|
+ // path是指欲下载的文件的路径。
|
|
|
|
+ File file = new File(path);
|
|
|
|
+ // 取得文件名。
|
|
|
|
+ String fileName = file.getName();
|
|
|
|
+ // 给文件名编码
|
|
|
|
+ fileName = new String(fileName.getBytes("GBK"), "ISO-8859-1");
|
|
|
|
+
|
|
|
|
+ response.setContentType("application/vnd.ms-excel");
|
|
|
|
+ response.addHeader("Content-Disposition", "attachment;filename=" + fileName);
|
|
|
|
+
|
|
|
|
+ // 定义byte输出流
|
|
|
|
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
|
|
|
|
+
|
|
|
|
+ // 写导出文件
|
|
|
|
+ wb.write(out);
|
|
|
|
+
|
|
|
|
+ // 取得模板文件中的数据
|
|
|
|
+ byte[] result = out.toByteArray();
|
|
|
|
+
|
|
|
|
+ // 设置输出数据类型
|
|
|
|
+ response.setContentType("application/vnd.ms-excel");
|
|
|
|
+ // 设置输出数据长度
|
|
|
|
+ response.setContentLength(result.length);
|
|
|
|
+
|
|
|
|
+ // 设置文件名称
|
|
|
|
+ response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
|
|
|
|
+ // 将文件流输出到画面
|
|
|
|
+ response.getOutputStream().write(result);
|
|
|
|
+
|
|
|
|
+ out.flush();
|
|
|
|
+ out.close();
|
|
|
|
+
|
|
|
|
+ } catch (IOException ex) {
|
|
|
|
+ log.debug(ex.getMessage());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|