疯狂的狮子li
2021-11-29 42295ef2ac0a5e78674cf24b62d6834138f0ffdc
ruoyi-common/src/main/java/com/ruoyi/common/convert/ExcelDictConvert.java
@@ -8,8 +8,10 @@
import com.alibaba.excel.metadata.GlobalConfiguration;
import com.alibaba.excel.metadata.property.ExcelContentProperty;
import com.ruoyi.common.annotation.ExcelDictFormat;
import com.ruoyi.common.core.service.DictService;
import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.poi.ExcelUtils;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.utils.spring.SpringUtils;
import lombok.extern.slf4j.Slf4j;
import java.lang.reflect.Field;
@@ -39,9 +41,9 @@
      String label = cellData.getStringValue();
      String value;
      if (StringUtils.isBlank(type)) {
         value = ExcelUtils.reverseByExp(label, anno.readConverterExp(), anno.separator());
         value = ExcelUtil.reverseByExp(label, anno.readConverterExp(), anno.separator());
      } else {
         value = ExcelUtils.reverseDictByExp(label, type, anno.separator());
         value = SpringUtils.getBean(DictService.class).getDictValue(type, label, anno.separator());
      }
      return Convert.convert(contentProperty.getField().getType(), value);
   }
@@ -56,9 +58,9 @@
      String value = Convert.toStr(object);
      String label;
      if (StringUtils.isBlank(type)) {
         label = ExcelUtils.convertByExp(value, anno.readConverterExp(), anno.separator());
         label = ExcelUtil.convertByExp(value, anno.readConverterExp(), anno.separator());
      } else {
         label = ExcelUtils.convertDictByExp(value, type, anno.separator());
         label = SpringUtils.getBean(DictService.class).getDictLabel(type, value, anno.separator());
      }
      return new CellData<>(label);
   }