|
@@ -49,17 +49,20 @@ public class IncidentCategoryConfigTask extends BaseTask {
|
49
|
49
|
}
|
50
|
50
|
List<Map<String, Object>> categoryConfigList = jdbcTemplateMdv2.queryForList(sql.toString());
|
51
|
51
|
FieldMapper mapper = new FieldMapper();
|
52
|
|
- if (CollectionUtils.isNotEmpty(categoryConfigList)) {
|
53
|
|
- mapper.addOperationAdd("score", getDicId(jdbcTemplateHsms,"incident_score","1"));
|
54
|
|
- mapper.addOperationReplace("priority", dictionaryTask.loadCache().getIdCache());
|
55
|
|
- mapper.addOperationReplace("duty_id", hospitalTask.loadCache().getIdCache());
|
56
|
|
- mapper.addOperationReplace("group_id", groupTask.loadCache().getIdCache());
|
57
|
|
- mapper.addOperationReplace("user_id", userTask.loadCache().getIdCache());
|
58
|
|
- mapper.trans2JdbcRow(categoryConfigList);
|
59
|
|
-
|
60
|
|
- JdbcUtil jdbcUtil = new JdbcUtil(jdbcTemplateHsms);
|
61
|
|
- jdbcUtil.batchPageInsert("itsm_itsm_incident_category_config", mapper.getRows());
|
|
52
|
+ if (CollectionUtils.isEmpty(categoryConfigList)) {
|
|
53
|
+ sql = new StringBuffer("select version,id as category_id,_priority as priority,_group as group_id,userOrGroupType as user_group,handle_user as user_id,");
|
|
54
|
+ sql.append("NOW() as add_time,branch_id as hos_id,duty_dept as duty_id FROM itsm_incident_category");
|
|
55
|
+ categoryConfigList = jdbcTemplateMdv2.queryForList(sql.toString());
|
62
|
56
|
}
|
|
57
|
+ mapper.addOperationAdd("score", getDicId(jdbcTemplateHsms,"incident_category_score","1"));
|
|
58
|
+ mapper.addOperationReplace("priority", dictionaryTask.loadCache().getIdCache());
|
|
59
|
+ mapper.addOperationReplace("duty_id", hospitalTask.loadCache().getIdCache());
|
|
60
|
+ mapper.addOperationReplace("group_id", groupTask.loadCache().getIdCache());
|
|
61
|
+ mapper.addOperationReplace("user_id", userTask.loadCache().getIdCache());
|
|
62
|
+ mapper.trans2JdbcRow(categoryConfigList);
|
|
63
|
+
|
|
64
|
+ JdbcUtil jdbcUtil = new JdbcUtil(jdbcTemplateHsms);
|
|
65
|
+ jdbcUtil.batchPageInsert("itsm_itsm_incident_category_config", mapper.getRows());
|
63
|
66
|
mapper.clear();
|
64
|
67
|
}
|
65
|
68
|
|