|
@@ -1,8 +1,8 @@
|
|
|
package com.ruoyi.asset.service.impl;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Date;
|
|
|
-import java.util.List;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
+import java.util.*;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
@@ -15,13 +15,12 @@ import com.ruoyi.asset.domain.dto.TbBorrowRecordDTO;
|
|
|
import com.ruoyi.asset.mapper.TbAssetMapper;
|
|
|
import com.ruoyi.asset.mapper.TbAssetStatusRecordMapper;
|
|
|
import com.ruoyi.asset.mapper.TbPlaceMapper;
|
|
|
+import com.ruoyi.asset.utils.EmailUtils;
|
|
|
import com.ruoyi.common.core.domain.entity.SysUser;
|
|
|
import com.ruoyi.common.utils.UserUtils;
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
import com.ruoyi.common.exception.ServiceException;
|
|
|
import com.ruoyi.system.mapper.SysUserMapper;
|
|
|
-import org.slf4j.Logger;
|
|
|
-import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.ruoyi.asset.mapper.TbAssetBorrowRecordMapper;
|
|
@@ -39,8 +38,6 @@ import javax.annotation.Resource;
|
|
|
@Service
|
|
|
public class TbAssetBorrowRecordServiceImpl extends ServiceImpl<TbAssetBorrowRecordMapper, TbAssetBorrowRecord> implements ITbAssetBorrowRecordService
|
|
|
{
|
|
|
- private static final Logger log = LoggerFactory.getLogger(TbAssetBorrowRecordServiceImpl.class);
|
|
|
-
|
|
|
@Autowired
|
|
|
private TbAssetBorrowRecordMapper tbAssetBorrowRecordMapper;
|
|
|
|
|
@@ -272,4 +269,67 @@ public class TbAssetBorrowRecordServiceImpl extends ServiceImpl<TbAssetBorrowRec
|
|
|
int count = count(borrowRecordQueryWrapper);
|
|
|
return AjaxResult.success("查询成功", count);
|
|
|
}
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private EmailUtils emailUtils;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void informNotReturnUser() {
|
|
|
+ Date date = new Date();
|
|
|
+
|
|
|
+ long time = date.getTime();
|
|
|
+ long five = 5 * 24 * 60 * 60 * 1000;
|
|
|
+ long fiveDate = five + time;
|
|
|
+ Date toDate = new Date(fiveDate);
|
|
|
+
|
|
|
+ SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+ String begin = dateFormat.format(date);
|
|
|
+ String end = dateFormat.format(toDate);
|
|
|
+
|
|
|
+ List<TbAssetBorrowRecord> borrowRecords = query().eq("isReturn", 0).ge("return_date", begin).le("return_date", end).list();
|
|
|
+ List<TbAssetBorrowRecord> borrowRecordList = borrowRecords.stream().filter(Objects::nonNull).collect(Collectors.toList());
|
|
|
+
|
|
|
+ if (borrowRecordList.isEmpty()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ Set<Long> userIdSet = new HashSet<>();
|
|
|
+
|
|
|
+ for (TbAssetBorrowRecord borrowRecord : borrowRecordList) {
|
|
|
+ userIdSet.add(borrowRecord.getUserId());
|
|
|
+ }
|
|
|
+ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+ String nowDate = simpleDateFormat.format(date);
|
|
|
+
|
|
|
+ for (Long userId : userIdSet) {
|
|
|
+ SysUser sysUser = sysUserMapper.selectUserById(userId);
|
|
|
+ String email = sysUser.getEmail();
|
|
|
+ List<TbAssetBorrowRecord> collect = borrowRecordList.stream().filter(record -> record.getUserId().equals(userId)).collect(Collectors.toList());
|
|
|
+
|
|
|
+ String start = "<!DOCTYPE html>\r\n" +
|
|
|
+ "<html>\r\n" +
|
|
|
+ "<head>\r\n" +
|
|
|
+ "<meta charset=\"UTF-8\">\r\n" +
|
|
|
+ "<title>Insert title here</title>\r\n" +
|
|
|
+ "</head>\r\n" +
|
|
|
+ "<body>\r\n" +
|
|
|
+ "<h3>"+ nowDate +"待归还设备提醒</h3>" +
|
|
|
+ "<table border=\"1\">";
|
|
|
+ StringBuilder content = new StringBuilder("<tr><th style=\"font-size: 18px\">设备条形码</th><th style=\"font-size: 18px\">归还时间</th></tr>");
|
|
|
+ String end2 = "</table>" +
|
|
|
+ "</body>\r\n" +
|
|
|
+ "</html>";
|
|
|
+ for (TbAssetBorrowRecord borrowRecord : collect) {
|
|
|
+ String assetBarCode = borrowRecord.getAssetBarCode();
|
|
|
+ Date returnDate = borrowRecord.getReturnDate();
|
|
|
+ SimpleDateFormat simpleDateFormat1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+ String returnTime = simpleDateFormat1.format(returnDate);
|
|
|
+ content.append("<tr><td style=\"font-size: 18px\">").append(assetBarCode).append("</td>");
|
|
|
+ content.append("<td style=\"font-size: 18px\">").append(returnTime).append("</td></tr>");
|
|
|
+ }
|
|
|
+ String html = start + content + end2;
|
|
|
+
|
|
|
+
|
|
|
+ emailUtils.sendHtmlMail("2786794141@qq.com", "待归还设备提醒", html);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|