Commit 0aa26f63 authored by 赵啸非's avatar 赵啸非

添加应用配置列表

parent ec777b05
Pipeline #2927 failed with stages
......@@ -402,6 +402,14 @@ public class MatterDatumServiceImpl extends AbstractCRUDServiceImpl<MatterDatumD
//TODO 单选
//绑定动态表单
if (entry.getKey().indexOf(ComponentEnum.DYNAMIC_TABLE.getValue()) != -1) {
ArrayList<Map<String,Object>> listMap = (ArrayList)entry.getValue();
for (Map<String, Object> map : listMap) {
Integer index = (Integer)map.get("index");
if(!ObjectUtils.isEmpty(index)){
map.put("index",index+1);
}
}
builder.bind(entry.getKey(), new MultipleRowTableRenderPolicy());
}
//绑定转换list list_1_身份证
......@@ -427,6 +435,10 @@ public class MatterDatumServiceImpl extends AbstractCRUDServiceImpl<MatterDatumD
if (addMap.size() > 0) {
data.putAll(addMap);
}
//将data中的list中的index 加1
//查询是否有多选框,
//获取模板文件地址
MatterDatumEntity docTemplateEntity = this.get(docFormVo.getId(), context);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment