Commit e9f0d622 authored by 赵啸非's avatar 赵啸非

添加自定义导入修改

parent af79f64f
...@@ -46,7 +46,7 @@ public class MatterCustomImportEntity extends BaseEntityLong { ...@@ -46,7 +46,7 @@ public class MatterCustomImportEntity extends BaseEntityLong {
/** /**
* 事项详情链接 * 事项详情链接
*/ */
@Excel(name = "办事指南地址", type = Excel.Type.IMPORT) @Excel(name = "办事指南地址")
private String url; private String url;
......
...@@ -2113,10 +2113,7 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter ...@@ -2113,10 +2113,7 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter
matterEntity.setDeptCode(deptEntity.getDeptNumber()); matterEntity.setDeptCode(deptEntity.getDeptNumber());
this.update(matterEntity); this.update(matterEntity);
} }
//todo 固定新增办事流程 //todo 固定新增办事流程
ArrayList<MatterFlowlimitEntity> matterFlowlimitEntities = new ArrayList<>(); ArrayList<MatterFlowlimitEntity> matterFlowlimitEntities = new ArrayList<>();
MatterFlowlimitEntity matterFlowlimitEntity = new MatterFlowlimitEntity(); MatterFlowlimitEntity matterFlowlimitEntity = new MatterFlowlimitEntity();
...@@ -2159,8 +2156,14 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter ...@@ -2159,8 +2156,14 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter
SucessCount++; SucessCount++;
} else { } else {
log.info("事项已存在:" + matterEntity.getMatterName()); log.info("事项已存在,更新事项:" + matterEntity.getMatterName());
failCount++; BeanUtils.copyProperties(matterCustomImportEntity, matterEntity, new String[]{"areaCode", "deptName", "matterName"});
matterEntity.setMatterNo(RandomUtil.randomString(12));
matterEntity.setUpdateTime(new Date());
matterEntity.setUpdateUserId(1L);
this.dao.update(matterEntity);
// failCount++;
} }
} }
......
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