|
@@ -458,6 +458,15 @@ public class TableElementConverter implements ITableElementConverter {
|
|
|
info.setToBeUpdated(true);
|
|
|
info.getDataMap().put(fd.getKey(), FormulaUtils.recovery(p));
|
|
|
}
|
|
|
+
|
|
|
+ //单独处理 重复表单的数据
|
|
|
+ if(elementDataList.size() == 1 && pages.size() == 1){
|
|
|
+ for (TableInfo table : tables) {
|
|
|
+ table.setToBeUpdated(true);
|
|
|
+ table.getDataMap().put(fd.getKey(), FormulaUtils.recovery(pages.get(0)));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
StaticLog.error("元素{}回写报错", fd.getCode());
|