Browse Source

添加耗材转产品数据转换

song 5 months ago
parent
commit
61f6fe2c95

+ 12 - 0
src/main/java/com/dashitech/migration/BaseTask.java

@@ -36,6 +36,18 @@ public abstract class BaseTask implements SqlTask {
36 36
         return null;
37 37
     }
38 38
 
39
+    /**
40
+     * 获取树形字典id
41
+     */
42
+    public Long getDicTreeId(JdbcTemplate jt,String key, String value) {
43
+        List<Map<String,Object>> list = jt.queryForList("SELECT id from itsm_base_dictionary_tree WHERE _key = ? and _value = ?",key,value);
44
+        if(list != null && list.size() > 0) {
45
+            Object obj = list.get(0).get("id");
46
+            return obj == null ? null : Long.valueOf(obj.toString());
47
+        }
48
+        return null;
49
+    }
50
+
39 51
     public Object getSingleObj(JdbcTemplate jt,String sql, Object... args) {
40 52
         List<Map<String,Object>> list = jt.queryForList(sql,args);
41 53
         if(list != null && list.size() > 0) {

+ 5 - 5
src/main/java/com/dashitech/migration/StartApplication.java

@@ -1,6 +1,5 @@
1 1
 package com.dashitech.migration;
2 2
 
3
-import com.dashitech.migration.core.FieldMapper;
4 3
 import com.dashitech.utils.SpringContextHolder;
5 4
 import org.apache.commons.logging.Log;
6 5
 import org.apache.commons.logging.LogFactory;
@@ -40,8 +39,8 @@ public class StartApplication {
40 39
 //        task.start();
41 40
 //        task = SpringContextHolder.getBean("companyTask");
42 41
 //        task.start();
43
-        task = SpringContextHolder.getBean("userTask");
44
-        task.start();
42
+//        task = SpringContextHolder.getBean("userTask");
43
+//        task.start();
45 44
 //        task = SpringContextHolder.getBean("userGroupTask");
46 45
 //        task.start();
47 46
 //        task = SpringContextHolder.getBean("roleUserTask");
@@ -68,8 +67,10 @@ public class StartApplication {
68 67
 //        task.start();
69 68
 //        task = SpringContextHolder.getBean("solutionIntroduceTask");
70 69
 //        task.start();
71
-//        task = SpringContextHolder.getBean("consumableTask");
70
+//        task = SpringContextHolder.getBean("productTask");
72 71
 //        task.start();
72
+        task = SpringContextHolder.getBean("consumableTask");
73
+        task.start();
73 74
 //        task = SpringContextHolder.getBean("consumableHistoryTask");
74 75
 //        task.start();
75 76
 //        task = SpringContextHolder.getBean("repairSummaryTask");
@@ -80,7 +81,6 @@ public class StartApplication {
80 81
 //        task.start();
81 82
 //        task = SpringContextHolder.getBean("hjzxRecordTask");
82 83
 //        task.start();
83
-		
84 84
 
85 85
 
86 86
         log.info("########### 迁移任务完成!###########");

+ 35 - 0
src/main/java/com/dashitech/migration/core/DataMapper.java

@@ -19,10 +19,14 @@ public class DataMapper implements Serializable{
19 19
     private Object sourceValue;
20 20
     private Long sourceId;
21 21
 
22
+    //匹配字段
23
+    private String matchFieldName;
24
+
22 25
     //操作类型
23 26
     private boolean remove = false;
24 27
     private boolean update = false;
25 28
     private boolean add = false;
29
+    private boolean addFromMatchField = false;
26 30
     private boolean replace = false;
27 31
     private boolean nullDefault = false;
28 32
 
@@ -31,6 +35,8 @@ public class DataMapper implements Serializable{
31 35
      */
32 36
     private Map<Long, Long> idCache = new HashMap<>();
33 37
 
38
+    private Map<String, Long> targetCache = new HashMap<>();
39
+
34 40
     public DataMapper() {
35 41
     }
36 42
 
@@ -39,6 +45,12 @@ public class DataMapper implements Serializable{
39 45
         this.sourceName = sourceName;
40 46
     }
41 47
 
48
+    public DataMapper(String targetName, String sourceName,String matchFieldName) {
49
+        this.targetName = targetName;
50
+        this.sourceName = sourceName;
51
+        this.matchFieldName = matchFieldName;
52
+    }
53
+
42 54
     public boolean isNullDefault() {
43 55
         return nullDefault;
44 56
     }
@@ -135,4 +147,27 @@ public class DataMapper implements Serializable{
135 147
         this.sourceId = sourceId;
136 148
     }
137 149
 
150
+    public Map<String, Long> getTargetCache() {
151
+        return targetCache;
152
+    }
153
+
154
+    public void setTargetCache(Map<String, Long> targetCache) {
155
+        this.targetCache = targetCache;
156
+    }
157
+
158
+    public boolean isAddFromMatchField() {
159
+        return addFromMatchField;
160
+    }
161
+
162
+    public void setAddFromMatchField(boolean addFromMatchField) {
163
+        this.addFromMatchField = addFromMatchField;
164
+    }
165
+
166
+    public String getMatchFieldName() {
167
+        return matchFieldName;
168
+    }
169
+
170
+    public void setMatchFieldName(String matchFieldName) {
171
+        this.matchFieldName = matchFieldName;
172
+    }
138 173
 }

+ 20 - 0
src/main/java/com/dashitech/migration/core/FieldMapper.java

@@ -64,6 +64,15 @@ public class FieldMapper {
64 64
                             row.put(dataMapper.getTargetName(), dataMapper.getTargetValue());
65 65
                         }
66 66
                     }
67
+                    //如果是根据指定字段匹配新增
68
+                    if (dataMapper.isAddFromMatchField() && row.containsKey(dataMapper.getMatchFieldName())) {
69
+                        Object value = row.get(dataMapper.getMatchFieldName());
70
+                        if (value != null) {
71
+                            row.put(dataMapper.getSourceName(), dataMapper.getTargetCache().get(value));
72
+                        } else {
73
+                            row.put(dataMapper.getSourceName(), null);
74
+                        }
75
+                    }
67 76
                     //如果是要替换的,使用id缓存替换
68 77
                     if (dataMapper.isReplace() && row.containsKey(dataMapper.getSourceName())) {
69 78
                         Object value = row.get(dataMapper.getSourceName());
@@ -142,6 +151,17 @@ public class FieldMapper {
142 151
     }
143 152
 
144 153
     /**
154
+     * 待新增的字段 需要通过指定sourceName字段匹配
155
+     */
156
+    public FieldMapper addOperationAdd(String name, String matchFieldName,Map<String,Long> targetCache) {
157
+        DataMapper mapper = new DataMapper(name, name, matchFieldName);
158
+        mapper.setAddFromMatchField(true);
159
+        mapper.setTargetCache(targetCache);
160
+        rowsOperationList.add(mapper);
161
+        return this;
162
+    }
163
+
164
+    /**
145 165
      * 待替换的字段,每次加入都在队列最前面。注意:如果是loadCache过滤,使用target名称,如果是start转换,使用source名称
146 166
      */
147 167
     public FieldMapper addOperationReplace(String name, Map<Long, Long> idCache) {

+ 4 - 0
src/main/java/com/dashitech/migration/task/consumable/ConsumableTask.java

@@ -29,6 +29,9 @@ public class ConsumableTask extends BaseTask {
29 29
     @Autowired
30 30
     private CompanyTask companyTask;
31 31
 
32
+    @Autowired
33
+    private ProductTask productTask;
34
+
32 35
     @Override
33 36
     @Transactional(rollbackFor = Exception.class)
34 37
     public void start() {
@@ -39,6 +42,7 @@ public class ConsumableTask extends BaseTask {
39 42
         FieldMapper mapper = new FieldMapper();
40 43
         mapper.addOperationReplace("hos_id", hospitalTask.loadCache().getIdCache());
41 44
         mapper.addOperationReplace("supplier_id", companyTask.loadCache().getIdCache());
45
+        mapper.addOperationAdd("product_id","spd_code", productTask.loadCache().getTargetCache());
42 46
         mapper.trans2JdbcRow(consumableList);
43 47
 
44 48
         JdbcUtil jdbcUtil = new JdbcUtil(jdbcTemplateHsms);

+ 61 - 0
src/main/java/com/dashitech/migration/task/consumable/ProductTask.java

@@ -0,0 +1,61 @@
1
+package com.dashitech.migration.task.consumable;
2
+
3
+import com.dashitech.migration.BaseTask;
4
+import com.dashitech.migration.core.DataMigrationter;
5
+import com.dashitech.migration.core.FieldMapper;
6
+import com.dashitech.migration.task.uc.HospitalTask;
7
+import com.dashitech.migration.util.JdbcUtil;
8
+import org.apache.commons.logging.Log;
9
+import org.apache.commons.logging.LogFactory;
10
+import org.springframework.beans.factory.annotation.Autowired;
11
+import org.springframework.stereotype.Component;
12
+import org.springframework.transaction.annotation.Transactional;
13
+
14
+import java.util.List;
15
+import java.util.Map;
16
+
17
+/**
18
+ * @author song
19
+ * @date 2024年10月12日
20
+ */
21
+@Component
22
+public class ProductTask extends BaseTask {
23
+
24
+    public static Log log = LogFactory.getLog(ProductTask.class);
25
+
26
+    @Autowired
27
+    private HospitalTask hospitalTask;
28
+
29
+    @Override
30
+    @Transactional(rollbackFor = Exception.class)
31
+    public void start() {
32
+        log.info("耗材转产品ProductTask转换开始");
33
+        StringBuffer sql = new StringBuffer("SELECT NAME,IFNULL(spd_code,spdcode) as code,brand_model as brand,specification as model,");
34
+        sql.append("unit,duty_id as hos_id,delete_flag FROM itsm_asset_consumable");
35
+        List<Map<String, Object>> productList = jdbcTemplateMdv2.queryForList(sql.toString());
36
+        FieldMapper mapper = new FieldMapper();
37
+        mapper.addOperationReplace("hos_id", hospitalTask.loadCache().getIdCache());
38
+        mapper.addOperationAdd("main_type", getDicTreeId(jdbcTemplateHsms, "product_category_type", "1008"));
39
+        mapper.trans2JdbcRow(productList);
40
+
41
+        JdbcUtil jdbcUtil = new JdbcUtil(jdbcTemplateHsms);
42
+        jdbcUtil.batchPageInsert("itsm_itsm_asset_product", mapper.getRows());
43
+
44
+        mapper.clear();
45
+
46
+    }
47
+
48
+    @Override
49
+    public FieldMapper loadCache() {
50
+        log.info(" *** 加载product缓存 *** ");
51
+        StringBuffer sql = new StringBuffer("select id,code from itsm_itsm_asset_product");
52
+        List<Map<String, Object>> productList = jdbcTemplateHsms.queryForList(sql.toString());
53
+        sql = new StringBuffer("SELECT id,IFNULL(spd_code,spdcode) as code FROM itsm_asset_consumable");
54
+        List<Map<String, Object>> consumableList = jdbcTemplateMdv2.queryForList(sql.toString());
55
+        FieldMapper mapper = new FieldMapper();
56
+        mapper.addFieldMapper("code", "code");
57
+
58
+        DataMigrationter.loadCache(productList, consumableList, mapper);
59
+        return mapper;
60
+    }
61
+}