|
@@ -7,7 +7,6 @@ import com.dashitech.migration.task.uc.GroupTask;
|
7
|
7
|
import com.dashitech.migration.task.uc.HospitalTask;
|
8
|
8
|
import com.dashitech.migration.task.uc.UserTask;
|
9
|
9
|
import com.dashitech.migration.util.JdbcUtil;
|
10
|
|
-import org.apache.commons.collections.CollectionUtils;
|
11
|
10
|
import org.apache.commons.logging.Log;
|
12
|
11
|
import org.apache.commons.logging.LogFactory;
|
13
|
12
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -48,12 +47,16 @@ public class IncidentCategoryConfigTask extends BaseTask {
|
48
|
47
|
sql.append(" WHERE a.branch_id <> 4 ");
|
49
|
48
|
}
|
50
|
49
|
List<Map<String, Object>> categoryConfigList = jdbcTemplateMdv2.queryForList(sql.toString());
|
51
|
|
- FieldMapper mapper = new FieldMapper();
|
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());
|
|
50
|
+ //查询故障现象表的配置数据
|
|
51
|
+ 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,");
|
|
52
|
+ sql.append("NOW() as add_time,branch_id as hos_id,duty_dept as duty_id FROM itsm_incident_category");
|
|
53
|
+ if ("xiangyang".equals(appName)) {
|
|
54
|
+ sql.append(" WHERE branch_id <> 4 ");
|
56
|
55
|
}
|
|
56
|
+ List<Map<String, Object>> list = jdbcTemplateMdv2.queryForList(sql.toString());
|
|
57
|
+ categoryConfigList.addAll(list);
|
|
58
|
+
|
|
59
|
+ FieldMapper mapper = new FieldMapper();
|
57
|
60
|
mapper.addOperationAdd("score", getDicId(jdbcTemplateHsms,"incident_category_score","1"));
|
58
|
61
|
mapper.addOperationReplace("priority", dictionaryTask.loadCache().getIdCache());
|
59
|
62
|
mapper.addOperationReplace("duty_id", hospitalTask.loadCache().getIdCache());
|