|
@@ -1,18 +1,25 @@
|
|
|
package com.ruoyi.gljt.service.impl;
|
|
|
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.bean.copier.CopyOptions;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.ruoyi.common.core.exception.ServiceException;
|
|
|
import com.ruoyi.common.core.utils.DateUtils;
|
|
|
import com.ruoyi.common.core.utils.StringUtils;
|
|
|
+import com.ruoyi.common.security.utils.DictUtils;
|
|
|
import com.ruoyi.common.security.utils.EncryptionUtils;
|
|
|
import com.ruoyi.common.security.utils.SecurityUtils;
|
|
|
import com.ruoyi.common.security.utils.SysDeptJlUtils;
|
|
|
import com.ruoyi.gljt.domain.GljtJkzk;
|
|
|
import com.ruoyi.gljt.domain.GljtSqLr;
|
|
|
+import com.ruoyi.gljt.domain.GljtSqLrExport;
|
|
|
+import com.ruoyi.gljt.domain.GljtXmpz;
|
|
|
import com.ruoyi.gljt.mapper.GljtJkzkMapper;
|
|
|
+import com.ruoyi.gljt.mapper.GljtSqLrExportMapper;
|
|
|
import com.ruoyi.gljt.mapper.GljtSqLrMapper;
|
|
|
import com.ruoyi.gljt.service.IGljtSqLrService;
|
|
|
import com.ruoyi.gljt.utils.GljtSqUtils;
|
|
|
+import com.ruoyi.system.api.domain.SysDictData;
|
|
|
import com.ruoyi.system.api.enums.GljtLrStatus;
|
|
|
import com.ruoyi.system.mapper.SysDeptJlMapper;
|
|
|
import com.ruoyi.system.utils.SubCodeUtil;
|
|
@@ -21,8 +28,12 @@ import org.apache.commons.lang3.ObjectUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.math.RoundingMode;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Arrays;
|
|
|
+import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.stream.Collectors;
|
|
|
import java.util.stream.Stream;
|
|
@@ -39,6 +50,9 @@ public class GljtSqLrServiceImpl implements IGljtSqLrService
|
|
|
@Autowired
|
|
|
private GljtSqLrMapper gljtSqLrMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private GljtSqLrExportMapper gljtSqLrExportMapper;
|
|
|
+
|
|
|
@Autowired
|
|
|
private GljtJkzkMapper gljtJkzkMapper;
|
|
|
|
|
@@ -133,6 +147,86 @@ public class GljtSqLrServiceImpl implements IGljtSqLrService
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<GljtSqLrExport> exportGljtLr(GljtSqLr gljtSqLr) {
|
|
|
+ EncryptionUtils.encryptionForPlaintext(gljtSqLr);
|
|
|
+ String filter = StringUtils.isEmpty(gljtSqLr.getXzqh()) ? SecurityUtils.getAreaCode() : gljtSqLr.getXzqh();
|
|
|
+ gljtSqLr.setXzqh(null);
|
|
|
+ List<String> lrStatus = Arrays.asList("0", "1");
|
|
|
+ GljtSqLrExport query = new GljtSqLrExport();
|
|
|
+ BeanUtil.copyProperties(gljtSqLr, query, new CopyOptions().ignoreNullValue());
|
|
|
+ LambdaQueryWrapper<GljtSqLrExport> lqw = new LambdaQueryWrapper<>(query)
|
|
|
+ .likeRight(GljtSqLrExport::getXzqh, SubCodeUtil.code2Short(filter)).in(GljtSqLrExport::getStatus, lrStatus)
|
|
|
+ .orderByDesc(GljtSqLrExport::getCreateTimeStr);
|
|
|
+ List<GljtSqLrExport> res = gljtSqLrExportMapper.selectList(lqw);
|
|
|
+ String en = SecurityUtils.sm4encrypt_ECB("33555573BDFADC45", "张福䘵");
|
|
|
+ System.out.println("33555573BDFADC45");
|
|
|
+ System.out.println(en);
|
|
|
+ System.out.println(SecurityUtils.sm4decrypt_ECB("33555573BDFADC45", en));
|
|
|
+ List<SysDictData> mzList = DictUtils.getDictCache("C0009");
|
|
|
+ List<SysDictData> jkzkList = DictUtils.getDictCache("GL021");
|
|
|
+ if (CollectionUtils.isEmpty(mzList) || CollectionUtils.isEmpty(jkzkList)) {
|
|
|
+ throw new ServiceException("请尝试刷新缓存,当前缓存内未取到相应字典");
|
|
|
+ }
|
|
|
+ GljtXmpz xmpz = gljtSqUtils.getXmpz();
|
|
|
+ for (GljtSqLrExport r: res) {
|
|
|
+ EncryptionUtils.decryptForPlaintext(r);
|
|
|
+ try {
|
|
|
+ r.setDjsj(parseStr2Str(DateUtils.YYYY_MM_DD, StringUtils.isNotEmpty(r.getCreateTimeStr()) ? r.getCreateTimeStr().substring(0, 8) : "20200101"));
|
|
|
+ if (StringUtils.equals(r.getXb(), "1")) {
|
|
|
+ r.setXb("1|男");
|
|
|
+ } else {
|
|
|
+ r.setXb("2|女");
|
|
|
+ }
|
|
|
+ r.setAge(String.valueOf(DateUtils.getCurrentAgeByMonth(r.getSqrZjhm().substring(6, 14))));
|
|
|
+ if (StringUtils.isEmpty(r.getMz())) r.setMz("01");
|
|
|
+ if (StringUtils.isEmpty(r.getSndj())) r.setSndj("1");
|
|
|
+ r.setMz(r.getMz() + "|" + mzList.stream().filter(m -> StringUtils.equals(m.getDictValue(), r.getMz())).findFirst().orElse(new SysDictData()).getDictLabel());
|
|
|
+ r.setXsbtlb("1|高龄津贴");
|
|
|
+ r.setSndj(r.getSndj() + "|" + jkzkList.stream().filter(j -> StringUtils.equals(j.getDictValue(), r.getSndj())).findFirst().orElse(new SysDictData()).getDictLabel());
|
|
|
+ r.setYbzje(setYbzje(xmpz, r.getPc()));
|
|
|
+ } catch (Exception ignored) {}
|
|
|
+ }
|
|
|
+ return res;
|
|
|
+ }
|
|
|
+
|
|
|
+ private String setYbzje(GljtXmpz pz, String pc) {
|
|
|
+ String res = "";
|
|
|
+ if (StringUtils.equals(pc, "0")) res = pz.getBtzjE();
|
|
|
+ if (StringUtils.equals(pc, "1")) res = pz.getBtzjN();
|
|
|
+ if (StringUtils.equals(pc, "2")) res = pz.getBtzjH();
|
|
|
+ if (StringUtils.equals(pc, "3")) res = pz.getBtzjEd();
|
|
|
+ if (StringUtils.equals(pc, "4")) res = pz.getBtzjNd();
|
|
|
+ if (StringUtils.equals(pc, "5")) res = pz.getBtzjHd();
|
|
|
+ return formatAmount(res);
|
|
|
+ }
|
|
|
+
|
|
|
+ private String formatAmount(String amount) {
|
|
|
+ if (StringUtils.isEmpty(amount)) {
|
|
|
+ return "0.0";
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ // 转换为 BigDecimal 处理
|
|
|
+ BigDecimal decimal = new BigDecimal(amount);
|
|
|
+ // 设置保留一位小数
|
|
|
+ decimal = decimal.setScale(1, RoundingMode.HALF_UP);
|
|
|
+ return decimal.toString();
|
|
|
+ } catch (Exception e) {
|
|
|
+ return "0.0";
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private String parseStr2Str(String format, String dateStr) {
|
|
|
+ String res = "";
|
|
|
+ try {
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat(DateUtils.YYYYMMDD);
|
|
|
+ Date date = sdf.parse(dateStr);
|
|
|
+ SimpleDateFormat sdf2 = new SimpleDateFormat(format);
|
|
|
+ res = sdf2.format(date);
|
|
|
+ } catch (Exception ignored) {}
|
|
|
+ return res;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public GljtSqLr getLrByZjhm(GljtSqLr gljtSqLr) {
|
|
|
if (StringUtils.isEmpty(gljtSqLr.getSqrZjhm())) {
|