|
@@ -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
|
+}
|