Excel导出导入支持dictType字典类型

pull/2/head
RuoYi 2020-07-20 15:25:05 +08:00
parent cee572f237
commit 8a076e175f
3 changed files with 94 additions and 4 deletions

View File

@ -29,6 +29,11 @@ public @interface Excel
*/
public String dateFormat() default "";
/**
* type
*/
public String dictType() default "";
/**
* (: 0=,1=,2=)
*/
@ -115,4 +120,4 @@ public @interface Excel
return this.value;
}
}
}
}

View File

@ -2,7 +2,6 @@ package com.ruoyi.common.utils;
import java.util.Collection;
import java.util.List;
import com.ruoyi.common.constant.Constants;
import com.ruoyi.common.core.domain.entity.SysDictData;
import com.ruoyi.common.core.redis.RedisCache;
@ -43,6 +42,58 @@ public class DictUtils
return null;
}
/**
*
*
* @param dictType
* @param dictValue
* @return
*/
public static String getDictLabel(String dictType, String dictValue)
{
if (StringUtils.isNotEmpty(dictType) && StringUtils.isNotEmpty(dictValue))
{
List<SysDictData> datas = getDictCache(dictType);
if (StringUtils.isNotEmpty(datas))
{
for (SysDictData dict : datas)
{
if (dictValue.equals(dict.getDictValue()))
{
return dict.getDictLabel();
}
}
}
}
return dictValue;
}
/**
*
*
* @param dictType
* @param dictLabel
* @return
*/
public static String getDictValue(String dictType, String dictLabel)
{
if (StringUtils.isNotEmpty(dictType) && StringUtils.isNotEmpty(dictLabel))
{
List<SysDictData> datas = getDictCache(dictType);
if (StringUtils.isNotEmpty(datas))
{
for (SysDictData dict : datas)
{
if (dictLabel.equals(dict.getDictLabel()))
{
return dict.getDictValue();
}
}
}
}
return dictLabel;
}
/**
*
*/

View File

@ -50,6 +50,7 @@ import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.text.Convert;
import com.ruoyi.common.exception.CustomException;
import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.common.utils.DictUtils;
import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.reflect.ReflectUtils;
@ -270,7 +271,11 @@ public class ExcelUtil<T>
}
else if (StringUtils.isNotEmpty(attr.readConverterExp()))
{
val = reverseByExp(String.valueOf(val), attr.readConverterExp());
val = reverseByExp(Convert.toStr(val), attr.readConverterExp());
}
else if (StringUtils.isNotEmpty(attr.dictType()))
{
val = reverseDictByExp(attr.dictType(), Convert.toStr(val));
}
ReflectUtils.invokeSetter(entity, propertyName, val);
}
@ -529,13 +534,18 @@ public class ExcelUtil<T>
Object value = getTargetValue(vo, field, attr);
String dateFormat = attr.dateFormat();
String readConverterExp = attr.readConverterExp();
String dictType = attr.dictType();
if (StringUtils.isNotEmpty(dateFormat) && StringUtils.isNotNull(value))
{
cell.setCellValue(DateUtils.parseDateToStr(dateFormat, (Date) value));
}
else if (StringUtils.isNotEmpty(readConverterExp) && StringUtils.isNotNull(value))
{
cell.setCellValue(convertByExp(String.valueOf(value), readConverterExp));
cell.setCellValue(convertByExp(Convert.toStr(value), readConverterExp));
}
else if (StringUtils.isNotEmpty(dictType))
{
cell.setCellValue(convertDictByExp(dictType, Convert.toStr(value)));
}
else
{
@ -666,6 +676,30 @@ public class ExcelUtil<T>
return propertyValue;
}
/**
*
*
* @param dictType
* @param dictValue
* @return
*/
public static String convertDictByExp(String dictType, String dictValue) throws Exception
{
return DictUtils.getDictLabel(dictType, dictValue);
}
/**
*
*
* @param dictType
* @param dictValue
* @return
*/
public static String reverseDictByExp(String dictType, String dictLabel) throws Exception
{
return DictUtils.getDictValue(dictType, dictLabel);
}
/**
*
*/