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

修改同步事项

parent e325c78b
...@@ -1067,11 +1067,11 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter ...@@ -1067,11 +1067,11 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter
// return Rest.fail("本地事项版本大于等于远端,不需要更新!"); // return Rest.fail("本地事项版本大于等于远端,不需要更新!");
} }
log.info("更新详细事项==>{},version==>{}", matterEntity.getMatterName(), matterEditionRemote); log.info("更新详细事项==>{},id===>{},version==>{}", matterEntity.getMatterName(),matterEntity.getId(), matterEditionRemote);
//更新部门信息 //更新部门信息
DeptEntity extCache = deptService.getExtCache(matterEntity.getDeptCode()); DeptEntity extCache = deptService.getExtCache(matterEntity.getDeptCode());
matterEntity.setDeptName(extCache == null ? "" : extCache.getName()); matterEntity.setDeptName(extCache == null ? "" : extCache.getName());
matterEntity.setMatterEdition(matterEditionRemote+"");
//构建基础信息参数 //构建基础信息参数
savebaseInfo(matterEntity, baseInfoMap, baseInfoSetting); savebaseInfo(matterEntity, baseInfoMap, baseInfoSetting);
......
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