修改标准解读流程导出问题
This commit is contained in:
-18
@@ -1084,7 +1084,6 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe
|
||||
|
||||
exportList = BeanCopyUtils.copyBeanList(exportList2, ProcessStandardInterpretClauseSublist.class);
|
||||
}
|
||||
resetCellMaxTextLength();
|
||||
// Step.3 AutoPoi 导出Excel
|
||||
ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
|
||||
try {
|
||||
@@ -1102,23 +1101,6 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe
|
||||
return mv;
|
||||
}
|
||||
|
||||
public static void resetCellMaxTextLength() {
|
||||
SpreadsheetVersion excel2007 = SpreadsheetVersion.EXCEL2007;
|
||||
if (Integer.MAX_VALUE != excel2007.getMaxTextLength()) {
|
||||
Field field;
|
||||
try {
|
||||
// SpreadsheetVersion.EXCEL2007的_maxTextLength变量
|
||||
field = excel2007.getClass().getDeclaredField("_maxTextLength");
|
||||
// 关闭反射机制的安全检查,可以提高性能
|
||||
field.setAccessible(true);
|
||||
// 重新设置这个变量属性值
|
||||
field.set(excel2007, Integer.MAX_VALUE);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void flowCountersign(String taskId, String userId, String projectId) {
|
||||
ProcessStandardInterpret processStandardInterpret = processStandardInterpretService.getOne(
|
||||
|
||||
Reference in New Issue
Block a user