Commit 8ecfd3524ad04473fa9fdcb3c9bf781c2bf83bc8

Authored by 潘钊
2 parents 97ccee44 ae062c2e

Merge branch 'minhang' into jiading

Showing 41 changed files with 4075 additions and 2556 deletions
src/main/java/com/bsth/controller/LineController.java
1 package com.bsth.controller; 1 package com.bsth.controller;
2 2
  3 +import java.util.HashMap;
3 import java.util.Map; 4 import java.util.Map;
4 5
5 import org.springframework.beans.factory.annotation.Autowired; 6 import org.springframework.beans.factory.annotation.Autowired;
6 import org.springframework.web.bind.annotation.RequestMapping; 7 import org.springframework.web.bind.annotation.RequestMapping;
7 import org.springframework.web.bind.annotation.RequestMethod; 8 import org.springframework.web.bind.annotation.RequestMethod;
  9 +import org.springframework.web.bind.annotation.RequestParam;
8 import org.springframework.web.bind.annotation.RestController; 10 import org.springframework.web.bind.annotation.RestController;
9 11
  12 +import com.bsth.common.ResponseCode;
10 import com.bsth.entity.Line; 13 import com.bsth.entity.Line;
11 import com.bsth.service.LineService; 14 import com.bsth.service.LineService;
12 import com.bsth.util.GetUIDAndCode; 15 import com.bsth.util.GetUIDAndCode;
@@ -50,12 +53,22 @@ public class LineController extends BaseController<Line, Integer> { @@ -50,12 +53,22 @@ public class LineController extends BaseController<Line, Integer> {
50 */ 53 */
51 @RequestMapping(method = RequestMethod.POST) 54 @RequestMapping(method = RequestMethod.POST)
52 public Map<String, Object> save(Line t){ 55 public Map<String, Object> save(Line t){
53 - 56 + Map<String, Object> map = new HashMap<>();
54 if(t.getId()==null) { 57 if(t.getId()==null) {
55 58
56 t.setId(Integer.valueOf(t.getLineCode())); 59 t.setId(Integer.valueOf(t.getLineCode()));
57 60
58 } 61 }
  62 + if( (t.getId().toString().length()) > 6) {
  63 +
  64 + map.put("status", ResponseCode.ERROR);
  65 + return map;
  66 + }
59 return service.save(t); 67 return service.save(t);
60 } 68 }
  69 +
  70 + @RequestMapping(value ="/findById" , method = RequestMethod.GET)
  71 + Line findByID(@RequestParam(defaultValue = "id") Integer id){
  72 + return service.findById(id);
  73 + }
61 } 74 }
src/main/java/com/bsth/controller/StationRouteController.java
@@ -12,6 +12,8 @@ import org.springframework.web.bind.annotation.RestController; @@ -12,6 +12,8 @@ import org.springframework.web.bind.annotation.RestController;
12 import java.util.List; 12 import java.util.List;
13 import java.util.Map; 13 import java.util.Map;
14 14
  15 +import javax.servlet.http.HttpServletResponse;
  16 +
15 /** 17 /**
16 * 18 *
17 * @ClassName: StationRouteController(站点路由控制器) 19 * @ClassName: StationRouteController(站点路由控制器)
@@ -48,6 +50,18 @@ public class StationRouteController extends BaseController&lt;StationRoute, Integer @@ -48,6 +50,18 @@ public class StationRouteController extends BaseController&lt;StationRoute, Integer
48 } 50 }
49 51
50 /** 52 /**
  53 + * @Description :TODO(查询路段信息)
  54 + *
  55 + * @param map <line.id_eq:线路ID; directions_eq:方向>
  56 + *
  57 + * @return Map<String, Object>
  58 + */
  59 + @RequestMapping(value = "/export" , method = RequestMethod.GET)
  60 + public Map<String, Object> export(@RequestParam Integer id, HttpServletResponse resp) {
  61 + return service.getSectionRouteExport(id, resp);
  62 + }
  63 +
  64 + /**
51 * @param String 65 * @param String
52 * @throws 66 * @throws
53 * @Description: TODO(批量撤销站点) 67 * @Description: TODO(批量撤销站点)
src/main/java/com/bsth/entity/Personnel.java
@@ -44,7 +44,7 @@ public class Personnel extends BEntity { @@ -44,7 +44,7 @@ public class Personnel extends BEntity {
44 @Formula(" concat(company_code, '_', branche_company_code) ") 44 @Formula(" concat(company_code, '_', branche_company_code) ")
45 private String cgsbm; 45 private String cgsbm;
46 46
47 - /** 工号 */ 47 + /** 工号(员工编号带公司编码前缀) */
48 @Column(nullable = false) 48 @Column(nullable = false)
49 private String jobCode; 49 private String jobCode;
50 /** 姓名 */ 50 /** 姓名 */
@@ -59,10 +59,17 @@ public class Personnel extends BEntity { @@ -59,10 +59,17 @@ public class Personnel extends BEntity {
59 private String personnelType; 59 private String personnelType;
60 /** 所属岗位/工种(字典类型gzType) */ 60 /** 所属岗位/工种(字典类型gzType) */
61 private String posts; 61 private String posts;
62 - 62 +
  63 + /** 工号 */
  64 + @Column(nullable = false)
  65 + private String jobCodeori;
63 /** 身份证 */ 66 /** 身份证 */
64 private String card; 67 private String card;
65 68
  69 +
  70 + /** 备注 */
  71 + private String remark;
  72 +
66 public Personnel() {} 73 public Personnel() {}
67 74
68 public Personnel(Object id, Object companyCode, Object gh) { 75 public Personnel(Object id, Object companyCode, Object gh) {
@@ -231,4 +238,20 @@ public class Personnel extends BEntity { @@ -231,4 +238,20 @@ public class Personnel extends BEntity {
231 public void setCgsbm(String cgsbm) { 238 public void setCgsbm(String cgsbm) {
232 this.cgsbm = cgsbm; 239 this.cgsbm = cgsbm;
233 } 240 }
  241 +
  242 + public String getJobCodeori() {
  243 + return jobCodeori;
  244 + }
  245 +
  246 + public void setJobCodeori(String jobCodeori) {
  247 + this.jobCodeori = jobCodeori;
  248 + }
  249 +
  250 + public String getRemark() {
  251 + return remark;
  252 + }
  253 +
  254 + public void setRemark(String remark) {
  255 + this.remark = remark;
  256 + }
234 } 257 }
src/main/java/com/bsth/repository/StationRouteRepository.java
@@ -15,6 +15,7 @@ import org.springframework.transaction.annotation.Transactional; @@ -15,6 +15,7 @@ import org.springframework.transaction.annotation.Transactional;
15 15
16 import com.bsth.entity.Line; 16 import com.bsth.entity.Line;
17 import com.bsth.entity.StationRoute; 17 import com.bsth.entity.StationRoute;
  18 +import com.bsth.entity.StationRouteCache;
18 19
19 /** 20 /**
20 * 21 *
@@ -86,6 +87,9 @@ public interface StationRouteRepository extends BaseRepository&lt;StationRoute, Int @@ -86,6 +87,9 @@ public interface StationRouteRepository extends BaseRepository&lt;StationRoute, Int
86 "ON a.`stationRoute.station` = b.id ORDER BY a.`stationRoute.stationRouteCode` ASC", nativeQuery=true) 87 "ON a.`stationRoute.station` = b.id ORDER BY a.`stationRoute.stationRouteCode` ASC", nativeQuery=true)
87 List<Object[]> findPoints(int line,int directions); 88 List<Object[]> findPoints(int line,int directions);
88 89
  90 + @Query("select r from StationRoute r where r.line.id=?1 and r.destroy=0 order by r.directions ASC ,r.stationRouteCode ASC")
  91 + // @Query(value = "SELECT * from bsth_c_stationroute line = ?1 and destroy=0 bsth_c_station ORDER BY directions ASC, stationRouteCode ASC", nativeQuery=true)
  92 + List<StationRoute> findStationExport(int line);
89 93
90 /** 94 /**
91 * @Description :TODO(查询线路某方向下的站点序号与类型) 95 * @Description :TODO(查询线路某方向下的站点序号与类型)
src/main/java/com/bsth/service/LineService.java
1 package com.bsth.service; 1 package com.bsth.service;
2 2
  3 +import org.springframework.web.bind.annotation.RequestMapping;
  4 +import org.springframework.web.bind.annotation.RequestMethod;
  5 +
3 import com.bsth.entity.Line; 6 import com.bsth.entity.Line;
4 7
5 /** 8 /**
@@ -27,4 +30,6 @@ public interface LineService extends BaseService&lt;Line, Integer&gt; { @@ -27,4 +30,6 @@ public interface LineService extends BaseService&lt;Line, Integer&gt; {
27 long selectMaxIdToLineCode(); 30 long selectMaxIdToLineCode();
28 31
29 Line findByLineCode(String lineCode); 32 Line findByLineCode(String lineCode);
  33 +
  34 + Line findById(Integer id);
30 } 35 }
src/main/java/com/bsth/service/StationRouteService.java
@@ -3,6 +3,8 @@ package com.bsth.service; @@ -3,6 +3,8 @@ package com.bsth.service;
3 import java.util.List; 3 import java.util.List;
4 import java.util.Map; 4 import java.util.Map;
5 5
  6 +import javax.servlet.http.HttpServletResponse;
  7 +
6 import com.bsth.entity.StationRoute; 8 import com.bsth.entity.StationRoute;
7 9
8 /** 10 /**
@@ -105,5 +107,10 @@ public interface StationRouteService extends BaseService&lt;StationRoute, Integer&gt; @@ -105,5 +107,10 @@ public interface StationRouteService extends BaseService&lt;StationRoute, Integer&gt;
105 107
106 Map<String, Object> upddis(Map<String, Object> map); 108 Map<String, Object> upddis(Map<String, Object> map);
107 109
108 - 110 + /**
  111 + * @param id
  112 + * @return
  113 + */
  114 + Map<String, Object> getSectionRouteExport(Integer id, HttpServletResponse resp);
  115 +
109 } 116 }
src/main/java/com/bsth/service/impl/LineServiceImpl.java
@@ -44,4 +44,10 @@ public class LineServiceImpl extends BaseServiceImpl&lt;Line, Integer&gt; implements L @@ -44,4 +44,10 @@ public class LineServiceImpl extends BaseServiceImpl&lt;Line, Integer&gt; implements L
44 return repository.findByLineCode(lineCode); 44 return repository.findByLineCode(lineCode);
45 } 45 }
46 46
  47 + @Override
  48 + public Line findById(Integer id) {
  49 + // TODO Auto-generated method stub
  50 + return repository.findOne(id);
  51 + }
  52 +
47 } 53 }
src/main/java/com/bsth/service/impl/StationRouteServiceImpl.java
@@ -11,6 +11,7 @@ import com.bsth.repository.StationRepository; @@ -11,6 +11,7 @@ import com.bsth.repository.StationRepository;
11 import com.bsth.repository.StationRouteCacheRepository; 11 import com.bsth.repository.StationRouteCacheRepository;
12 import com.bsth.repository.StationRouteRepository; 12 import com.bsth.repository.StationRouteRepository;
13 import com.bsth.service.StationRouteService; 13 import com.bsth.service.StationRouteService;
  14 +import com.bsth.util.ExcelUtil;
14 import com.bsth.util.FTPClientUtils; 15 import com.bsth.util.FTPClientUtils;
15 import com.bsth.util.PackTarGZUtils; 16 import com.bsth.util.PackTarGZUtils;
16 import com.bsth.util.Geo.GeoUtils; 17 import com.bsth.util.Geo.GeoUtils;
@@ -29,6 +30,8 @@ import java.io.InputStream; @@ -29,6 +30,8 @@ import java.io.InputStream;
29 import java.text.DecimalFormat; 30 import java.text.DecimalFormat;
30 import java.util.*; 31 import java.util.*;
31 32
  33 +import javax.servlet.http.HttpServletResponse;
  34 +
32 /** 35 /**
33 * 36 *
34 * @ClassName: StationRouteServiceImpl(站点路由service业务层实现类) 37 * @ClassName: StationRouteServiceImpl(站点路由service业务层实现类)
@@ -71,6 +74,57 @@ public class StationRouteServiceImpl extends BaseServiceImpl&lt;StationRoute, Integ @@ -71,6 +74,57 @@ public class StationRouteServiceImpl extends BaseServiceImpl&lt;StationRoute, Integ
71 return repository.findAll(new CustomerSpecs<StationRoute>(map), new Sort(orderList)); 74 return repository.findAll(new CustomerSpecs<StationRoute>(map), new Sort(orderList));
72 } 75 }
73 76
  77 + @Override
  78 + public Map<String, Object> getSectionRouteExport(Integer id, HttpServletResponse resp) {
  79 + Map<String, Object> resultMap = new HashMap<String, Object>();
  80 + try {
  81 + // List<Map<String, Object>> resultList = new ArrayList<Map<String,Object>>();
  82 + Map<String,Object> resultExcel = new HashMap<String,Object>();//导出参数的对象
  83 + /* 添加表头*/
  84 + List<String> title = new ArrayList<String>();
  85 + title.add("线路ID");
  86 + title.add("方向");
  87 + title.add("站点ID");
  88 + title.add("站点顺序号");
  89 + title.add("站点备注");
  90 + title.add("站点名称");
  91 + title.add("站点距离(km)");
  92 + title.add("站点时长(min)");
  93 + title.add("线路名称");
  94 + resultExcel.put("title", title);
  95 + /* 添加表单*/
  96 + Map<String,List<String>> temp = new HashMap<String,List<String>>();
  97 + List<StationRoute> strtionList = repository.findStationExport(id);
  98 + if(strtionList == null){
  99 + logger.info("没有数据导,出用户信息失败!");
  100 + } else {
  101 +
  102 + for (int i = 0; i < strtionList.size(); i++) {
  103 + StationRoute station = strtionList.get(i);
  104 +
  105 + List<String> varList = new ArrayList<String>();
  106 + varList.add(station.getLine().getId().toString());
  107 + varList.add(station.getDirections().toString());
  108 + varList.add(station.getStationCode());
  109 + varList.add(station.getStationRouteCode().toString());
  110 + varList.add(station.getStationMark());
  111 + varList.add(station.getStationName());
  112 + varList.add(station.getDistances().toString());
  113 + varList.add(station.getToTime().toString());
  114 + varList.add(station.getLine().getName());
  115 + temp.put((i+1)+"", varList);
  116 + }
  117 + }
  118 + resultExcel.put("content", temp);
  119 + ExcelUtil excelUtil = new ExcelUtil();
  120 + excelUtil.buildExcelDocument(resultExcel, strtionList.get(0).getLine().getName()+"线路站点",resp);
  121 + resultMap.put("status", ResponseCode.SUCCESS);
  122 + } catch (Exception e) {
  123 + resultMap.put("status", ResponseCode.ERROR);
  124 + logger.error("save erro.", e);
  125 + }
  126 + return resultMap;
  127 + }
74 128
75 /** 129 /**
76 * @Description : TODO(根据路段路由Id批量撤销路段) 130 * @Description : TODO(根据路段路由Id批量撤销路段)
src/main/java/com/bsth/service/impl/StationServiceImpl.java
@@ -689,7 +689,7 @@ public class StationServiceImpl extends BaseServiceImpl&lt;Station, Integer&gt; implem @@ -689,7 +689,7 @@ public class StationServiceImpl extends BaseServiceImpl&lt;Station, Integer&gt; implem
689 String bJwpoints[] = stationNameList.get(k)[0].toString().split(" "); 689 String bJwpoints[] = stationNameList.get(k)[0].toString().split(" ");
690 Point p2 = new Point(Double.parseDouble(bJwpoints[0]),Double.parseDouble(bJwpoints[1])); 690 Point p2 = new Point(Double.parseDouble(bJwpoints[0]),Double.parseDouble(bJwpoints[1]));
691 double jl = GeoUtils.getDistance(p1, p2); 691 double jl = GeoUtils.getDistance(p1, p2);
692 - if(jl<=20d) { 692 + if(jl<=60d) {
693 rsM.put("id", stationNameList.get(k)[1]); 693 rsM.put("id", stationNameList.get(k)[1]);
694 temp = true; 694 temp = true;
695 break; 695 break;
src/main/java/com/bsth/service/schedule/datatools/CarsDataToolsImpl.java
@@ -121,6 +121,8 @@ public class CarsDataToolsImpl implements DataToolsService { @@ -121,6 +121,8 @@ public class CarsDataToolsImpl implements DataToolsService {
121 ktrParms.put("transpath", ktrFile.getAbsolutePath()); 121 ktrParms.put("transpath", ktrFile.getAbsolutePath());
122 ktrParms.put("filename", "车辆基础信息_download-"); 122 ktrParms.put("filename", "车辆基础信息_download-");
123 123
  124 + ktrParms.putAll(params);
  125 +
124 DataToolsFile file = dataToolsService.exportData(ktrParms); 126 DataToolsFile file = dataToolsService.exportData(ktrParms);
125 127
126 LOGGER.info("//---------------- 导出车辆基础信息 success... ----------------//"); 128 LOGGER.info("//---------------- 导出车辆基础信息 success... ----------------//");
src/main/java/com/bsth/service/schedule/datatools/EmployeeDataToolsImpl.java
@@ -121,6 +121,8 @@ public class EmployeeDataToolsImpl implements DataToolsService { @@ -121,6 +121,8 @@ public class EmployeeDataToolsImpl implements DataToolsService {
121 ktrParms.put("transpath", ktrFile.getAbsolutePath()); 121 ktrParms.put("transpath", ktrFile.getAbsolutePath());
122 ktrParms.put("filename", "人员基础信息_download-"); 122 ktrParms.put("filename", "人员基础信息_download-");
123 123
  124 + ktrParms.putAll(params);
  125 +
124 DataToolsFile file = dataToolsService.exportData(ktrParms); 126 DataToolsFile file = dataToolsService.exportData(ktrParms);
125 127
126 LOGGER.info("//---------------- 导出人员基础信息 success... ----------------//"); 128 LOGGER.info("//---------------- 导出人员基础信息 success... ----------------//");
src/main/java/com/bsth/util/ExcelUtil.java 0 → 100644
  1 +package com.bsth.util;
  2 +
  3 +import java.io.OutputStream;
  4 +import java.net.URLEncoder;
  5 +import java.util.List;
  6 +import java.util.Map;
  7 +
  8 +import javax.servlet.http.HttpServletResponse;
  9 +
  10 +import org.apache.poi.hssf.usermodel.HSSFCellStyle;
  11 +import org.apache.poi.hssf.usermodel.HSSFFont;
  12 +import org.apache.poi.hssf.usermodel.HSSFRow;
  13 +import org.apache.poi.hssf.usermodel.HSSFSheet;
  14 +import org.apache.poi.hssf.usermodel.HSSFWorkbook;
  15 +import org.apache.poi.hssf.util.HSSFColor;
  16 +
  17 +/**
  18 + * @ClassName: ExcelUtil.java
  19 + * @Description: TODO()
  20 + * @author: YouRuiFeng
  21 + * @date: 2017-8-13 下午3:00:44
  22 + *
  23 + */
  24 +
  25 +@SuppressWarnings("deprecation")
  26 +public class ExcelUtil {
  27 +
  28 +
  29 + public void buildExcelDocument(Map<String, Object> map, String exportName, HttpServletResponse response) throws Exception {
  30 + // 声明一个工作薄
  31 + HSSFWorkbook workbook = new HSSFWorkbook();
  32 + /* // 生成一个表格
  33 + HSSFSheet sheet = workbook.createSheet(title);
  34 + // 设置表格默认列宽度为15个字节
  35 + sheet.setDefaultColumnWidth((short) 15);*/
  36 + // 生成一个样式
  37 + HSSFCellStyle style = workbook.createCellStyle();
  38 + // 设置这些样式
  39 + style.setFillForegroundColor(HSSFColor.SKY_BLUE.index);
  40 + style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
  41 + style.setBorderBottom(HSSFCellStyle.BORDER_THIN);
  42 + style.setBorderLeft(HSSFCellStyle.BORDER_THIN);
  43 + style.setBorderRight(HSSFCellStyle.BORDER_THIN);
  44 + style.setBorderTop(HSSFCellStyle.BORDER_THIN);
  45 + style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
  46 + // 生成一个字体
  47 + HSSFFont font = workbook.createFont();
  48 + font.setColor(HSSFColor.VIOLET.index);
  49 + font.setFontHeightInPoints((short) 12);
  50 + font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
  51 + // 把字体应用到当前的样式
  52 + style.setFont(font);
  53 + HSSFCellStyle cellStyle =workbook.createCellStyle();
  54 + cellStyle.setFont(font);
  55 + cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER); //水平布局:居中
  56 + cellStyle.setWrapText(true);
  57 +
  58 + //获取sheet名称
  59 + String sheetName = (null==map.get("sheetName"))?"Sheet":map.get("sheetName").toString();
  60 + List<String> titleList = (List<String>) map.get("title");
  61 + Map<String,List<String>> content = (Map<String,List<String>>)map.get("content");
  62 + //设置wordsheet名
  63 + HSSFSheet sheet = workbook.createSheet(sheetName);
  64 + //创建第一行
  65 + HSSFRow row = sheet.createRow(0);
  66 + //设置 ABCD列名
  67 + sheet.autoSizeColumn((short)0);
  68 + for(int i=0;i<titleList.size();i++){
  69 + row.createCell(i).setCellValue(titleList.get(i));
  70 + row.setRowStyle(cellStyle);
  71 + }
  72 + for(int i=1;i<=content.size();i++){
  73 + sheet.autoSizeColumn((short)i); //调整第一列宽度
  74 + HSSFRow row_ = sheet.createRow(i);
  75 + List<String> temp = content.get(i+"");
  76 + for(int j=0;j<temp.size();j++){
  77 + row_.createCell(j).setCellValue(temp.get(j));
  78 + row_.setRowStyle(cellStyle);
  79 + }
  80 + }
  81 + String filename =exportName+ ".xls";
  82 + response.reset();//设置为没有缓存
  83 + response.setContentType("application/vnd.ms-excel;charset=utf-8");
  84 + response.setHeader("Content-disposition", "attachment;filename=" + URLEncoder.encode(filename, "UTF-8"));
  85 + OutputStream ouputStream = response.getOutputStream();
  86 + workbook.write(ouputStream);
  87 + ouputStream.flush();
  88 + ouputStream.close();
  89 +
  90 + }
  91 +}
src/main/resources/datatools/ktrs/carsDataInput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</name>  
5 - <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>  
6 - <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - <parameter>  
13 - <name>erroroutputdir</name>  
14 - <default_value/>  
15 - <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>filepath</name>  
19 - <default_value/>  
20 - <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>  
21 - </parameter>  
22 - </parameters>  
23 - <log>  
24 -<trans-log-table><connection/>  
25 -<schema/>  
26 -<table/>  
27 -<size_limit_lines/>  
28 -<interval/>  
29 -<timeout_days/>  
30 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>  
31 -<perf-log-table><connection/>  
32 -<schema/>  
33 -<table/>  
34 -<interval/>  
35 -<timeout_days/>  
36 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>  
37 -<channel-log-table><connection/>  
38 -<schema/>  
39 -<table/>  
40 -<timeout_days/>  
41 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>  
42 -<step-log-table><connection/>  
43 -<schema/>  
44 -<table/>  
45 -<timeout_days/>  
46 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>  
47 -<metrics-log-table><connection/>  
48 -<schema/>  
49 -<table/>  
50 -<timeout_days/>  
51 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>  
52 - </log>  
53 - <maxdate>  
54 - <connection/>  
55 - <table/>  
56 - <field/>  
57 - <offset>0.0</offset>  
58 - <maxdiff>0.0</maxdiff>  
59 - </maxdate>  
60 - <size_rowset>10000</size_rowset>  
61 - <sleep_time_empty>50</sleep_time_empty>  
62 - <sleep_time_full>50</sleep_time_full>  
63 - <unique_connections>N</unique_connections>  
64 - <feedback_shown>Y</feedback_shown>  
65 - <feedback_size>50000</feedback_size>  
66 - <using_thread_priorities>Y</using_thread_priorities>  
67 - <shared_objects_file/>  
68 - <capture_step_performance>N</capture_step_performance>  
69 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
70 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
71 - <dependencies>  
72 - </dependencies>  
73 - <partitionschemas>  
74 - </partitionschemas>  
75 - <slaveservers>  
76 - </slaveservers>  
77 - <clusterschemas>  
78 - </clusterschemas>  
79 - <created_user>-</created_user>  
80 - <created_date>2016&#x2f;06&#x2f;23 17&#x3a;44&#x3a;46.781</created_date>  
81 - <modified_user>-</modified_user>  
82 - <modified_date>2016&#x2f;06&#x2f;23 17&#x3a;44&#x3a;46.781</modified_date>  
83 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
84 - <is_key_private>N</is_key_private>  
85 - </info>  
86 - <notepads>  
87 - </notepads>  
88 - <connection>  
89 - <name>192.168.168.1_jwgl_dw</name>  
90 - <server>192.168.168.1</server>  
91 - <type>ORACLE</type>  
92 - <access>Native</access>  
93 - <database>orcl</database>  
94 - <port>1521</port>  
95 - <username>jwgl_dw</username>  
96 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
97 - <servername/>  
98 - <data_tablespace/>  
99 - <index_tablespace/>  
100 - <attributes>  
101 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
102 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
103 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
104 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
105 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
106 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
107 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
108 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
109 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
110 - </attributes>  
111 - </connection>  
112 - <connection>  
113 - <name>bus_control_variable</name>  
114 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
115 - <type>MYSQL</type>  
116 - <access>Native</access>  
117 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
118 - <port>3306</port>  
119 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
120 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
121 - <servername/>  
122 - <data_tablespace/>  
123 - <index_tablespace/>  
124 - <attributes>  
125 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
126 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
127 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
128 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
129 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
130 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
131 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
132 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
133 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
134 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
135 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
136 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
137 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
138 - </attributes>  
139 - </connection>  
140 - <connection>  
141 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
142 - <server>localhost</server>  
143 - <type>MYSQL</type>  
144 - <access>Native</access>  
145 - <database>control</database>  
146 - <port>3306</port>  
147 - <username>root</username>  
148 - <password>Encrypted </password>  
149 - <servername/>  
150 - <data_tablespace/>  
151 - <index_tablespace/>  
152 - <attributes>  
153 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
154 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
155 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
156 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
157 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
158 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
159 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
160 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
161 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
162 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
163 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
164 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
165 - </attributes>  
166 - </connection>  
167 - <connection>  
168 - <name>bus_control_&#x672c;&#x673a;</name>  
169 - <server>localhost</server>  
170 - <type>MYSQL</type>  
171 - <access>Native</access>  
172 - <database>control</database>  
173 - <port>3306</port>  
174 - <username>root</username>  
175 - <password>Encrypted </password>  
176 - <servername/>  
177 - <data_tablespace/>  
178 - <index_tablespace/>  
179 - <attributes>  
180 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
181 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
182 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
183 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
184 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
185 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
186 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
187 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
188 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
189 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
190 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
191 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
192 - </attributes>  
193 - </connection>  
194 - <connection>  
195 - <name>xlab_mysql_youle</name>  
196 - <server>101.231.124.8</server>  
197 - <type>MYSQL</type>  
198 - <access>Native</access>  
199 - <database>xlab_youle</database>  
200 - <port>45687</port>  
201 - <username>xlab-youle</username>  
202 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
203 - <servername/>  
204 - <data_tablespace/>  
205 - <index_tablespace/>  
206 - <attributes>  
207 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
208 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
209 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
210 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
211 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
212 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
213 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
214 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
215 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
216 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
217 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
218 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
219 - </attributes>  
220 - </connection>  
221 - <connection>  
222 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
223 - <server>localhost</server>  
224 - <type>MYSQL</type>  
225 - <access>Native</access>  
226 - <database>xlab_youle</database>  
227 - <port>3306</port>  
228 - <username>root</username>  
229 - <password>Encrypted </password>  
230 - <servername/>  
231 - <data_tablespace/>  
232 - <index_tablespace/>  
233 - <attributes>  
234 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
235 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
236 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
237 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
238 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
239 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
240 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
241 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
242 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
243 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
244 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
245 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
246 - </attributes>  
247 - </connection>  
248 - <connection>  
249 - <name>xlab_youle</name>  
250 - <server/>  
251 - <type>MYSQL</type>  
252 - <access>JNDI</access>  
253 - <database>xlab_youle</database>  
254 - <port>1521</port>  
255 - <username/>  
256 - <password>Encrypted </password>  
257 - <servername/>  
258 - <data_tablespace/>  
259 - <index_tablespace/>  
260 - <attributes>  
261 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
262 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
264 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
265 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
266 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
267 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
268 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
269 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
270 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
271 - </attributes>  
272 - </connection>  
273 - <order>  
274 - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>  
275 - <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</to><enabled>Y</enabled> </hop>  
276 - <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</to><enabled>Y</enabled> </hop>  
277 - </order>  
278 - <step>  
279 - <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>  
280 - <type>ExcelInput</type>  
281 - <description/>  
282 - <distribute>Y</distribute>  
283 - <custom_distribution/>  
284 - <copies>1</copies>  
285 - <partitioning>  
286 - <method>none</method>  
287 - <schema_name/>  
288 - </partitioning>  
289 - <header>Y</header>  
290 - <noempty>Y</noempty>  
291 - <stoponempty>N</stoponempty>  
292 - <filefield/>  
293 - <sheetfield/>  
294 - <sheetrownumfield/>  
295 - <rownumfield/>  
296 - <sheetfield/>  
297 - <filefield/>  
298 - <limit>0</limit>  
299 - <encoding/>  
300 - <add_to_result_filenames>Y</add_to_result_filenames>  
301 - <accept_filenames>Y</accept_filenames>  
302 - <accept_field>filepath_</accept_field>  
303 - <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>  
304 - <file>  
305 - <name/>  
306 - <filemask/>  
307 - <exclude_filemask/>  
308 - <file_required>N</file_required>  
309 - <include_subfolders>N</include_subfolders>  
310 - </file>  
311 - <fields>  
312 - <field>  
313 - <name>&#x8f66;&#x724c;&#x53f7;</name>  
314 - <type>String</type>  
315 - <length>-1</length>  
316 - <precision>-1</precision>  
317 - <trim_type>none</trim_type>  
318 - <repeat>N</repeat>  
319 - <format/>  
320 - <currency/>  
321 - <decimal/>  
322 - <group/>  
323 - </field>  
324 - <field>  
325 - <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>  
326 - <type>String</type>  
327 - <length>-1</length>  
328 - <precision>-1</precision>  
329 - <trim_type>none</trim_type>  
330 - <repeat>N</repeat>  
331 - <format/>  
332 - <currency/>  
333 - <decimal/>  
334 - <group/>  
335 - </field>  
336 - <field>  
337 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
338 - <type>String</type>  
339 - <length>-1</length>  
340 - <precision>-1</precision>  
341 - <trim_type>none</trim_type>  
342 - <repeat>N</repeat>  
343 - <format/>  
344 - <currency/>  
345 - <decimal/>  
346 - <group/>  
347 - </field>  
348 - <field>  
349 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>  
350 - <type>String</type>  
351 - <length>-1</length>  
352 - <precision>-1</precision>  
353 - <trim_type>none</trim_type>  
354 - <repeat>N</repeat>  
355 - <format/>  
356 - <currency/>  
357 - <decimal/>  
358 - <group/>  
359 - </field>  
360 - <field>  
361 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
362 - <type>String</type>  
363 - <length>-1</length>  
364 - <precision>-1</precision>  
365 - <trim_type>none</trim_type>  
366 - <repeat>N</repeat>  
367 - <format/>  
368 - <currency/>  
369 - <decimal/>  
370 - <group/>  
371 - </field>  
372 - <field>  
373 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>  
374 - <type>String</type>  
375 - <length>-1</length>  
376 - <precision>-1</precision>  
377 - <trim_type>none</trim_type>  
378 - <repeat>N</repeat>  
379 - <format/>  
380 - <currency/>  
381 - <decimal/>  
382 - <group/>  
383 - </field>  
384 - <field>  
385 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
386 - <type>String</type>  
387 - <length>-1</length>  
388 - <precision>-1</precision>  
389 - <trim_type>none</trim_type>  
390 - <repeat>N</repeat>  
391 - <format/>  
392 - <currency/>  
393 - <decimal/>  
394 - <group/>  
395 - </field>  
396 - <field>  
397 - <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>  
398 - <type>String</type>  
399 - <length>-1</length>  
400 - <precision>-1</precision>  
401 - <trim_type>none</trim_type>  
402 - <repeat>N</repeat>  
403 - <format/>  
404 - <currency/>  
405 - <decimal/>  
406 - <group/>  
407 - </field>  
408 - <field>  
409 - <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>  
410 - <type>String</type>  
411 - <length>-1</length>  
412 - <precision>-1</precision>  
413 - <trim_type>none</trim_type>  
414 - <repeat>N</repeat>  
415 - <format/>  
416 - <currency/>  
417 - <decimal/>  
418 - <group/>  
419 - </field>  
420 - </fields>  
421 - <sheets>  
422 - <sheet>  
423 - <name>&#x5de5;&#x4f5c;&#x8868;1</name>  
424 - <startrow>0</startrow>  
425 - <startcol>0</startcol>  
426 - </sheet>  
427 - </sheets>  
428 - <strict_types>N</strict_types>  
429 - <error_ignored>N</error_ignored>  
430 - <error_line_skipped>N</error_line_skipped>  
431 - <bad_line_files_destination_directory/>  
432 - <bad_line_files_extension>warning</bad_line_files_extension>  
433 - <error_line_files_destination_directory/>  
434 - <error_line_files_extension>error</error_line_files_extension>  
435 - <line_number_files_destination_directory/>  
436 - <line_number_files_extension>line</line_number_files_extension>  
437 - <shortFileFieldName/>  
438 - <pathFieldName/>  
439 - <hiddenFieldName/>  
440 - <lastModificationTimeFieldName/>  
441 - <uriNameFieldName/>  
442 - <rootUriNameFieldName/>  
443 - <extensionFieldName/>  
444 - <sizeFieldName/>  
445 - <spreadsheet_type>JXL</spreadsheet_type>  
446 - <cluster_schema/>  
447 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
448 - <xloc>131</xloc>  
449 - <yloc>58</yloc>  
450 - <draw>Y</draw>  
451 - </GUI>  
452 - </step>  
453 -  
454 - <step>  
455 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</name>  
456 - <type>InsertUpdate</type>  
457 - <description/>  
458 - <distribute>Y</distribute>  
459 - <custom_distribution/>  
460 - <copies>1</copies>  
461 - <partitioning>  
462 - <method>none</method>  
463 - <schema_name/>  
464 - </partitioning>  
465 - <connection>bus_control_variable</connection>  
466 - <commit>1000</commit>  
467 - <update_bypassed>N</update_bypassed>  
468 - <lookup>  
469 - <schema/>  
470 - <table>bsth_c_cars</table>  
471 - <key>  
472 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
473 - <field>inside_code</field>  
474 - <condition>&#x3d;</condition>  
475 - <name2/>  
476 - </key>  
477 - <value>  
478 - <name>car_plate</name>  
479 - <rename>&#x8f66;&#x724c;&#x53f7;</rename>  
480 - <update>Y</update>  
481 - </value>  
482 - <value>  
483 - <name>car_code</name>  
484 - <rename>&#x8f66;&#x8f86;&#x7f16;&#x7801;</rename>  
485 - <update>Y</update>  
486 - </value>  
487 - <value>  
488 - <name>inside_code</name>  
489 - <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>  
490 - <update>Y</update>  
491 - </value>  
492 - <value>  
493 - <name>company</name>  
494 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>  
495 - <update>Y</update>  
496 - </value>  
497 - <value>  
498 - <name>business_code</name>  
499 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
500 - <update>Y</update>  
501 - </value>  
502 - <value>  
503 - <name>branche_company</name>  
504 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>  
505 - <update>Y</update>  
506 - </value>  
507 - <value>  
508 - <name>branche_company_code</name>  
509 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
510 - <update>Y</update>  
511 - </value>  
512 - <value>  
513 - <name>supplier_name</name>  
514 - <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</rename>  
515 - <update>Y</update>  
516 - </value>  
517 - <value>  
518 - <name>equipment_code</name>  
519 - <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</rename>  
520 - <update>Y</update>  
521 - </value>  
522 - </lookup>  
523 - <cluster_schema/>  
524 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
525 - <xloc>516</xloc>  
526 - <yloc>138</yloc>  
527 - <draw>Y</draw>  
528 - </GUI>  
529 - </step>  
530 -  
531 - <step>  
532 - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>  
533 - <type>GetVariable</type>  
534 - <description/>  
535 - <distribute>Y</distribute>  
536 - <custom_distribution/>  
537 - <copies>1</copies>  
538 - <partitioning>  
539 - <method>none</method>  
540 - <schema_name/>  
541 - </partitioning>  
542 - <fields>  
543 - <field>  
544 - <name>filepath_</name>  
545 - <variable>&#x24;&#x7b;filepath&#x7d;</variable>  
546 - <type>String</type>  
547 - <format/>  
548 - <currency/>  
549 - <decimal/>  
550 - <group/>  
551 - <length>-1</length>  
552 - <precision>-1</precision>  
553 - <trim_type>none</trim_type>  
554 - </field>  
555 - <field>  
556 - <name>erroroutputdir_</name>  
557 - <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>  
558 - <type>String</type>  
559 - <format/>  
560 - <currency/>  
561 - <decimal/>  
562 - <group/>  
563 - <length>-1</length>  
564 - <precision>-1</precision>  
565 - <trim_type>none</trim_type>  
566 - </field>  
567 - </fields>  
568 - <cluster_schema/>  
569 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
570 - <xloc>134</xloc>  
571 - <yloc>183</yloc>  
572 - <draw>Y</draw>  
573 - </GUI>  
574 - </step>  
575 -  
576 - <step>  
577 - <name>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</name>  
578 - <type>ExcelOutput</type>  
579 - <description/>  
580 - <distribute>Y</distribute>  
581 - <custom_distribution/>  
582 - <copies>1</copies>  
583 - <partitioning>  
584 - <method>none</method>  
585 - <schema_name/>  
586 - </partitioning>  
587 - <header>Y</header>  
588 - <footer>N</footer>  
589 - <encoding/>  
590 - <append>N</append>  
591 - <add_to_result_filenames>Y</add_to_result_filenames>  
592 - <file>  
593 - <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</name>  
594 - <extention>xls</extention>  
595 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
596 - <create_parent_folder>N</create_parent_folder>  
597 - <split>N</split>  
598 - <add_date>N</add_date>  
599 - <add_time>N</add_time>  
600 - <SpecifyFormat>N</SpecifyFormat>  
601 - <date_time_format/>  
602 - <sheetname>Sheet1</sheetname>  
603 - <autosizecolums>N</autosizecolums>  
604 - <nullisblank>N</nullisblank>  
605 - <protect_sheet>N</protect_sheet>  
606 - <password>Encrypted </password>  
607 - <splitevery>0</splitevery>  
608 - <usetempfiles>N</usetempfiles>  
609 - <tempdirectory/>  
610 - </file>  
611 - <template>  
612 - <enabled>N</enabled>  
613 - <append>N</append>  
614 - <filename>template.xls</filename>  
615 - </template>  
616 - <fields>  
617 - <field>  
618 - <name>&#x8f66;&#x724c;&#x53f7;</name>  
619 - <type>String</type>  
620 - <format/>  
621 - </field>  
622 - <field>  
623 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
624 - <type>String</type>  
625 - <format/>  
626 - </field>  
627 - <field>  
628 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>  
629 - <type>String</type>  
630 - <format/>  
631 - </field>  
632 - <field>  
633 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
634 - <type>String</type>  
635 - <format/>  
636 - </field>  
637 - <field>  
638 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>  
639 - <type>String</type>  
640 - <format/>  
641 - </field>  
642 - <field>  
643 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
644 - <type>String</type>  
645 - <format/>  
646 - </field>  
647 - <field>  
648 - <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>  
649 - <type>String</type>  
650 - <format/>  
651 - </field>  
652 - <field>  
653 - <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>  
654 - <type>String</type>  
655 - <format/>  
656 - </field>  
657 - <field>  
658 - <name>error_count</name>  
659 - <type>Integer</type>  
660 - <format/>  
661 - </field>  
662 - <field>  
663 - <name>error_desc</name>  
664 - <type>String</type>  
665 - <format/>  
666 - </field>  
667 - <field>  
668 - <name>error_column1</name>  
669 - <type>String</type>  
670 - <format/>  
671 - </field>  
672 - <field>  
673 - <name>error_column2</name>  
674 - <type>String</type>  
675 - <format/>  
676 - </field>  
677 - </fields>  
678 - <custom>  
679 - <header_font_name>arial</header_font_name>  
680 - <header_font_size>10</header_font_size>  
681 - <header_font_bold>N</header_font_bold>  
682 - <header_font_italic>N</header_font_italic>  
683 - <header_font_underline>no</header_font_underline>  
684 - <header_font_orientation>horizontal</header_font_orientation>  
685 - <header_font_color>black</header_font_color>  
686 - <header_background_color>none</header_background_color>  
687 - <header_row_height>255</header_row_height>  
688 - <header_alignment>left</header_alignment>  
689 - <header_image/>  
690 - <row_font_name>arial</row_font_name>  
691 - <row_font_size>10</row_font_size>  
692 - <row_font_color>black</row_font_color>  
693 - <row_background_color>none</row_background_color>  
694 - </custom>  
695 - <cluster_schema/>  
696 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
697 - <xloc>328</xloc>  
698 - <yloc>140</yloc>  
699 - <draw>Y</draw>  
700 - </GUI>  
701 - </step>  
702 -  
703 - <step_error_handling>  
704 - <error>  
705 - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</source_step>  
706 - <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</target_step>  
707 - <is_enabled>Y</is_enabled>  
708 - <nr_valuename>error_count</nr_valuename>  
709 - <descriptions_valuename>error_desc</descriptions_valuename>  
710 - <fields_valuename>error_column1</fields_valuename>  
711 - <codes_valuename>error_column2</codes_valuename>  
712 - <max_errors/>  
713 - <max_pct_errors/>  
714 - <min_pct_rows/>  
715 - </error>  
716 - </step_error_handling>  
717 - <slave-step-copy-partition-distribution>  
718 -</slave-step-copy-partition-distribution>  
719 - <slave_transformation>N</slave_transformation>  
720 -  
721 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</name>
  5 + <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value/>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;06&#x2f;23 17&#x3a;44&#x3a;46.781</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;23 17&#x3a;44&#x3a;46.781</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + </notepads>
  88 + <connection>
  89 + <name>192.168.168.1_jwgl_dw</name>
  90 + <server>192.168.168.1</server>
  91 + <type>ORACLE</type>
  92 + <access>Native</access>
  93 + <database>orcl</database>
  94 + <port>1521</port>
  95 + <username>jwgl_dw</username>
  96 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  97 + <servername/>
  98 + <data_tablespace/>
  99 + <index_tablespace/>
  100 + <attributes>
  101 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  102 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  103 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  104 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  105 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  106 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  107 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  108 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  109 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  110 + </attributes>
  111 + </connection>
  112 + <connection>
  113 + <name>bus_control_variable</name>
  114 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  115 + <type>MYSQL</type>
  116 + <access>Native</access>
  117 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  118 + <port>3306</port>
  119 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  120 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  121 + <servername/>
  122 + <data_tablespace/>
  123 + <index_tablespace/>
  124 + <attributes>
  125 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  126 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  127 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  130 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  131 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  132 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  133 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  134 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  135 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  136 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  137 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  138 + </attributes>
  139 + </connection>
  140 + <connection>
  141 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  142 + <server>localhost</server>
  143 + <type>MYSQL</type>
  144 + <access>Native</access>
  145 + <database>control</database>
  146 + <port>3306</port>
  147 + <username>root</username>
  148 + <password>Encrypted </password>
  149 + <servername/>
  150 + <data_tablespace/>
  151 + <index_tablespace/>
  152 + <attributes>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  154 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  158 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  159 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  160 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_&#x672c;&#x673a;</name>
  169 + <server>localhost</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>control</database>
  173 + <port>3306</port>
  174 + <username>root</username>
  175 + <password>Encrypted </password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  185 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  186 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  187 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  192 + </attributes>
  193 + </connection>
  194 + <connection>
  195 + <name>xlab_mysql_youle</name>
  196 + <server>101.231.124.8</server>
  197 + <type>MYSQL</type>
  198 + <access>Native</access>
  199 + <database>xlab_youle</database>
  200 + <port>45687</port>
  201 + <username>xlab-youle</username>
  202 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  203 + <servername/>
  204 + <data_tablespace/>
  205 + <index_tablespace/>
  206 + <attributes>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  208 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  212 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  213 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  214 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  215 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  217 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  218 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  219 + </attributes>
  220 + </connection>
  221 + <connection>
  222 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  223 + <server>localhost</server>
  224 + <type>MYSQL</type>
  225 + <access>Native</access>
  226 + <database>xlab_youle</database>
  227 + <port>3306</port>
  228 + <username>root</username>
  229 + <password>Encrypted </password>
  230 + <servername/>
  231 + <data_tablespace/>
  232 + <index_tablespace/>
  233 + <attributes>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  235 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  239 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  240 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  241 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  242 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  243 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  245 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  246 + </attributes>
  247 + </connection>
  248 + <connection>
  249 + <name>xlab_youle</name>
  250 + <server/>
  251 + <type>MYSQL</type>
  252 + <access>JNDI</access>
  253 + <database>xlab_youle</database>
  254 + <port>1521</port>
  255 + <username/>
  256 + <password>Encrypted </password>
  257 + <servername/>
  258 + <data_tablespace/>
  259 + <index_tablespace/>
  260 + <attributes>
  261 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  264 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  265 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  266 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  267 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  268 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  270 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  271 + </attributes>
  272 + </connection>
  273 + <order>
  274 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</to><enabled>Y</enabled> </hop>
  275 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  276 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x5185;&#x90e8;&#x7f16;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  277 + <hop> <from>&#x5185;&#x90e8;&#x7f16;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
  278 + <hop> <from>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</from><to>&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  279 + <hop> <from>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  280 + <hop> <from>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  281 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  282 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x8f66;&#x8f86;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>
  283 + <hop> <from>&#x8f66;&#x8f86;&#x7f16;&#x7801;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</to><enabled>Y</enabled> </hop>
  284 + </order>
  285 + <step>
  286 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  287 + <type>ExcelInput</type>
  288 + <description/>
  289 + <distribute>Y</distribute>
  290 + <custom_distribution/>
  291 + <copies>1</copies>
  292 + <partitioning>
  293 + <method>none</method>
  294 + <schema_name/>
  295 + </partitioning>
  296 + <header>Y</header>
  297 + <noempty>Y</noempty>
  298 + <stoponempty>N</stoponempty>
  299 + <filefield/>
  300 + <sheetfield/>
  301 + <sheetrownumfield/>
  302 + <rownumfield/>
  303 + <sheetfield/>
  304 + <filefield/>
  305 + <limit>0</limit>
  306 + <encoding/>
  307 + <add_to_result_filenames>Y</add_to_result_filenames>
  308 + <accept_filenames>Y</accept_filenames>
  309 + <accept_field>filepath_</accept_field>
  310 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  311 + <file>
  312 + <name/>
  313 + <filemask/>
  314 + <exclude_filemask/>
  315 + <file_required>N</file_required>
  316 + <include_subfolders>N</include_subfolders>
  317 + </file>
  318 + <fields>
  319 + <field>
  320 + <name>&#x8f66;&#x724c;&#x53f7;</name>
  321 + <type>String</type>
  322 + <length>-1</length>
  323 + <precision>-1</precision>
  324 + <trim_type>none</trim_type>
  325 + <repeat>N</repeat>
  326 + <format/>
  327 + <currency/>
  328 + <decimal/>
  329 + <group/>
  330 + </field>
  331 + <field>
  332 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  333 + <type>String</type>
  334 + <length>-1</length>
  335 + <precision>-1</precision>
  336 + <trim_type>none</trim_type>
  337 + <repeat>N</repeat>
  338 + <format/>
  339 + <currency/>
  340 + <decimal/>
  341 + <group/>
  342 + </field>
  343 + <field>
  344 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  345 + <type>String</type>
  346 + <length>-1</length>
  347 + <precision>-1</precision>
  348 + <trim_type>none</trim_type>
  349 + <repeat>N</repeat>
  350 + <format/>
  351 + <currency/>
  352 + <decimal/>
  353 + <group/>
  354 + </field>
  355 + <field>
  356 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  357 + <type>String</type>
  358 + <length>-1</length>
  359 + <precision>-1</precision>
  360 + <trim_type>none</trim_type>
  361 + <repeat>N</repeat>
  362 + <format/>
  363 + <currency/>
  364 + <decimal/>
  365 + <group/>
  366 + </field>
  367 + <field>
  368 + <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
  369 + <type>String</type>
  370 + <length>-1</length>
  371 + <precision>-1</precision>
  372 + <trim_type>none</trim_type>
  373 + <repeat>N</repeat>
  374 + <format/>
  375 + <currency/>
  376 + <decimal/>
  377 + <group/>
  378 + </field>
  379 + <field>
  380 + <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
  381 + <type>String</type>
  382 + <length>-1</length>
  383 + <precision>-1</precision>
  384 + <trim_type>none</trim_type>
  385 + <repeat>N</repeat>
  386 + <format/>
  387 + <currency/>
  388 + <decimal/>
  389 + <group/>
  390 + </field>
  391 + </fields>
  392 + <sheets>
  393 + <sheet>
  394 + <name>&#x5de5;&#x4f5c;&#x8868;1</name>
  395 + <startrow>0</startrow>
  396 + <startcol>0</startcol>
  397 + </sheet>
  398 + </sheets>
  399 + <strict_types>N</strict_types>
  400 + <error_ignored>N</error_ignored>
  401 + <error_line_skipped>N</error_line_skipped>
  402 + <bad_line_files_destination_directory/>
  403 + <bad_line_files_extension>warning</bad_line_files_extension>
  404 + <error_line_files_destination_directory/>
  405 + <error_line_files_extension>error</error_line_files_extension>
  406 + <line_number_files_destination_directory/>
  407 + <line_number_files_extension>line</line_number_files_extension>
  408 + <shortFileFieldName/>
  409 + <pathFieldName/>
  410 + <hiddenFieldName/>
  411 + <lastModificationTimeFieldName/>
  412 + <uriNameFieldName/>
  413 + <rootUriNameFieldName/>
  414 + <extensionFieldName/>
  415 + <sizeFieldName/>
  416 + <spreadsheet_type>JXL</spreadsheet_type>
  417 + <cluster_schema/>
  418 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  419 + <xloc>218</xloc>
  420 + <yloc>59</yloc>
  421 + <draw>Y</draw>
  422 + </GUI>
  423 + </step>
  424 +
  425 + <step>
  426 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</name>
  427 + <type>InsertUpdate</type>
  428 + <description/>
  429 + <distribute>Y</distribute>
  430 + <custom_distribution/>
  431 + <copies>1</copies>
  432 + <partitioning>
  433 + <method>none</method>
  434 + <schema_name/>
  435 + </partitioning>
  436 + <connection>bus_control_variable</connection>
  437 + <commit>500</commit>
  438 + <update_bypassed>N</update_bypassed>
  439 + <lookup>
  440 + <schema/>
  441 + <table>bsth_c_cars</table>
  442 + <key>
  443 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  444 + <field>inside_code</field>
  445 + <condition>&#x3d;</condition>
  446 + <name2/>
  447 + </key>
  448 + <value>
  449 + <name>car_plate</name>
  450 + <rename>&#x8f66;&#x724c;&#x53f7;</rename>
  451 + <update>Y</update>
  452 + </value>
  453 + <value>
  454 + <name>car_code</name>
  455 + <rename>cl_code</rename>
  456 + <update>Y</update>
  457 + </value>
  458 + <value>
  459 + <name>inside_code</name>
  460 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  461 + <update>Y</update>
  462 + </value>
  463 + <value>
  464 + <name>company</name>
  465 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  466 + <update>Y</update>
  467 + </value>
  468 + <value>
  469 + <name>business_code</name>
  470 + <rename>gs_code</rename>
  471 + <update>Y</update>
  472 + </value>
  473 + <value>
  474 + <name>branche_company</name>
  475 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  476 + <update>Y</update>
  477 + </value>
  478 + <value>
  479 + <name>branche_company_code</name>
  480 + <rename>fgs_code</rename>
  481 + <update>Y</update>
  482 + </value>
  483 + <value>
  484 + <name>supplier_name</name>
  485 + <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</rename>
  486 + <update>Y</update>
  487 + </value>
  488 + <value>
  489 + <name>equipment_code</name>
  490 + <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</rename>
  491 + <update>Y</update>
  492 + </value>
  493 + </lookup>
  494 + <cluster_schema/>
  495 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  496 + <xloc>690</xloc>
  497 + <yloc>393</yloc>
  498 + <draw>Y</draw>
  499 + </GUI>
  500 + </step>
  501 +
  502 + <step>
  503 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  504 + <type>GetVariable</type>
  505 + <description/>
  506 + <distribute>Y</distribute>
  507 + <custom_distribution/>
  508 + <copies>1</copies>
  509 + <partitioning>
  510 + <method>none</method>
  511 + <schema_name/>
  512 + </partitioning>
  513 + <fields>
  514 + <field>
  515 + <name>filepath_</name>
  516 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  517 + <type>String</type>
  518 + <format/>
  519 + <currency/>
  520 + <decimal/>
  521 + <group/>
  522 + <length>-1</length>
  523 + <precision>-1</precision>
  524 + <trim_type>none</trim_type>
  525 + </field>
  526 + <field>
  527 + <name>erroroutputdir_</name>
  528 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  529 + <type>String</type>
  530 + <format/>
  531 + <currency/>
  532 + <decimal/>
  533 + <group/>
  534 + <length>-1</length>
  535 + <precision>-1</precision>
  536 + <trim_type>none</trim_type>
  537 + </field>
  538 + </fields>
  539 + <cluster_schema/>
  540 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  541 + <xloc>70</xloc>
  542 + <yloc>59</yloc>
  543 + <draw>Y</draw>
  544 + </GUI>
  545 + </step>
  546 +
  547 + <step>
  548 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</name>
  549 + <type>ExcelOutput</type>
  550 + <description/>
  551 + <distribute>Y</distribute>
  552 + <custom_distribution/>
  553 + <copies>1</copies>
  554 + <partitioning>
  555 + <method>none</method>
  556 + <schema_name/>
  557 + </partitioning>
  558 + <header>Y</header>
  559 + <footer>N</footer>
  560 + <encoding/>
  561 + <append>N</append>
  562 + <add_to_result_filenames>Y</add_to_result_filenames>
  563 + <file>
  564 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</name>
  565 + <extention>xls</extention>
  566 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  567 + <create_parent_folder>N</create_parent_folder>
  568 + <split>N</split>
  569 + <add_date>N</add_date>
  570 + <add_time>N</add_time>
  571 + <SpecifyFormat>N</SpecifyFormat>
  572 + <date_time_format/>
  573 + <sheetname>Sheet1</sheetname>
  574 + <autosizecolums>N</autosizecolums>
  575 + <nullisblank>N</nullisblank>
  576 + <protect_sheet>N</protect_sheet>
  577 + <password>Encrypted </password>
  578 + <splitevery>0</splitevery>
  579 + <usetempfiles>N</usetempfiles>
  580 + <tempdirectory/>
  581 + </file>
  582 + <template>
  583 + <enabled>N</enabled>
  584 + <append>N</append>
  585 + <filename>template.xls</filename>
  586 + </template>
  587 + <fields>
  588 + <field>
  589 + <name>&#x8f66;&#x724c;&#x53f7;</name>
  590 + <type>String</type>
  591 + <format/>
  592 + </field>
  593 + <field>
  594 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  595 + <type>String</type>
  596 + <format/>
  597 + </field>
  598 + <field>
  599 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  600 + <type>String</type>
  601 + <format/>
  602 + </field>
  603 + <field>
  604 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  605 + <type>String</type>
  606 + <format/>
  607 + </field>
  608 + <field>
  609 + <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
  610 + <type>String</type>
  611 + <format/>
  612 + </field>
  613 + <field>
  614 + <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
  615 + <type>String</type>
  616 + <format/>
  617 + </field>
  618 + <field>
  619 + <name>error_count</name>
  620 + <type>Integer</type>
  621 + <format/>
  622 + </field>
  623 + <field>
  624 + <name>error_desc</name>
  625 + <type>String</type>
  626 + <format/>
  627 + </field>
  628 + <field>
  629 + <name>error_column1</name>
  630 + <type>String</type>
  631 + <format/>
  632 + </field>
  633 + <field>
  634 + <name>error_column2</name>
  635 + <type>String</type>
  636 + <format/>
  637 + </field>
  638 + </fields>
  639 + <custom>
  640 + <header_font_name>arial</header_font_name>
  641 + <header_font_size>10</header_font_size>
  642 + <header_font_bold>N</header_font_bold>
  643 + <header_font_italic>N</header_font_italic>
  644 + <header_font_underline>no</header_font_underline>
  645 + <header_font_orientation>horizontal</header_font_orientation>
  646 + <header_font_color>black</header_font_color>
  647 + <header_background_color>none</header_background_color>
  648 + <header_row_height>255</header_row_height>
  649 + <header_alignment>left</header_alignment>
  650 + <header_image/>
  651 + <row_font_name>arial</row_font_name>
  652 + <row_font_size>10</row_font_size>
  653 + <row_font_color>black</row_font_color>
  654 + <row_background_color>none</row_background_color>
  655 + </custom>
  656 + <cluster_schema/>
  657 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  658 + <xloc>502</xloc>
  659 + <yloc>395</yloc>
  660 + <draw>Y</draw>
  661 + </GUI>
  662 + </step>
  663 +
  664 + <step>
  665 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  666 + <type>FilterRows</type>
  667 + <description/>
  668 + <distribute>Y</distribute>
  669 + <custom_distribution/>
  670 + <copies>1</copies>
  671 + <partitioning>
  672 + <method>none</method>
  673 + <schema_name/>
  674 + </partitioning>
  675 +<send_true_to/>
  676 +<send_false_to/>
  677 + <compare>
  678 +<condition>
  679 + <negated>N</negated>
  680 + <conditions>
  681 + <condition>
  682 + <negated>N</negated>
  683 + <leftvalue>&#x5185;&#x90e8;&#x7f16;&#x7801;</leftvalue>
  684 + <function>IS NOT NULL</function>
  685 + <rightvalue/>
  686 + </condition>
  687 + </conditions>
  688 + </condition>
  689 + </compare>
  690 + <cluster_schema/>
  691 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  692 + <xloc>218</xloc>
  693 + <yloc>164</yloc>
  694 + <draw>Y</draw>
  695 + </GUI>
  696 + </step>
  697 +
  698 + <step>
  699 + <name>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</name>
  700 + <type>ScriptValueMod</type>
  701 + <description/>
  702 + <distribute>Y</distribute>
  703 + <custom_distribution/>
  704 + <copies>1</copies>
  705 + <partitioning>
  706 + <method>none</method>
  707 + <schema_name/>
  708 + </partitioning>
  709 + <compatible>N</compatible>
  710 + <optimizationLevel>9</optimizationLevel>
  711 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  712 + <jsScript_name>Script 1</jsScript_name>
  713 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var up_code &#x3d; &#x27;88&#x27;&#x3b;</jsScript_script>
  714 + </jsScript> </jsScripts> <fields> <field> <name>up_code</name>
  715 + <rename>up_code</rename>
  716 + <type>String</type>
  717 + <length>-1</length>
  718 + <precision>-1</precision>
  719 + <replace>N</replace>
  720 + </field> </fields> <cluster_schema/>
  721 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  722 + <xloc>389</xloc>
  723 + <yloc>61</yloc>
  724 + <draw>Y</draw>
  725 + </GUI>
  726 + </step>
  727 +
  728 + <step>
  729 + <name>&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  730 + <type>DBLookup</type>
  731 + <description/>
  732 + <distribute>Y</distribute>
  733 + <custom_distribution/>
  734 + <copies>1</copies>
  735 + <partitioning>
  736 + <method>none</method>
  737 + <schema_name/>
  738 + </partitioning>
  739 + <connection>bus_control_variable</connection>
  740 + <cache>N</cache>
  741 + <cache_load_all>N</cache_load_all>
  742 + <cache_size>0</cache_size>
  743 + <lookup>
  744 + <schema/>
  745 + <table>bsth_c_business</table>
  746 + <orderby/>
  747 + <fail_on_multiple>N</fail_on_multiple>
  748 + <eat_row_on_failure>N</eat_row_on_failure>
  749 + <key>
  750 + <name>up_code</name>
  751 + <field>up_code</field>
  752 + <condition>&#x3d;</condition>
  753 + <name2/>
  754 + </key>
  755 + <key>
  756 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  757 + <field>business_name</field>
  758 + <condition>&#x3d;</condition>
  759 + <name2/>
  760 + </key>
  761 + <value>
  762 + <name>business_code</name>
  763 + <rename>gs_code</rename>
  764 + <default/>
  765 + <type>String</type>
  766 + </value>
  767 + </lookup>
  768 + <cluster_schema/>
  769 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  770 + <xloc>540</xloc>
  771 + <yloc>59</yloc>
  772 + <draw>Y</draw>
  773 + </GUI>
  774 + </step>
  775 +
  776 + <step>
  777 + <name>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  778 + <type>FilterRows</type>
  779 + <description/>
  780 + <distribute>Y</distribute>
  781 + <custom_distribution/>
  782 + <copies>1</copies>
  783 + <partitioning>
  784 + <method>none</method>
  785 + <schema_name/>
  786 + </partitioning>
  787 +<send_true_to/>
  788 +<send_false_to/>
  789 + <compare>
  790 +<condition>
  791 + <negated>N</negated>
  792 + <conditions>
  793 + <condition>
  794 + <negated>N</negated>
  795 + <leftvalue>gs_code</leftvalue>
  796 + <function>IS NOT NULL</function>
  797 + <rightvalue/>
  798 + </condition>
  799 + </conditions>
  800 + </condition>
  801 + </compare>
  802 + <cluster_schema/>
  803 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  804 + <xloc>542</xloc>
  805 + <yloc>164</yloc>
  806 + <draw>Y</draw>
  807 + </GUI>
  808 + </step>
  809 +
  810 + <step>
  811 + <name>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  812 + <type>DBLookup</type>
  813 + <description/>
  814 + <distribute>Y</distribute>
  815 + <custom_distribution/>
  816 + <copies>1</copies>
  817 + <partitioning>
  818 + <method>none</method>
  819 + <schema_name/>
  820 + </partitioning>
  821 + <connection>bus_control_variable</connection>
  822 + <cache>N</cache>
  823 + <cache_load_all>N</cache_load_all>
  824 + <cache_size>0</cache_size>
  825 + <lookup>
  826 + <schema/>
  827 + <table>bsth_c_business</table>
  828 + <orderby/>
  829 + <fail_on_multiple>N</fail_on_multiple>
  830 + <eat_row_on_failure>N</eat_row_on_failure>
  831 + <key>
  832 + <name>gs_code</name>
  833 + <field>up_code</field>
  834 + <condition>&#x3d;</condition>
  835 + <name2/>
  836 + </key>
  837 + <key>
  838 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  839 + <field>business_name</field>
  840 + <condition>&#x3d;</condition>
  841 + <name2/>
  842 + </key>
  843 + <value>
  844 + <name>business_code</name>
  845 + <rename>fgs_code</rename>
  846 + <default/>
  847 + <type>String</type>
  848 + </value>
  849 + </lookup>
  850 + <cluster_schema/>
  851 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  852 + <xloc>683</xloc>
  853 + <yloc>59</yloc>
  854 + <draw>Y</draw>
  855 + </GUI>
  856 + </step>
  857 +
  858 + <step>
  859 + <name>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  860 + <type>FilterRows</type>
  861 + <description/>
  862 + <distribute>Y</distribute>
  863 + <custom_distribution/>
  864 + <copies>1</copies>
  865 + <partitioning>
  866 + <method>none</method>
  867 + <schema_name/>
  868 + </partitioning>
  869 +<send_true_to/>
  870 +<send_false_to/>
  871 + <compare>
  872 +<condition>
  873 + <negated>N</negated>
  874 + <conditions>
  875 + <condition>
  876 + <negated>N</negated>
  877 + <leftvalue>fgs_code</leftvalue>
  878 + <function>IS NOT NULL</function>
  879 + <rightvalue/>
  880 + </condition>
  881 + </conditions>
  882 + </condition>
  883 + </compare>
  884 + <cluster_schema/>
  885 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  886 + <xloc>685</xloc>
  887 + <yloc>162</yloc>
  888 + <draw>Y</draw>
  889 + </GUI>
  890 + </step>
  891 +
  892 + <step>
  893 + <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
  894 + <type>ScriptValueMod</type>
  895 + <description/>
  896 + <distribute>Y</distribute>
  897 + <custom_distribution/>
  898 + <copies>1</copies>
  899 + <partitioning>
  900 + <method>none</method>
  901 + <schema_name/>
  902 + </partitioning>
  903 + <compatible>N</compatible>
  904 + <optimizationLevel>9</optimizationLevel>
  905 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  906 + <jsScript_name>Script 1</jsScript_name>
  907 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var cl_code &#x3d; gs_code &#x2b; &#x22;0&#x22; &#x2b; &#x5185;&#x90e8;&#x7f16;&#x7801;&#x3b;</jsScript_script>
  908 + </jsScript> </jsScripts> <fields> <field> <name>cl_code</name>
  909 + <rename>cl_code</rename>
  910 + <type>String</type>
  911 + <length>-1</length>
  912 + <precision>-1</precision>
  913 + <replace>N</replace>
  914 + </field> </fields> <cluster_schema/>
  915 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  916 + <xloc>688</xloc>
  917 + <yloc>273</yloc>
  918 + <draw>Y</draw>
  919 + </GUI>
  920 + </step>
  921 +
  922 + <step_error_handling>
  923 + <error>
  924 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</source_step>
  925 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</target_step>
  926 + <is_enabled>Y</is_enabled>
  927 + <nr_valuename>error_count</nr_valuename>
  928 + <descriptions_valuename>error_desc</descriptions_valuename>
  929 + <fields_valuename>error_column1</fields_valuename>
  930 + <codes_valuename>error_column2</codes_valuename>
  931 + <max_errors/>
  932 + <max_pct_errors/>
  933 + <min_pct_rows/>
  934 + </error>
  935 + </step_error_handling>
  936 + <slave-step-copy-partition-distribution>
  937 +</slave-step-copy-partition-distribution>
  938 + <slave_transformation>N</slave_transformation>
  939 +
  940 +</transformation>
src/main/resources/datatools/ktrs/carsDataOutput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>  
5 - <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</description>  
6 - <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - <parameter>  
13 - <name>filepath</name>  
14 - <default_value/>  
15 - <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>  
16 - </parameter>  
17 - </parameters>  
18 - <log>  
19 -<trans-log-table><connection/>  
20 -<schema/>  
21 -<table/>  
22 -<size_limit_lines/>  
23 -<interval/>  
24 -<timeout_days/>  
25 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>  
26 -<perf-log-table><connection/>  
27 -<schema/>  
28 -<table/>  
29 -<interval/>  
30 -<timeout_days/>  
31 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>  
32 -<channel-log-table><connection/>  
33 -<schema/>  
34 -<table/>  
35 -<timeout_days/>  
36 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>  
37 -<step-log-table><connection/>  
38 -<schema/>  
39 -<table/>  
40 -<timeout_days/>  
41 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>  
42 -<metrics-log-table><connection/>  
43 -<schema/>  
44 -<table/>  
45 -<timeout_days/>  
46 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>  
47 - </log>  
48 - <maxdate>  
49 - <connection/>  
50 - <table/>  
51 - <field/>  
52 - <offset>0.0</offset>  
53 - <maxdiff>0.0</maxdiff>  
54 - </maxdate>  
55 - <size_rowset>10000</size_rowset>  
56 - <sleep_time_empty>50</sleep_time_empty>  
57 - <sleep_time_full>50</sleep_time_full>  
58 - <unique_connections>N</unique_connections>  
59 - <feedback_shown>Y</feedback_shown>  
60 - <feedback_size>50000</feedback_size>  
61 - <using_thread_priorities>Y</using_thread_priorities>  
62 - <shared_objects_file/>  
63 - <capture_step_performance>N</capture_step_performance>  
64 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
65 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
66 - <dependencies>  
67 - </dependencies>  
68 - <partitionschemas>  
69 - </partitionschemas>  
70 - <slaveservers>  
71 - </slaveservers>  
72 - <clusterschemas>  
73 - </clusterschemas>  
74 - <created_user>-</created_user>  
75 - <created_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</created_date>  
76 - <modified_user>-</modified_user>  
77 - <modified_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</modified_date>  
78 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
79 - <is_key_private>N</is_key_private>  
80 - </info>  
81 - <notepads>  
82 - </notepads>  
83 - <connection>  
84 - <name>192.168.168.1_jwgl_dw</name>  
85 - <server>192.168.168.1</server>  
86 - <type>ORACLE</type>  
87 - <access>Native</access>  
88 - <database>orcl</database>  
89 - <port>1521</port>  
90 - <username>jwgl_dw</username>  
91 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
92 - <servername/>  
93 - <data_tablespace/>  
94 - <index_tablespace/>  
95 - <attributes>  
96 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
97 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
98 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
99 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
100 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
101 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
102 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
103 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
104 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
105 - </attributes>  
106 - </connection>  
107 - <connection>  
108 - <name>bus_control_variable</name>  
109 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
110 - <type>MYSQL</type>  
111 - <access>Native</access>  
112 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
113 - <port>3306</port>  
114 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
115 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
116 - <servername/>  
117 - <data_tablespace/>  
118 - <index_tablespace/>  
119 - <attributes>  
120 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
121 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
122 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
123 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
124 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
125 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
126 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
127 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
128 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
129 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
130 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
131 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
132 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
133 - </attributes>  
134 - </connection>  
135 - <connection>  
136 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
137 - <server>localhost</server>  
138 - <type>MYSQL</type>  
139 - <access>Native</access>  
140 - <database>control</database>  
141 - <port>3306</port>  
142 - <username>root</username>  
143 - <password>Encrypted </password>  
144 - <servername/>  
145 - <data_tablespace/>  
146 - <index_tablespace/>  
147 - <attributes>  
148 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
149 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
150 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
151 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
152 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
153 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
154 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
155 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
156 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
157 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
158 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
159 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
160 - </attributes>  
161 - </connection>  
162 - <connection>  
163 - <name>bus_control_&#x672c;&#x673a;</name>  
164 - <server>localhost</server>  
165 - <type>MYSQL</type>  
166 - <access>Native</access>  
167 - <database>control</database>  
168 - <port>3306</port>  
169 - <username>root</username>  
170 - <password>Encrypted </password>  
171 - <servername/>  
172 - <data_tablespace/>  
173 - <index_tablespace/>  
174 - <attributes>  
175 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
176 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
177 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
178 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
179 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
180 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
181 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
182 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
183 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
184 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
185 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
186 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
187 - </attributes>  
188 - </connection>  
189 - <connection>  
190 - <name>xlab_mysql_youle</name>  
191 - <server>101.231.124.8</server>  
192 - <type>MYSQL</type>  
193 - <access>Native</access>  
194 - <database>xlab_youle</database>  
195 - <port>45687</port>  
196 - <username>xlab-youle</username>  
197 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
198 - <servername/>  
199 - <data_tablespace/>  
200 - <index_tablespace/>  
201 - <attributes>  
202 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
203 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
204 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
205 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
206 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
207 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
208 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
209 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
210 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
211 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
212 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
213 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
214 - </attributes>  
215 - </connection>  
216 - <connection>  
217 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
218 - <server>localhost</server>  
219 - <type>MYSQL</type>  
220 - <access>Native</access>  
221 - <database>xlab_youle</database>  
222 - <port>3306</port>  
223 - <username>root</username>  
224 - <password>Encrypted </password>  
225 - <servername/>  
226 - <data_tablespace/>  
227 - <index_tablespace/>  
228 - <attributes>  
229 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
230 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
231 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
232 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
233 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
234 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
235 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
236 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
237 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
238 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
239 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
240 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
241 - </attributes>  
242 - </connection>  
243 - <connection>  
244 - <name>xlab_youle</name>  
245 - <server/>  
246 - <type>MYSQL</type>  
247 - <access>JNDI</access>  
248 - <database>xlab_youle</database>  
249 - <port>1521</port>  
250 - <username/>  
251 - <password>Encrypted </password>  
252 - <servername/>  
253 - <data_tablespace/>  
254 - <index_tablespace/>  
255 - <attributes>  
256 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
257 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
258 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
259 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
260 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
261 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
262 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
263 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
264 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
265 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
266 - </attributes>  
267 - </connection>  
268 - <order>  
269 - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
270 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
271 - </order>  
272 - <step>  
273 - <name>Excel&#x8f93;&#x51fa;</name>  
274 - <type>ExcelOutput</type>  
275 - <description/>  
276 - <distribute>Y</distribute>  
277 - <custom_distribution/>  
278 - <copies>1</copies>  
279 - <partitioning>  
280 - <method>none</method>  
281 - <schema_name/>  
282 - </partitioning>  
283 - <header>Y</header>  
284 - <footer>N</footer>  
285 - <encoding/>  
286 - <append>N</append>  
287 - <add_to_result_filenames>Y</add_to_result_filenames>  
288 - <file>  
289 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
290 - <extention>xls</extention>  
291 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
292 - <create_parent_folder>N</create_parent_folder>  
293 - <split>N</split>  
294 - <add_date>N</add_date>  
295 - <add_time>N</add_time>  
296 - <SpecifyFormat>N</SpecifyFormat>  
297 - <date_time_format>yyyyMMddHHmmss</date_time_format>  
298 - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>  
299 - <autosizecolums>N</autosizecolums>  
300 - <nullisblank>N</nullisblank>  
301 - <protect_sheet>N</protect_sheet>  
302 - <password>Encrypted </password>  
303 - <splitevery>0</splitevery>  
304 - <usetempfiles>N</usetempfiles>  
305 - <tempdirectory/>  
306 - </file>  
307 - <template>  
308 - <enabled>N</enabled>  
309 - <append>N</append>  
310 - <filename>template.xls</filename>  
311 - </template>  
312 - <fields>  
313 - <field>  
314 - <name>&#x8f66;&#x724c;&#x53f7;</name>  
315 - <type>String</type>  
316 - <format/>  
317 - </field>  
318 - <field>  
319 - <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>  
320 - <type>String</type>  
321 - <format/>  
322 - </field>  
323 - <field>  
324 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
325 - <type>String</type>  
326 - <format/>  
327 - </field>  
328 - <field>  
329 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>  
330 - <type>String</type>  
331 - <format/>  
332 - </field>  
333 - <field>  
334 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
335 - <type>String</type>  
336 - <format/>  
337 - </field>  
338 - <field>  
339 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>  
340 - <type>String</type>  
341 - <format/>  
342 - </field>  
343 - <field>  
344 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
345 - <type>String</type>  
346 - <format/>  
347 - </field>  
348 - <field>  
349 - <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>  
350 - <type>String</type>  
351 - <format/>  
352 - </field>  
353 - <field>  
354 - <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>  
355 - <type>String</type>  
356 - <format/>  
357 - </field>  
358 - </fields>  
359 - <custom>  
360 - <header_font_name>arial</header_font_name>  
361 - <header_font_size>10</header_font_size>  
362 - <header_font_bold>N</header_font_bold>  
363 - <header_font_italic>N</header_font_italic>  
364 - <header_font_underline>no</header_font_underline>  
365 - <header_font_orientation>horizontal</header_font_orientation>  
366 - <header_font_color>black</header_font_color>  
367 - <header_background_color>none</header_background_color>  
368 - <header_row_height>255</header_row_height>  
369 - <header_alignment>left</header_alignment>  
370 - <header_image/>  
371 - <row_font_name>arial</row_font_name>  
372 - <row_font_size>10</row_font_size>  
373 - <row_font_color>black</row_font_color>  
374 - <row_background_color>none</row_background_color>  
375 - </custom>  
376 - <cluster_schema/>  
377 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
378 - <xloc>282</xloc>  
379 - <yloc>169</yloc>  
380 - <draw>Y</draw>  
381 - </GUI>  
382 - </step>  
383 -  
384 - <step>  
385 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
386 - <type>SelectValues</type>  
387 - <description/>  
388 - <distribute>Y</distribute>  
389 - <custom_distribution/>  
390 - <copies>1</copies>  
391 - <partitioning>  
392 - <method>none</method>  
393 - <schema_name/>  
394 - </partitioning>  
395 - <fields> <field> <name>car_plate</name>  
396 - <rename>&#x8f66;&#x724c;&#x53f7;</rename>  
397 - <length>-2</length>  
398 - <precision>-2</precision>  
399 - </field> <field> <name>car_code</name>  
400 - <rename>&#x8f66;&#x8f86;&#x7f16;&#x7801;</rename>  
401 - <length>-2</length>  
402 - <precision>-2</precision>  
403 - </field> <field> <name>inside_code</name>  
404 - <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>  
405 - <length>-2</length>  
406 - <precision>-2</precision>  
407 - </field> <field> <name>company</name>  
408 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>  
409 - <length>-2</length>  
410 - <precision>-2</precision>  
411 - </field> <field> <name>business_code</name>  
412 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
413 - <length>-2</length>  
414 - <precision>-2</precision>  
415 - </field> <field> <name>branche_company</name>  
416 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>  
417 - <length>-2</length>  
418 - <precision>-2</precision>  
419 - </field> <field> <name>branche_company_code</name>  
420 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
421 - <length>-2</length>  
422 - <precision>-2</precision>  
423 - </field> <field> <name>supplier_name</name>  
424 - <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</rename>  
425 - <length>-2</length>  
426 - <precision>-2</precision>  
427 - </field> <field> <name>equipment_code</name>  
428 - <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</rename>  
429 - <length>-2</length>  
430 - <precision>-2</precision>  
431 - </field> <select_unspecified>N</select_unspecified>  
432 - </fields> <cluster_schema/>  
433 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
434 - <xloc>280</xloc>  
435 - <yloc>67</yloc>  
436 - <draw>Y</draw>  
437 - </GUI>  
438 - </step>  
439 -  
440 - <step>  
441 - <name>&#x8868;&#x8f93;&#x5165;</name>  
442 - <type>TableInput</type>  
443 - <description/>  
444 - <distribute>Y</distribute>  
445 - <custom_distribution/>  
446 - <copies>1</copies>  
447 - <partitioning>  
448 - <method>none</method>  
449 - <schema_name/>  
450 - </partitioning>  
451 - <connection>bus_control_variable</connection>  
452 - <sql>SELECT &#x2a; FROM bsth_c_cars&#x3b;</sql>  
453 - <limit>0</limit>  
454 - <lookup/>  
455 - <execute_each_row>N</execute_each_row>  
456 - <variables_active>N</variables_active>  
457 - <lazy_conversion_active>N</lazy_conversion_active>  
458 - <cluster_schema/>  
459 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
460 - <xloc>105</xloc>  
461 - <yloc>67</yloc>  
462 - <draw>Y</draw>  
463 - </GUI>  
464 - </step>  
465 -  
466 - <step_error_handling>  
467 - </step_error_handling>  
468 - <slave-step-copy-partition-distribution>  
469 -</slave-step-copy-partition-distribution>  
470 - <slave_transformation>N</slave_transformation>  
471 -  
472 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
  5 + <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</description>
  6 + <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>cgsbm_in</name>
  14 + <default_value/>
  15 + <description>&#x5206;&#x516c;&#x53f8;&#x7f16;&#x7801;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + </notepads>
  88 + <connection>
  89 + <name>192.168.168.1_jwgl_dw</name>
  90 + <server>192.168.168.1</server>
  91 + <type>ORACLE</type>
  92 + <access>Native</access>
  93 + <database>orcl</database>
  94 + <port>1521</port>
  95 + <username>jwgl_dw</username>
  96 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  97 + <servername/>
  98 + <data_tablespace/>
  99 + <index_tablespace/>
  100 + <attributes>
  101 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  102 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  103 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  104 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  105 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  106 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  107 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  108 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  109 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  110 + </attributes>
  111 + </connection>
  112 + <connection>
  113 + <name>bus_control_variable</name>
  114 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  115 + <type>MYSQL</type>
  116 + <access>Native</access>
  117 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  118 + <port>3306</port>
  119 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  120 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  121 + <servername/>
  122 + <data_tablespace/>
  123 + <index_tablespace/>
  124 + <attributes>
  125 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  126 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  127 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  130 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  131 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  132 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  133 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  134 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  135 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  136 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  137 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  138 + </attributes>
  139 + </connection>
  140 + <connection>
  141 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  142 + <server>localhost</server>
  143 + <type>MYSQL</type>
  144 + <access>Native</access>
  145 + <database>control</database>
  146 + <port>3306</port>
  147 + <username>root</username>
  148 + <password>Encrypted </password>
  149 + <servername/>
  150 + <data_tablespace/>
  151 + <index_tablespace/>
  152 + <attributes>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  154 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  158 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  159 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  160 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_&#x672c;&#x673a;</name>
  169 + <server>localhost</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>control</database>
  173 + <port>3306</port>
  174 + <username>root</username>
  175 + <password>Encrypted </password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  185 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  186 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  187 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  192 + </attributes>
  193 + </connection>
  194 + <connection>
  195 + <name>xlab_mysql_youle</name>
  196 + <server>101.231.124.8</server>
  197 + <type>MYSQL</type>
  198 + <access>Native</access>
  199 + <database>xlab_youle</database>
  200 + <port>45687</port>
  201 + <username>xlab-youle</username>
  202 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  203 + <servername/>
  204 + <data_tablespace/>
  205 + <index_tablespace/>
  206 + <attributes>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  208 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  212 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  213 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  214 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  215 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  217 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  218 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  219 + </attributes>
  220 + </connection>
  221 + <connection>
  222 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  223 + <server>localhost</server>
  224 + <type>MYSQL</type>
  225 + <access>Native</access>
  226 + <database>xlab_youle</database>
  227 + <port>3306</port>
  228 + <username>root</username>
  229 + <password>Encrypted </password>
  230 + <servername/>
  231 + <data_tablespace/>
  232 + <index_tablespace/>
  233 + <attributes>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  235 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  239 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  240 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  241 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  242 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  243 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  245 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  246 + </attributes>
  247 + </connection>
  248 + <connection>
  249 + <name>xlab_youle</name>
  250 + <server/>
  251 + <type>MYSQL</type>
  252 + <access>JNDI</access>
  253 + <database>xlab_youle</database>
  254 + <port>1521</port>
  255 + <username/>
  256 + <password>Encrypted </password>
  257 + <servername/>
  258 + <data_tablespace/>
  259 + <index_tablespace/>
  260 + <attributes>
  261 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  264 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  265 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  266 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  267 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  268 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  270 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  271 + </attributes>
  272 + </connection>
  273 + <order>
  274 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  275 + <hop> <from>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
  276 + <hop> <from>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</from><to>&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  277 + <hop> <from>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  278 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  279 + </order>
  280 + <step>
  281 + <name>Excel&#x8f93;&#x51fa;</name>
  282 + <type>ExcelOutput</type>
  283 + <description/>
  284 + <distribute>Y</distribute>
  285 + <custom_distribution/>
  286 + <copies>1</copies>
  287 + <partitioning>
  288 + <method>none</method>
  289 + <schema_name/>
  290 + </partitioning>
  291 + <header>Y</header>
  292 + <footer>N</footer>
  293 + <encoding/>
  294 + <append>N</append>
  295 + <add_to_result_filenames>Y</add_to_result_filenames>
  296 + <file>
  297 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  298 + <extention>xls</extention>
  299 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  300 + <create_parent_folder>N</create_parent_folder>
  301 + <split>N</split>
  302 + <add_date>N</add_date>
  303 + <add_time>N</add_time>
  304 + <SpecifyFormat>N</SpecifyFormat>
  305 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  306 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  307 + <autosizecolums>N</autosizecolums>
  308 + <nullisblank>N</nullisblank>
  309 + <protect_sheet>N</protect_sheet>
  310 + <password>Encrypted </password>
  311 + <splitevery>0</splitevery>
  312 + <usetempfiles>N</usetempfiles>
  313 + <tempdirectory/>
  314 + </file>
  315 + <template>
  316 + <enabled>N</enabled>
  317 + <append>N</append>
  318 + <filename>template.xls</filename>
  319 + </template>
  320 + <fields>
  321 + <field>
  322 + <name>&#x8f66;&#x724c;&#x53f7;</name>
  323 + <type>String</type>
  324 + <format/>
  325 + </field>
  326 + <field>
  327 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  328 + <type>String</type>
  329 + <format/>
  330 + </field>
  331 + <field>
  332 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  333 + <type>String</type>
  334 + <format/>
  335 + </field>
  336 + <field>
  337 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  338 + <type>String</type>
  339 + <format/>
  340 + </field>
  341 + <field>
  342 + <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
  343 + <type>String</type>
  344 + <format/>
  345 + </field>
  346 + <field>
  347 + <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
  348 + <type>String</type>
  349 + <format/>
  350 + </field>
  351 + </fields>
  352 + <custom>
  353 + <header_font_name>arial</header_font_name>
  354 + <header_font_size>10</header_font_size>
  355 + <header_font_bold>N</header_font_bold>
  356 + <header_font_italic>N</header_font_italic>
  357 + <header_font_underline>no</header_font_underline>
  358 + <header_font_orientation>horizontal</header_font_orientation>
  359 + <header_font_color>black</header_font_color>
  360 + <header_background_color>none</header_background_color>
  361 + <header_row_height>255</header_row_height>
  362 + <header_alignment>left</header_alignment>
  363 + <header_image/>
  364 + <row_font_name>arial</row_font_name>
  365 + <row_font_size>10</row_font_size>
  366 + <row_font_color>black</row_font_color>
  367 + <row_background_color>none</row_background_color>
  368 + </custom>
  369 + <cluster_schema/>
  370 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  371 + <xloc>514</xloc>
  372 + <yloc>293</yloc>
  373 + <draw>Y</draw>
  374 + </GUI>
  375 + </step>
  376 +
  377 + <step>
  378 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  379 + <type>SelectValues</type>
  380 + <description/>
  381 + <distribute>Y</distribute>
  382 + <custom_distribution/>
  383 + <copies>1</copies>
  384 + <partitioning>
  385 + <method>none</method>
  386 + <schema_name/>
  387 + </partitioning>
  388 + <fields> <field> <name>car_plate</name>
  389 + <rename>&#x8f66;&#x724c;&#x53f7;</rename>
  390 + <length>-2</length>
  391 + <precision>-2</precision>
  392 + </field> <field> <name>inside_code</name>
  393 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  394 + <length>-2</length>
  395 + <precision>-2</precision>
  396 + </field> <field> <name>gs</name>
  397 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  398 + <length>-2</length>
  399 + <precision>-2</precision>
  400 + </field> <field> <name>fgs</name>
  401 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  402 + <length>-2</length>
  403 + <precision>-2</precision>
  404 + </field> <field> <name>supplier_name</name>
  405 + <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</rename>
  406 + <length>-2</length>
  407 + <precision>-2</precision>
  408 + </field> <field> <name>equipment_code</name>
  409 + <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</rename>
  410 + <length>-2</length>
  411 + <precision>-2</precision>
  412 + </field> <select_unspecified>N</select_unspecified>
  413 + </fields> <cluster_schema/>
  414 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  415 + <xloc>512</xloc>
  416 + <yloc>181</yloc>
  417 + <draw>Y</draw>
  418 + </GUI>
  419 + </step>
  420 +
  421 + <step>
  422 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</name>
  423 + <type>TableInput</type>
  424 + <description/>
  425 + <distribute>Y</distribute>
  426 + <custom_distribution/>
  427 + <copies>1</copies>
  428 + <partitioning>
  429 + <method>none</method>
  430 + <schema_name/>
  431 + </partitioning>
  432 + <connection>bus_control_variable</connection>
  433 + <sql>SELECT &#x2a; FROM bsth_c_cars&#xa;where concat&#x28;business_code, &#x27;_&#x27;, branche_company_code&#x29; in &#x28;&#x24;&#x7b;cgsbm_in&#x7d;&#x29;</sql>
  434 + <limit>0</limit>
  435 + <lookup/>
  436 + <execute_each_row>N</execute_each_row>
  437 + <variables_active>Y</variables_active>
  438 + <lazy_conversion_active>N</lazy_conversion_active>
  439 + <cluster_schema/>
  440 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  441 + <xloc>105</xloc>
  442 + <yloc>67</yloc>
  443 + <draw>Y</draw>
  444 + </GUI>
  445 + </step>
  446 +
  447 + <step>
  448 + <name>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</name>
  449 + <type>ScriptValueMod</type>
  450 + <description/>
  451 + <distribute>Y</distribute>
  452 + <custom_distribution/>
  453 + <copies>1</copies>
  454 + <partitioning>
  455 + <method>none</method>
  456 + <schema_name/>
  457 + </partitioning>
  458 + <compatible>N</compatible>
  459 + <optimizationLevel>9</optimizationLevel>
  460 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  461 + <jsScript_name>Script 1</jsScript_name>
  462 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var up_code &#x3d; &#x27;88&#x27;&#x3b;</jsScript_script>
  463 + </jsScript> </jsScripts> <fields> <field> <name>up_code</name>
  464 + <rename>up_code</rename>
  465 + <type>String</type>
  466 + <length>-1</length>
  467 + <precision>-1</precision>
  468 + <replace>N</replace>
  469 + </field> </fields> <cluster_schema/>
  470 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  471 + <xloc>244</xloc>
  472 + <yloc>67</yloc>
  473 + <draw>Y</draw>
  474 + </GUI>
  475 + </step>
  476 +
  477 + <step>
  478 + <name>&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  479 + <type>DBLookup</type>
  480 + <description/>
  481 + <distribute>Y</distribute>
  482 + <custom_distribution/>
  483 + <copies>1</copies>
  484 + <partitioning>
  485 + <method>none</method>
  486 + <schema_name/>
  487 + </partitioning>
  488 + <connection>bus_control_variable</connection>
  489 + <cache>N</cache>
  490 + <cache_load_all>N</cache_load_all>
  491 + <cache_size>0</cache_size>
  492 + <lookup>
  493 + <schema/>
  494 + <table>bsth_c_business</table>
  495 + <orderby/>
  496 + <fail_on_multiple>N</fail_on_multiple>
  497 + <eat_row_on_failure>N</eat_row_on_failure>
  498 + <key>
  499 + <name>up_code</name>
  500 + <field>up_code</field>
  501 + <condition>&#x3d;</condition>
  502 + <name2/>
  503 + </key>
  504 + <key>
  505 + <name>business_code</name>
  506 + <field>business_code</field>
  507 + <condition>&#x3d;</condition>
  508 + <name2/>
  509 + </key>
  510 + <value>
  511 + <name>business_name</name>
  512 + <rename>gs</rename>
  513 + <default/>
  514 + <type>String</type>
  515 + </value>
  516 + </lookup>
  517 + <cluster_schema/>
  518 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  519 + <xloc>381</xloc>
  520 + <yloc>68</yloc>
  521 + <draw>Y</draw>
  522 + </GUI>
  523 + </step>
  524 +
  525 + <step>
  526 + <name>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  527 + <type>DBLookup</type>
  528 + <description/>
  529 + <distribute>Y</distribute>
  530 + <custom_distribution/>
  531 + <copies>1</copies>
  532 + <partitioning>
  533 + <method>none</method>
  534 + <schema_name/>
  535 + </partitioning>
  536 + <connection>bus_control_variable</connection>
  537 + <cache>N</cache>
  538 + <cache_load_all>N</cache_load_all>
  539 + <cache_size>0</cache_size>
  540 + <lookup>
  541 + <schema/>
  542 + <table>bsth_c_business</table>
  543 + <orderby/>
  544 + <fail_on_multiple>N</fail_on_multiple>
  545 + <eat_row_on_failure>N</eat_row_on_failure>
  546 + <key>
  547 + <name>business_code</name>
  548 + <field>up_code</field>
  549 + <condition>&#x3d;</condition>
  550 + <name2/>
  551 + </key>
  552 + <key>
  553 + <name>branche_company_code</name>
  554 + <field>business_code</field>
  555 + <condition>&#x3d;</condition>
  556 + <name2/>
  557 + </key>
  558 + <value>
  559 + <name>business_name</name>
  560 + <rename>fgs</rename>
  561 + <default/>
  562 + <type>String</type>
  563 + </value>
  564 + </lookup>
  565 + <cluster_schema/>
  566 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  567 + <xloc>508</xloc>
  568 + <yloc>68</yloc>
  569 + <draw>Y</draw>
  570 + </GUI>
  571 + </step>
  572 +
  573 + <step_error_handling>
  574 + </step_error_handling>
  575 + <slave-step-copy-partition-distribution>
  576 +</slave-step-copy-partition-distribution>
  577 + <slave_transformation>N</slave_transformation>
  578 +
  579 +</transformation>
src/main/resources/datatools/ktrs/employeesDataInput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</name>  
5 - <description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>  
6 - <extended_description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - <parameter>  
13 - <name>erroroutputdir</name>  
14 - <default_value/>  
15 - <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>filepath</name>  
19 - <default_value/>  
20 - <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>  
21 - </parameter>  
22 - </parameters>  
23 - <log>  
24 -<trans-log-table><connection/>  
25 -<schema/>  
26 -<table/>  
27 -<size_limit_lines/>  
28 -<interval/>  
29 -<timeout_days/>  
30 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>  
31 -<perf-log-table><connection/>  
32 -<schema/>  
33 -<table/>  
34 -<interval/>  
35 -<timeout_days/>  
36 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>  
37 -<channel-log-table><connection/>  
38 -<schema/>  
39 -<table/>  
40 -<timeout_days/>  
41 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>  
42 -<step-log-table><connection/>  
43 -<schema/>  
44 -<table/>  
45 -<timeout_days/>  
46 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>  
47 -<metrics-log-table><connection/>  
48 -<schema/>  
49 -<table/>  
50 -<timeout_days/>  
51 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>  
52 - </log>  
53 - <maxdate>  
54 - <connection/>  
55 - <table/>  
56 - <field/>  
57 - <offset>0.0</offset>  
58 - <maxdiff>0.0</maxdiff>  
59 - </maxdate>  
60 - <size_rowset>10000</size_rowset>  
61 - <sleep_time_empty>50</sleep_time_empty>  
62 - <sleep_time_full>50</sleep_time_full>  
63 - <unique_connections>N</unique_connections>  
64 - <feedback_shown>Y</feedback_shown>  
65 - <feedback_size>50000</feedback_size>  
66 - <using_thread_priorities>Y</using_thread_priorities>  
67 - <shared_objects_file/>  
68 - <capture_step_performance>N</capture_step_performance>  
69 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
70 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
71 - <dependencies>  
72 - </dependencies>  
73 - <partitionschemas>  
74 - </partitionschemas>  
75 - <slaveservers>  
76 - </slaveservers>  
77 - <clusterschemas>  
78 - </clusterschemas>  
79 - <created_user>-</created_user>  
80 - <created_date>2016&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</created_date>  
81 - <modified_user>-</modified_user>  
82 - <modified_date>2016&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</modified_date>  
83 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
84 - <is_key_private>N</is_key_private>  
85 - </info>  
86 - <notepads>  
87 - </notepads>  
88 - <connection>  
89 - <name>192.168.168.1_jwgl_dw</name>  
90 - <server>192.168.168.1</server>  
91 - <type>ORACLE</type>  
92 - <access>Native</access>  
93 - <database>orcl</database>  
94 - <port>1521</port>  
95 - <username>jwgl_dw</username>  
96 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
97 - <servername/>  
98 - <data_tablespace/>  
99 - <index_tablespace/>  
100 - <attributes>  
101 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
102 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
103 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
104 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
105 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
106 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
107 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
108 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
109 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
110 - </attributes>  
111 - </connection>  
112 - <connection>  
113 - <name>bus_control_variable</name>  
114 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
115 - <type>MYSQL</type>  
116 - <access>Native</access>  
117 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
118 - <port>3306</port>  
119 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
120 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
121 - <servername/>  
122 - <data_tablespace/>  
123 - <index_tablespace/>  
124 - <attributes>  
125 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
126 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
127 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
128 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
129 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
130 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
131 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
132 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
133 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
134 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
135 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
136 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
137 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
138 - </attributes>  
139 - </connection>  
140 - <connection>  
141 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
142 - <server>localhost</server>  
143 - <type>MYSQL</type>  
144 - <access>Native</access>  
145 - <database>control</database>  
146 - <port>3306</port>  
147 - <username>root</username>  
148 - <password>Encrypted </password>  
149 - <servername/>  
150 - <data_tablespace/>  
151 - <index_tablespace/>  
152 - <attributes>  
153 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
154 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
155 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
156 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
157 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
158 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
159 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
160 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
161 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
162 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
163 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
164 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
165 - </attributes>  
166 - </connection>  
167 - <connection>  
168 - <name>bus_control_&#x672c;&#x673a;</name>  
169 - <server>localhost</server>  
170 - <type>MYSQL</type>  
171 - <access>Native</access>  
172 - <database>control</database>  
173 - <port>3306</port>  
174 - <username>root</username>  
175 - <password>Encrypted </password>  
176 - <servername/>  
177 - <data_tablespace/>  
178 - <index_tablespace/>  
179 - <attributes>  
180 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
181 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
182 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
183 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
184 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
185 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
186 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
187 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
188 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
189 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
190 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
191 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
192 - </attributes>  
193 - </connection>  
194 - <connection>  
195 - <name>xlab_mysql_youle</name>  
196 - <server>101.231.124.8</server>  
197 - <type>MYSQL</type>  
198 - <access>Native</access>  
199 - <database>xlab_youle</database>  
200 - <port>45687</port>  
201 - <username>xlab-youle</username>  
202 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
203 - <servername/>  
204 - <data_tablespace/>  
205 - <index_tablespace/>  
206 - <attributes>  
207 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
208 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
209 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
210 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
211 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
212 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
213 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
214 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
215 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
216 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
217 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
218 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
219 - </attributes>  
220 - </connection>  
221 - <connection>  
222 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
223 - <server>localhost</server>  
224 - <type>MYSQL</type>  
225 - <access>Native</access>  
226 - <database>xlab_youle</database>  
227 - <port>3306</port>  
228 - <username>root</username>  
229 - <password>Encrypted </password>  
230 - <servername/>  
231 - <data_tablespace/>  
232 - <index_tablespace/>  
233 - <attributes>  
234 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
235 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
236 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
237 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
238 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
239 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
240 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
241 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
242 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
243 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
244 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
245 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
246 - </attributes>  
247 - </connection>  
248 - <connection>  
249 - <name>xlab_youle</name>  
250 - <server/>  
251 - <type>MYSQL</type>  
252 - <access>JNDI</access>  
253 - <database>xlab_youle</database>  
254 - <port>1521</port>  
255 - <username/>  
256 - <password>Encrypted </password>  
257 - <servername/>  
258 - <data_tablespace/>  
259 - <index_tablespace/>  
260 - <attributes>  
261 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
262 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
264 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
265 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
266 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
267 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
268 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
269 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
270 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
271 - </attributes>  
272 - </connection>  
273 - <order>  
274 - <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
275 - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>  
276 - <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
277 - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>JavaScript&#x4ee3;&#x7801;</to><enabled>Y</enabled> </hop>  
278 - <hop> <from>JavaScript&#x4ee3;&#x7801;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</to><enabled>Y</enabled> </hop>  
279 - </order>  
280 - <step>  
281 - <name>JavaScript&#x4ee3;&#x7801;</name>  
282 - <type>ScriptValueMod</type>  
283 - <description/>  
284 - <distribute>Y</distribute>  
285 - <custom_distribution/>  
286 - <copies>1</copies>  
287 - <partitioning>  
288 - <method>none</method>  
289 - <schema_name/>  
290 - </partitioning>  
291 - <compatible>N</compatible>  
292 - <optimizationLevel>9</optimizationLevel>  
293 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
294 - <jsScript_name>Script 1</jsScript_name>  
295 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var gh_calcu &#x3d; &#x5de5;&#x53f7;&#x3b;&#xa;&#xa;if &#x28;&#x5de5;&#x53f7;.indexOf&#x28;&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801; &#x2b; &#x22;-&#x22;&#x29; &#x3c; 0&#x29; &#x7b;&#xa; gh_calcu &#x3d; &#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801; &#x2b; &#x22;-&#x22; &#x2b; &#x5de5;&#x53f7;&#x3b;&#xa;&#x7d; </jsScript_script>  
296 - </jsScript> </jsScripts> <fields> <field> <name>gh_calcu</name>  
297 - <rename>gh_calcu</rename>  
298 - <type>String</type>  
299 - <length>-1</length>  
300 - <precision>-1</precision>  
301 - <replace>N</replace>  
302 - </field> </fields> <cluster_schema/>  
303 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
304 - <xloc>362</xloc>  
305 - <yloc>190</yloc>  
306 - <draw>Y</draw>  
307 - </GUI>  
308 - </step>  
309 -  
310 - <step>  
311 - <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>  
312 - <type>ExcelInput</type>  
313 - <description/>  
314 - <distribute>Y</distribute>  
315 - <custom_distribution/>  
316 - <copies>1</copies>  
317 - <partitioning>  
318 - <method>none</method>  
319 - <schema_name/>  
320 - </partitioning>  
321 - <header>Y</header>  
322 - <noempty>Y</noempty>  
323 - <stoponempty>N</stoponempty>  
324 - <filefield/>  
325 - <sheetfield/>  
326 - <sheetrownumfield/>  
327 - <rownumfield/>  
328 - <sheetfield/>  
329 - <filefield/>  
330 - <limit>0</limit>  
331 - <encoding/>  
332 - <add_to_result_filenames>Y</add_to_result_filenames>  
333 - <accept_filenames>Y</accept_filenames>  
334 - <accept_field>filepath_</accept_field>  
335 - <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>  
336 - <file>  
337 - <name/>  
338 - <filemask/>  
339 - <exclude_filemask/>  
340 - <file_required>N</file_required>  
341 - <include_subfolders>N</include_subfolders>  
342 - </file>  
343 - <fields>  
344 - <field>  
345 - <name>&#x59d3;&#x540d;</name>  
346 - <type>String</type>  
347 - <length>-1</length>  
348 - <precision>-1</precision>  
349 - <trim_type>none</trim_type>  
350 - <repeat>N</repeat>  
351 - <format/>  
352 - <currency/>  
353 - <decimal/>  
354 - <group/>  
355 - </field>  
356 - <field>  
357 - <name>&#x5de5;&#x53f7;</name>  
358 - <type>String</type>  
359 - <length>-1</length>  
360 - <precision>-1</precision>  
361 - <trim_type>none</trim_type>  
362 - <repeat>N</repeat>  
363 - <format>&#x23;</format>  
364 - <currency/>  
365 - <decimal/>  
366 - <group/>  
367 - </field>  
368 - <field>  
369 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>  
370 - <type>String</type>  
371 - <length>-1</length>  
372 - <precision>-1</precision>  
373 - <trim_type>none</trim_type>  
374 - <repeat>N</repeat>  
375 - <format/>  
376 - <currency/>  
377 - <decimal/>  
378 - <group/>  
379 - </field>  
380 - <field>  
381 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
382 - <type>String</type>  
383 - <length>-1</length>  
384 - <precision>-1</precision>  
385 - <trim_type>none</trim_type>  
386 - <repeat>N</repeat>  
387 - <format/>  
388 - <currency/>  
389 - <decimal/>  
390 - <group/>  
391 - </field>  
392 - <field>  
393 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>  
394 - <type>String</type>  
395 - <length>-1</length>  
396 - <precision>-1</precision>  
397 - <trim_type>none</trim_type>  
398 - <repeat>N</repeat>  
399 - <format/>  
400 - <currency/>  
401 - <decimal/>  
402 - <group/>  
403 - </field>  
404 - <field>  
405 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
406 - <type>String</type>  
407 - <length>-1</length>  
408 - <precision>-1</precision>  
409 - <trim_type>none</trim_type>  
410 - <repeat>N</repeat>  
411 - <format/>  
412 - <currency/>  
413 - <decimal/>  
414 - <group/>  
415 - </field>  
416 - </fields>  
417 - <sheets>  
418 - <sheet>  
419 - <name>&#x5de5;&#x4f5c;&#x8868;1</name>  
420 - <startrow>0</startrow>  
421 - <startcol>0</startcol>  
422 - </sheet>  
423 - </sheets>  
424 - <strict_types>N</strict_types>  
425 - <error_ignored>N</error_ignored>  
426 - <error_line_skipped>N</error_line_skipped>  
427 - <bad_line_files_destination_directory/>  
428 - <bad_line_files_extension>warning</bad_line_files_extension>  
429 - <error_line_files_destination_directory/>  
430 - <error_line_files_extension>error</error_line_files_extension>  
431 - <line_number_files_destination_directory/>  
432 - <line_number_files_extension>line</line_number_files_extension>  
433 - <shortFileFieldName/>  
434 - <pathFieldName/>  
435 - <hiddenFieldName/>  
436 - <lastModificationTimeFieldName/>  
437 - <uriNameFieldName/>  
438 - <rootUriNameFieldName/>  
439 - <extensionFieldName/>  
440 - <sizeFieldName/>  
441 - <spreadsheet_type>JXL</spreadsheet_type>  
442 - <cluster_schema/>  
443 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
444 - <xloc>158</xloc>  
445 - <yloc>57</yloc>  
446 - <draw>Y</draw>  
447 - </GUI>  
448 - </step>  
449 -  
450 - <step>  
451 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</name>  
452 - <type>InsertUpdate</type>  
453 - <description/>  
454 - <distribute>Y</distribute>  
455 - <custom_distribution/>  
456 - <copies>1</copies>  
457 - <partitioning>  
458 - <method>none</method>  
459 - <schema_name/>  
460 - </partitioning>  
461 - <connection>bus_control_variable</connection>  
462 - <commit>5000</commit>  
463 - <update_bypassed>N</update_bypassed>  
464 - <lookup>  
465 - <schema/>  
466 - <table>bsth_c_personnel</table>  
467 - <key>  
468 - <name>gh_calcu</name>  
469 - <field>job_code</field>  
470 - <condition>&#x3d;</condition>  
471 - <name2/>  
472 - </key>  
473 - <value>  
474 - <name>personnel_name</name>  
475 - <rename>&#x59d3;&#x540d;</rename>  
476 - <update>Y</update>  
477 - </value>  
478 - <value>  
479 - <name>company</name>  
480 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>  
481 - <update>Y</update>  
482 - </value>  
483 - <value>  
484 - <name>company_code</name>  
485 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
486 - <update>Y</update>  
487 - </value>  
488 - <value>  
489 - <name>branche_company</name>  
490 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>  
491 - <update>Y</update>  
492 - </value>  
493 - <value>  
494 - <name>branche_company_code</name>  
495 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
496 - <update>Y</update>  
497 - </value>  
498 - <value>  
499 - <name>job_code</name>  
500 - <rename>gh_calcu</rename>  
501 - <update>Y</update>  
502 - </value>  
503 - </lookup>  
504 - <cluster_schema/>  
505 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
506 - <xloc>576</xloc>  
507 - <yloc>56</yloc>  
508 - <draw>Y</draw>  
509 - </GUI>  
510 - </step>  
511 -  
512 - <step>  
513 - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>  
514 - <type>GetVariable</type>  
515 - <description/>  
516 - <distribute>Y</distribute>  
517 - <custom_distribution/>  
518 - <copies>1</copies>  
519 - <partitioning>  
520 - <method>none</method>  
521 - <schema_name/>  
522 - </partitioning>  
523 - <fields>  
524 - <field>  
525 - <name>filepath_</name>  
526 - <variable>&#x24;&#x7b;filepath&#x7d;</variable>  
527 - <type>String</type>  
528 - <format/>  
529 - <currency/>  
530 - <decimal/>  
531 - <group/>  
532 - <length>-1</length>  
533 - <precision>-1</precision>  
534 - <trim_type>none</trim_type>  
535 - </field>  
536 - <field>  
537 - <name>erroroutputdir_</name>  
538 - <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>  
539 - <type>String</type>  
540 - <format/>  
541 - <currency/>  
542 - <decimal/>  
543 - <group/>  
544 - <length>-1</length>  
545 - <precision>-1</precision>  
546 - <trim_type>none</trim_type>  
547 - </field>  
548 - </fields>  
549 - <cluster_schema/>  
550 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
551 - <xloc>90</xloc>  
552 - <yloc>148</yloc>  
553 - <draw>Y</draw>  
554 - </GUI>  
555 - </step>  
556 -  
557 - <step>  
558 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>  
559 - <type>FilterRows</type>  
560 - <description/>  
561 - <distribute>Y</distribute>  
562 - <custom_distribution/>  
563 - <copies>1</copies>  
564 - <partitioning>  
565 - <method>none</method>  
566 - <schema_name/>  
567 - </partitioning>  
568 -<send_true_to/>  
569 -<send_false_to/>  
570 - <compare>  
571 -<condition>  
572 - <negated>N</negated>  
573 - <conditions>  
574 - <condition>  
575 - <negated>N</negated>  
576 - <leftvalue>&#x5de5;&#x53f7;</leftvalue>  
577 - <function>IS NOT NULL</function>  
578 - <rightvalue/>  
579 - </condition>  
580 - <condition>  
581 - <negated>N</negated>  
582 - <operator>AND</operator>  
583 - <leftvalue>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</leftvalue>  
584 - <function>IS NOT NULL</function>  
585 - <rightvalue/>  
586 - </condition>  
587 - </conditions>  
588 - </condition>  
589 - </compare>  
590 - <cluster_schema/>  
591 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
592 - <xloc>358</xloc>  
593 - <yloc>57</yloc>  
594 - <draw>Y</draw>  
595 - </GUI>  
596 - </step>  
597 -  
598 - <step>  
599 - <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>  
600 - <type>ExcelOutput</type>  
601 - <description/>  
602 - <distribute>Y</distribute>  
603 - <custom_distribution/>  
604 - <copies>1</copies>  
605 - <partitioning>  
606 - <method>none</method>  
607 - <schema_name/>  
608 - </partitioning>  
609 - <header>Y</header>  
610 - <footer>N</footer>  
611 - <encoding>UTF-8</encoding>  
612 - <append>N</append>  
613 - <add_to_result_filenames>Y</add_to_result_filenames>  
614 - <file>  
615 - <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</name>  
616 - <extention>xls</extention>  
617 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
618 - <create_parent_folder>N</create_parent_folder>  
619 - <split>N</split>  
620 - <add_date>N</add_date>  
621 - <add_time>N</add_time>  
622 - <SpecifyFormat>N</SpecifyFormat>  
623 - <date_time_format/>  
624 - <sheetname>Sheet1</sheetname>  
625 - <autosizecolums>N</autosizecolums>  
626 - <nullisblank>N</nullisblank>  
627 - <protect_sheet>N</protect_sheet>  
628 - <password>Encrypted </password>  
629 - <splitevery>0</splitevery>  
630 - <usetempfiles>N</usetempfiles>  
631 - <tempdirectory/>  
632 - </file>  
633 - <template>  
634 - <enabled>N</enabled>  
635 - <append>N</append>  
636 - <filename>template.xls</filename>  
637 - </template>  
638 - <fields>  
639 - <field>  
640 - <name>&#x59d3;&#x540d;</name>  
641 - <type>String</type>  
642 - <format/>  
643 - </field>  
644 - <field>  
645 - <name>&#x5de5;&#x53f7;</name>  
646 - <type>String</type>  
647 - <format/>  
648 - </field>  
649 - <field>  
650 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>  
651 - <type>String</type>  
652 - <format/>  
653 - </field>  
654 - <field>  
655 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
656 - <type>String</type>  
657 - <format/>  
658 - </field>  
659 - <field>  
660 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>  
661 - <type>String</type>  
662 - <format/>  
663 - </field>  
664 - <field>  
665 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
666 - <type>String</type>  
667 - <format/>  
668 - </field>  
669 - <field>  
670 - <name>gh_calcu</name>  
671 - <type>String</type>  
672 - <format/>  
673 - </field>  
674 - <field>  
675 - <name>error_count</name>  
676 - <type>Integer</type>  
677 - <format/>  
678 - </field>  
679 - <field>  
680 - <name>error_desc</name>  
681 - <type>String</type>  
682 - <format/>  
683 - </field>  
684 - <field>  
685 - <name>error_column1</name>  
686 - <type>String</type>  
687 - <format/>  
688 - </field>  
689 - <field>  
690 - <name>error_column2</name>  
691 - <type>String</type>  
692 - <format/>  
693 - </field>  
694 - </fields>  
695 - <custom>  
696 - <header_font_name>arial</header_font_name>  
697 - <header_font_size>10</header_font_size>  
698 - <header_font_bold>N</header_font_bold>  
699 - <header_font_italic>N</header_font_italic>  
700 - <header_font_underline>no</header_font_underline>  
701 - <header_font_orientation>horizontal</header_font_orientation>  
702 - <header_font_color>black</header_font_color>  
703 - <header_background_color>none</header_background_color>  
704 - <header_row_height>255</header_row_height>  
705 - <header_alignment>left</header_alignment>  
706 - <header_image/>  
707 - <row_font_name>arial</row_font_name>  
708 - <row_font_size>10</row_font_size>  
709 - <row_font_color>black</row_font_color>  
710 - <row_background_color>none</row_background_color>  
711 - </custom>  
712 - <cluster_schema/>  
713 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
714 - <xloc>578</xloc>  
715 - <yloc>223</yloc>  
716 - <draw>Y</draw>  
717 - </GUI>  
718 - </step>  
719 -  
720 - <step_error_handling>  
721 - <error>  
722 - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</source_step>  
723 - <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>  
724 - <is_enabled>Y</is_enabled>  
725 - <nr_valuename>error_count</nr_valuename>  
726 - <descriptions_valuename>error_desc</descriptions_valuename>  
727 - <fields_valuename>error_column1</fields_valuename>  
728 - <codes_valuename>error_column2</codes_valuename>  
729 - <max_errors/>  
730 - <max_pct_errors/>  
731 - <min_pct_rows/>  
732 - </error>  
733 - </step_error_handling>  
734 - <slave-step-copy-partition-distribution>  
735 -</slave-step-copy-partition-distribution>  
736 - <slave_transformation>N</slave_transformation>  
737 -  
738 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</name>
  5 + <description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value/>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + </notepads>
  88 + <connection>
  89 + <name>192.168.168.1_jwgl_dw</name>
  90 + <server>192.168.168.1</server>
  91 + <type>ORACLE</type>
  92 + <access>Native</access>
  93 + <database>orcl</database>
  94 + <port>1521</port>
  95 + <username>jwgl_dw</username>
  96 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  97 + <servername/>
  98 + <data_tablespace/>
  99 + <index_tablespace/>
  100 + <attributes>
  101 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  102 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  103 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  104 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  105 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  106 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  107 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  108 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  109 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  110 + </attributes>
  111 + </connection>
  112 + <connection>
  113 + <name>bus_control_variable</name>
  114 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  115 + <type>MYSQL</type>
  116 + <access>Native</access>
  117 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  118 + <port>3306</port>
  119 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  120 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  121 + <servername/>
  122 + <data_tablespace/>
  123 + <index_tablespace/>
  124 + <attributes>
  125 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  126 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  127 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  130 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  131 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  132 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  133 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  134 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  135 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  136 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  137 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  138 + </attributes>
  139 + </connection>
  140 + <connection>
  141 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  142 + <server>localhost</server>
  143 + <type>MYSQL</type>
  144 + <access>Native</access>
  145 + <database>control</database>
  146 + <port>3306</port>
  147 + <username>root</username>
  148 + <password>Encrypted </password>
  149 + <servername/>
  150 + <data_tablespace/>
  151 + <index_tablespace/>
  152 + <attributes>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  154 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  158 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  159 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  160 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_&#x672c;&#x673a;</name>
  169 + <server>localhost</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>control</database>
  173 + <port>3306</port>
  174 + <username>root</username>
  175 + <password>Encrypted </password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  185 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  186 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  187 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  192 + </attributes>
  193 + </connection>
  194 + <connection>
  195 + <name>xlab_mysql_youle</name>
  196 + <server>101.231.124.8</server>
  197 + <type>MYSQL</type>
  198 + <access>Native</access>
  199 + <database>xlab_youle</database>
  200 + <port>45687</port>
  201 + <username>xlab-youle</username>
  202 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  203 + <servername/>
  204 + <data_tablespace/>
  205 + <index_tablespace/>
  206 + <attributes>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  208 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  212 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  213 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  214 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  215 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  217 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  218 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  219 + </attributes>
  220 + </connection>
  221 + <connection>
  222 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  223 + <server>localhost</server>
  224 + <type>MYSQL</type>
  225 + <access>Native</access>
  226 + <database>xlab_youle</database>
  227 + <port>3306</port>
  228 + <username>root</username>
  229 + <password>Encrypted </password>
  230 + <servername/>
  231 + <data_tablespace/>
  232 + <index_tablespace/>
  233 + <attributes>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  235 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  239 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  240 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  241 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  242 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  243 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  245 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  246 + </attributes>
  247 + </connection>
  248 + <connection>
  249 + <name>xlab_youle</name>
  250 + <server/>
  251 + <type>MYSQL</type>
  252 + <access>JNDI</access>
  253 + <database>xlab_youle</database>
  254 + <port>1521</port>
  255 + <username/>
  256 + <password>Encrypted </password>
  257 + <servername/>
  258 + <data_tablespace/>
  259 + <index_tablespace/>
  260 + <attributes>
  261 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  264 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  265 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  266 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  267 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  268 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  270 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  271 + </attributes>
  272 + </connection>
  273 + <order>
  274 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  275 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  276 + <hop> <from>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</from><to>&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  277 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x5de5;&#x53f7;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  278 + <hop> <from>&#x5de5;&#x53f7;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
  279 + <hop> <from>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  280 + <hop> <from>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  281 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  282 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x5904;&#x7406;&#x5de5;&#x53f7;&#x524d;&#x7f00;</to><enabled>Y</enabled> </hop>
  283 + <hop> <from>&#x5904;&#x7406;&#x5de5;&#x53f7;&#x524d;&#x7f00;</from><to>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  284 + <hop> <from>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  285 + <hop> <from>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</to><enabled>Y</enabled> </hop>
  286 + </order>
  287 + <step>
  288 + <name>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  289 + <type>FilterRows</type>
  290 + <description/>
  291 + <distribute>Y</distribute>
  292 + <custom_distribution/>
  293 + <copies>1</copies>
  294 + <partitioning>
  295 + <method>none</method>
  296 + <schema_name/>
  297 + </partitioning>
  298 +<send_true_to/>
  299 +<send_false_to/>
  300 + <compare>
  301 +<condition>
  302 + <negated>N</negated>
  303 + <conditions>
  304 + <condition>
  305 + <negated>N</negated>
  306 + <leftvalue>gs_code</leftvalue>
  307 + <function>IS NOT NULL</function>
  308 + <rightvalue/>
  309 + </condition>
  310 + </conditions>
  311 + </condition>
  312 + </compare>
  313 + <cluster_schema/>
  314 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  315 + <xloc>583</xloc>
  316 + <yloc>175</yloc>
  317 + <draw>Y</draw>
  318 + </GUI>
  319 + </step>
  320 +
  321 + <step>
  322 + <name>&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  323 + <type>DBLookup</type>
  324 + <description/>
  325 + <distribute>Y</distribute>
  326 + <custom_distribution/>
  327 + <copies>1</copies>
  328 + <partitioning>
  329 + <method>none</method>
  330 + <schema_name/>
  331 + </partitioning>
  332 + <connection>bus_control_variable</connection>
  333 + <cache>N</cache>
  334 + <cache_load_all>N</cache_load_all>
  335 + <cache_size>0</cache_size>
  336 + <lookup>
  337 + <schema/>
  338 + <table>bsth_c_business</table>
  339 + <orderby/>
  340 + <fail_on_multiple>N</fail_on_multiple>
  341 + <eat_row_on_failure>N</eat_row_on_failure>
  342 + <key>
  343 + <name>up_code</name>
  344 + <field>up_code</field>
  345 + <condition>&#x3d;</condition>
  346 + <name2/>
  347 + </key>
  348 + <key>
  349 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  350 + <field>business_name</field>
  351 + <condition>&#x3d;</condition>
  352 + <name2/>
  353 + </key>
  354 + <value>
  355 + <name>business_code</name>
  356 + <rename>gs_code</rename>
  357 + <default/>
  358 + <type>String</type>
  359 + </value>
  360 + </lookup>
  361 + <cluster_schema/>
  362 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  363 + <xloc>583</xloc>
  364 + <yloc>83</yloc>
  365 + <draw>Y</draw>
  366 + </GUI>
  367 + </step>
  368 +
  369 + <step>
  370 + <name>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  371 + <type>FilterRows</type>
  372 + <description/>
  373 + <distribute>Y</distribute>
  374 + <custom_distribution/>
  375 + <copies>1</copies>
  376 + <partitioning>
  377 + <method>none</method>
  378 + <schema_name/>
  379 + </partitioning>
  380 +<send_true_to/>
  381 +<send_false_to/>
  382 + <compare>
  383 +<condition>
  384 + <negated>N</negated>
  385 + <conditions>
  386 + <condition>
  387 + <negated>N</negated>
  388 + <leftvalue>fgs_code</leftvalue>
  389 + <function>IS NOT NULL</function>
  390 + <rightvalue/>
  391 + </condition>
  392 + </conditions>
  393 + </condition>
  394 + </compare>
  395 + <cluster_schema/>
  396 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  397 + <xloc>756</xloc>
  398 + <yloc>178</yloc>
  399 + <draw>Y</draw>
  400 + </GUI>
  401 + </step>
  402 +
  403 + <step>
  404 + <name>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  405 + <type>DBLookup</type>
  406 + <description/>
  407 + <distribute>Y</distribute>
  408 + <custom_distribution/>
  409 + <copies>1</copies>
  410 + <partitioning>
  411 + <method>none</method>
  412 + <schema_name/>
  413 + </partitioning>
  414 + <connection>bus_control_variable</connection>
  415 + <cache>N</cache>
  416 + <cache_load_all>N</cache_load_all>
  417 + <cache_size>0</cache_size>
  418 + <lookup>
  419 + <schema/>
  420 + <table>bsth_c_business</table>
  421 + <orderby/>
  422 + <fail_on_multiple>N</fail_on_multiple>
  423 + <eat_row_on_failure>N</eat_row_on_failure>
  424 + <key>
  425 + <name>gs_code</name>
  426 + <field>up_code</field>
  427 + <condition>&#x3d;</condition>
  428 + <name2/>
  429 + </key>
  430 + <key>
  431 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  432 + <field>business_name</field>
  433 + <condition>&#x3d;</condition>
  434 + <name2/>
  435 + </key>
  436 + <value>
  437 + <name>business_code</name>
  438 + <rename>fgs_code</rename>
  439 + <default/>
  440 + <type>String</type>
  441 + </value>
  442 + </lookup>
  443 + <cluster_schema/>
  444 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  445 + <xloc>756</xloc>
  446 + <yloc>83</yloc>
  447 + <draw>Y</draw>
  448 + </GUI>
  449 + </step>
  450 +
  451 + <step>
  452 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  453 + <type>ExcelInput</type>
  454 + <description/>
  455 + <distribute>Y</distribute>
  456 + <custom_distribution/>
  457 + <copies>1</copies>
  458 + <partitioning>
  459 + <method>none</method>
  460 + <schema_name/>
  461 + </partitioning>
  462 + <header>Y</header>
  463 + <noempty>Y</noempty>
  464 + <stoponempty>N</stoponempty>
  465 + <filefield/>
  466 + <sheetfield/>
  467 + <sheetrownumfield/>
  468 + <rownumfield/>
  469 + <sheetfield/>
  470 + <filefield/>
  471 + <limit>0</limit>
  472 + <encoding/>
  473 + <add_to_result_filenames>Y</add_to_result_filenames>
  474 + <accept_filenames>Y</accept_filenames>
  475 + <accept_field>filepath_</accept_field>
  476 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  477 + <file>
  478 + <name/>
  479 + <filemask/>
  480 + <exclude_filemask/>
  481 + <file_required>N</file_required>
  482 + <include_subfolders>N</include_subfolders>
  483 + </file>
  484 + <fields>
  485 + <field>
  486 + <name>&#x59d3;&#x540d;</name>
  487 + <type>String</type>
  488 + <length>-1</length>
  489 + <precision>-1</precision>
  490 + <trim_type>none</trim_type>
  491 + <repeat>N</repeat>
  492 + <format/>
  493 + <currency/>
  494 + <decimal/>
  495 + <group/>
  496 + </field>
  497 + <field>
  498 + <name>&#x5de5;&#x53f7;</name>
  499 + <type>String</type>
  500 + <length>-1</length>
  501 + <precision>-1</precision>
  502 + <trim_type>none</trim_type>
  503 + <repeat>N</repeat>
  504 + <format>&#x23;</format>
  505 + <currency/>
  506 + <decimal/>
  507 + <group/>
  508 + </field>
  509 + <field>
  510 + <name>&#x6027;&#x522b;</name>
  511 + <type>String</type>
  512 + <length>-1</length>
  513 + <precision>-1</precision>
  514 + <trim_type>none</trim_type>
  515 + <repeat>N</repeat>
  516 + <format/>
  517 + <currency/>
  518 + <decimal/>
  519 + <group/>
  520 + </field>
  521 + <field>
  522 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  523 + <type>String</type>
  524 + <length>-1</length>
  525 + <precision>-1</precision>
  526 + <trim_type>none</trim_type>
  527 + <repeat>N</repeat>
  528 + <format/>
  529 + <currency/>
  530 + <decimal/>
  531 + <group/>
  532 + </field>
  533 + <field>
  534 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  535 + <type>String</type>
  536 + <length>-1</length>
  537 + <precision>-1</precision>
  538 + <trim_type>none</trim_type>
  539 + <repeat>N</repeat>
  540 + <format/>
  541 + <currency/>
  542 + <decimal/>
  543 + <group/>
  544 + </field>
  545 + <field>
  546 + <name>&#x4e00;&#x5361;&#x901a;&#x53f7;</name>
  547 + <type>String</type>
  548 + <length>-1</length>
  549 + <precision>-1</precision>
  550 + <trim_type>none</trim_type>
  551 + <repeat>N</repeat>
  552 + <format>&#x23;</format>
  553 + <currency/>
  554 + <decimal/>
  555 + <group/>
  556 + </field>
  557 + <field>
  558 + <name>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</name>
  559 + <type>String</type>
  560 + <length>-1</length>
  561 + <precision>-1</precision>
  562 + <trim_type>none</trim_type>
  563 + <repeat>N</repeat>
  564 + <format>&#x23;</format>
  565 + <currency/>
  566 + <decimal/>
  567 + <group/>
  568 + </field>
  569 + <field>
  570 + <name>&#x5c97;&#x4f4d;</name>
  571 + <type>String</type>
  572 + <length>-1</length>
  573 + <precision>-1</precision>
  574 + <trim_type>none</trim_type>
  575 + <repeat>N</repeat>
  576 + <format/>
  577 + <currency/>
  578 + <decimal/>
  579 + <group/>
  580 + </field>
  581 + <field>
  582 + <name>&#x5907;&#x6ce8;</name>
  583 + <type>String</type>
  584 + <length>-1</length>
  585 + <precision>-1</precision>
  586 + <trim_type>none</trim_type>
  587 + <repeat>N</repeat>
  588 + <format/>
  589 + <currency/>
  590 + <decimal/>
  591 + <group/>
  592 + </field>
  593 + </fields>
  594 + <sheets>
  595 + <sheet>
  596 + <name>&#x5de5;&#x4f5c;&#x8868;1</name>
  597 + <startrow>0</startrow>
  598 + <startcol>0</startcol>
  599 + </sheet>
  600 + </sheets>
  601 + <strict_types>N</strict_types>
  602 + <error_ignored>N</error_ignored>
  603 + <error_line_skipped>N</error_line_skipped>
  604 + <bad_line_files_destination_directory/>
  605 + <bad_line_files_extension>warning</bad_line_files_extension>
  606 + <error_line_files_destination_directory/>
  607 + <error_line_files_extension>error</error_line_files_extension>
  608 + <line_number_files_destination_directory/>
  609 + <line_number_files_extension>line</line_number_files_extension>
  610 + <shortFileFieldName/>
  611 + <pathFieldName/>
  612 + <hiddenFieldName/>
  613 + <lastModificationTimeFieldName/>
  614 + <uriNameFieldName/>
  615 + <rootUriNameFieldName/>
  616 + <extensionFieldName/>
  617 + <sizeFieldName/>
  618 + <spreadsheet_type>JXL</spreadsheet_type>
  619 + <cluster_schema/>
  620 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  621 + <xloc>236</xloc>
  622 + <yloc>83</yloc>
  623 + <draw>Y</draw>
  624 + </GUI>
  625 + </step>
  626 +
  627 + <step>
  628 + <name>&#x5904;&#x7406;&#x5de5;&#x53f7;&#x524d;&#x7f00;</name>
  629 + <type>ScriptValueMod</type>
  630 + <description/>
  631 + <distribute>Y</distribute>
  632 + <custom_distribution/>
  633 + <copies>1</copies>
  634 + <partitioning>
  635 + <method>none</method>
  636 + <schema_name/>
  637 + </partitioning>
  638 + <compatible>N</compatible>
  639 + <optimizationLevel>9</optimizationLevel>
  640 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  641 + <jsScript_name>Script 1</jsScript_name>
  642 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var gh_calcu &#x3d; &#x5de5;&#x53f7;&#x3b;&#xa;&#xa;if &#x28;&#x5de5;&#x53f7;.indexOf&#x28;gs_code &#x2b; &#x22;-&#x22;&#x29; &#x3c; 0&#x29; &#x7b;&#xa; gh_calcu &#x3d; gs_code &#x2b; &#x22;-&#x22; &#x2b; &#x5de5;&#x53f7;&#x3b;&#xa;&#x7d; </jsScript_script>
  643 + </jsScript> </jsScripts> <fields> <field> <name>gh_calcu</name>
  644 + <rename>gh_calcu</rename>
  645 + <type>String</type>
  646 + <length>-1</length>
  647 + <precision>-1</precision>
  648 + <replace>N</replace>
  649 + </field> </fields> <cluster_schema/>
  650 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  651 + <xloc>758</xloc>
  652 + <yloc>297</yloc>
  653 + <draw>Y</draw>
  654 + </GUI>
  655 + </step>
  656 +
  657 + <step>
  658 + <name>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</name>
  659 + <type>DBLookup</type>
  660 + <description/>
  661 + <distribute>Y</distribute>
  662 + <custom_distribution/>
  663 + <copies>1</copies>
  664 + <partitioning>
  665 + <method>none</method>
  666 + <schema_name/>
  667 + </partitioning>
  668 + <connection>bus_control_variable</connection>
  669 + <cache>N</cache>
  670 + <cache_load_all>N</cache_load_all>
  671 + <cache_size>0</cache_size>
  672 + <lookup>
  673 + <schema/>
  674 + <table>bsth_c_sys_dictionary</table>
  675 + <orderby/>
  676 + <fail_on_multiple>N</fail_on_multiple>
  677 + <eat_row_on_failure>N</eat_row_on_failure>
  678 + <key>
  679 + <name>gzType</name>
  680 + <field>d_group</field>
  681 + <condition>&#x3d;</condition>
  682 + <name2/>
  683 + </key>
  684 + <key>
  685 + <name>&#x5c97;&#x4f4d;</name>
  686 + <field>d_name</field>
  687 + <condition>&#x3d;</condition>
  688 + <name2/>
  689 + </key>
  690 + <value>
  691 + <name>d_code</name>
  692 + <rename>posts</rename>
  693 + <default/>
  694 + <type>String</type>
  695 + </value>
  696 + </lookup>
  697 + <cluster_schema/>
  698 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  699 + <xloc>588</xloc>
  700 + <yloc>296</yloc>
  701 + <draw>Y</draw>
  702 + </GUI>
  703 + </step>
  704 +
  705 + <step>
  706 + <name>&#x5de5;&#x53f7;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  707 + <type>FilterRows</type>
  708 + <description/>
  709 + <distribute>Y</distribute>
  710 + <custom_distribution/>
  711 + <copies>1</copies>
  712 + <partitioning>
  713 + <method>none</method>
  714 + <schema_name/>
  715 + </partitioning>
  716 +<send_true_to/>
  717 +<send_false_to/>
  718 + <compare>
  719 +<condition>
  720 + <negated>N</negated>
  721 + <conditions>
  722 + <condition>
  723 + <negated>N</negated>
  724 + <leftvalue>&#x5de5;&#x53f7;</leftvalue>
  725 + <function>IS NOT NULL</function>
  726 + <rightvalue/>
  727 + </condition>
  728 + </conditions>
  729 + </condition>
  730 + </compare>
  731 + <cluster_schema/>
  732 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  733 + <xloc>238</xloc>
  734 + <yloc>178</yloc>
  735 + <draw>Y</draw>
  736 + </GUI>
  737 + </step>
  738 +
  739 + <step>
  740 + <name>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</name>
  741 + <type>DBLookup</type>
  742 + <description/>
  743 + <distribute>Y</distribute>
  744 + <custom_distribution/>
  745 + <copies>1</copies>
  746 + <partitioning>
  747 + <method>none</method>
  748 + <schema_name/>
  749 + </partitioning>
  750 + <connection>bus_control_variable</connection>
  751 + <cache>N</cache>
  752 + <cache_load_all>N</cache_load_all>
  753 + <cache_size>0</cache_size>
  754 + <lookup>
  755 + <schema/>
  756 + <table>bsth_c_sys_dictionary</table>
  757 + <orderby/>
  758 + <fail_on_multiple>N</fail_on_multiple>
  759 + <eat_row_on_failure>N</eat_row_on_failure>
  760 + <key>
  761 + <name>sexType</name>
  762 + <field>d_group</field>
  763 + <condition>&#x3d;</condition>
  764 + <name2/>
  765 + </key>
  766 + <key>
  767 + <name>&#x6027;&#x522b;</name>
  768 + <field>d_name</field>
  769 + <condition>&#x3d;</condition>
  770 + <name2/>
  771 + </key>
  772 + <value>
  773 + <name>d_code</name>
  774 + <rename>sex</rename>
  775 + <default/>
  776 + <type>String</type>
  777 + </value>
  778 + </lookup>
  779 + <cluster_schema/>
  780 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  781 + <xloc>456</xloc>
  782 + <yloc>299</yloc>
  783 + <draw>Y</draw>
  784 + </GUI>
  785 + </step>
  786 +
  787 + <step>
  788 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</name>
  789 + <type>InsertUpdate</type>
  790 + <description/>
  791 + <distribute>Y</distribute>
  792 + <custom_distribution/>
  793 + <copies>1</copies>
  794 + <partitioning>
  795 + <method>none</method>
  796 + <schema_name/>
  797 + </partitioning>
  798 + <connection>bus_control_variable</connection>
  799 + <commit>500</commit>
  800 + <update_bypassed>N</update_bypassed>
  801 + <lookup>
  802 + <schema/>
  803 + <table>bsth_c_personnel</table>
  804 + <key>
  805 + <name>gh_calcu</name>
  806 + <field>job_code</field>
  807 + <condition>&#x3d;</condition>
  808 + <name2/>
  809 + </key>
  810 + <value>
  811 + <name>company</name>
  812 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  813 + <update>Y</update>
  814 + </value>
  815 + <value>
  816 + <name>company_code</name>
  817 + <rename>gs_code</rename>
  818 + <update>Y</update>
  819 + </value>
  820 + <value>
  821 + <name>branche_company</name>
  822 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  823 + <update>Y</update>
  824 + </value>
  825 + <value>
  826 + <name>branche_company_code</name>
  827 + <rename>fgs_code</rename>
  828 + <update>Y</update>
  829 + </value>
  830 + <value>
  831 + <name>ic_card_code</name>
  832 + <rename>&#x4e00;&#x5361;&#x901a;&#x53f7;</rename>
  833 + <update>Y</update>
  834 + </value>
  835 + <value>
  836 + <name>papers_code</name>
  837 + <rename>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</rename>
  838 + <update>Y</update>
  839 + </value>
  840 + <value>
  841 + <name>job_code</name>
  842 + <rename>gh_calcu</rename>
  843 + <update>Y</update>
  844 + </value>
  845 + <value>
  846 + <name>job_codeori</name>
  847 + <rename>&#x5de5;&#x53f7;</rename>
  848 + <update>Y</update>
  849 + </value>
  850 + <value>
  851 + <name>personnel_name</name>
  852 + <rename>&#x59d3;&#x540d;</rename>
  853 + <update>Y</update>
  854 + </value>
  855 + <value>
  856 + <name>personnel_type</name>
  857 + <rename>sex</rename>
  858 + <update>Y</update>
  859 + </value>
  860 + <value>
  861 + <name>posts</name>
  862 + <rename>posts</rename>
  863 + <update>Y</update>
  864 + </value>
  865 + <value>
  866 + <name>remark</name>
  867 + <rename>&#x5907;&#x6ce8;</rename>
  868 + <update>Y</update>
  869 + </value>
  870 + </lookup>
  871 + <cluster_schema/>
  872 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  873 + <xloc>240</xloc>
  874 + <yloc>297</yloc>
  875 + <draw>Y</draw>
  876 + </GUI>
  877 + </step>
  878 +
  879 + <step>
  880 + <name>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</name>
  881 + <type>ScriptValueMod</type>
  882 + <description/>
  883 + <distribute>Y</distribute>
  884 + <custom_distribution/>
  885 + <copies>1</copies>
  886 + <partitioning>
  887 + <method>none</method>
  888 + <schema_name/>
  889 + </partitioning>
  890 + <compatible>N</compatible>
  891 + <optimizationLevel>9</optimizationLevel>
  892 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  893 + <jsScript_name>Script 1</jsScript_name>
  894 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var up_code &#x3d; &#x27;88&#x27;&#x3b;&#xa;var sexType &#x3d; &#x27;sexType&#x27;&#x3b;&#xa;var gzType &#x3d; &#x27;gzType&#x27;&#x3b;</jsScript_script>
  895 + </jsScript> </jsScripts> <fields> <field> <name>up_code</name>
  896 + <rename>up_code</rename>
  897 + <type>String</type>
  898 + <length>-1</length>
  899 + <precision>-1</precision>
  900 + <replace>N</replace>
  901 + </field> <field> <name>sexType</name>
  902 + <rename>sexType</rename>
  903 + <type>String</type>
  904 + <length>-1</length>
  905 + <precision>-1</precision>
  906 + <replace>N</replace>
  907 + </field> <field> <name>gzType</name>
  908 + <rename>gzType</rename>
  909 + <type>String</type>
  910 + <length>-1</length>
  911 + <precision>-1</precision>
  912 + <replace>N</replace>
  913 + </field> </fields> <cluster_schema/>
  914 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  915 + <xloc>414</xloc>
  916 + <yloc>85</yloc>
  917 + <draw>Y</draw>
  918 + </GUI>
  919 + </step>
  920 +
  921 + <step>
  922 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  923 + <type>GetVariable</type>
  924 + <description/>
  925 + <distribute>Y</distribute>
  926 + <custom_distribution/>
  927 + <copies>1</copies>
  928 + <partitioning>
  929 + <method>none</method>
  930 + <schema_name/>
  931 + </partitioning>
  932 + <fields>
  933 + <field>
  934 + <name>filepath_</name>
  935 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  936 + <type>String</type>
  937 + <format/>
  938 + <currency/>
  939 + <decimal/>
  940 + <group/>
  941 + <length>-1</length>
  942 + <precision>-1</precision>
  943 + <trim_type>none</trim_type>
  944 + </field>
  945 + <field>
  946 + <name>erroroutputdir_</name>
  947 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  948 + <type>String</type>
  949 + <format/>
  950 + <currency/>
  951 + <decimal/>
  952 + <group/>
  953 + <length>-1</length>
  954 + <precision>-1</precision>
  955 + <trim_type>none</trim_type>
  956 + </field>
  957 + </fields>
  958 + <cluster_schema/>
  959 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  960 + <xloc>70</xloc>
  961 + <yloc>85</yloc>
  962 + <draw>Y</draw>
  963 + </GUI>
  964 + </step>
  965 +
  966 + <step>
  967 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  968 + <type>ExcelOutput</type>
  969 + <description/>
  970 + <distribute>Y</distribute>
  971 + <custom_distribution/>
  972 + <copies>1</copies>
  973 + <partitioning>
  974 + <method>none</method>
  975 + <schema_name/>
  976 + </partitioning>
  977 + <header>Y</header>
  978 + <footer>N</footer>
  979 + <encoding>UTF-8</encoding>
  980 + <append>N</append>
  981 + <add_to_result_filenames>Y</add_to_result_filenames>
  982 + <file>
  983 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</name>
  984 + <extention>xls</extention>
  985 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  986 + <create_parent_folder>N</create_parent_folder>
  987 + <split>N</split>
  988 + <add_date>N</add_date>
  989 + <add_time>N</add_time>
  990 + <SpecifyFormat>N</SpecifyFormat>
  991 + <date_time_format/>
  992 + <sheetname>Sheet1</sheetname>
  993 + <autosizecolums>N</autosizecolums>
  994 + <nullisblank>N</nullisblank>
  995 + <protect_sheet>N</protect_sheet>
  996 + <password>Encrypted </password>
  997 + <splitevery>0</splitevery>
  998 + <usetempfiles>N</usetempfiles>
  999 + <tempdirectory/>
  1000 + </file>
  1001 + <template>
  1002 + <enabled>N</enabled>
  1003 + <append>N</append>
  1004 + <filename>template.xls</filename>
  1005 + </template>
  1006 + <fields>
  1007 + <field>
  1008 + <name>&#x59d3;&#x540d;</name>
  1009 + <type>String</type>
  1010 + <format/>
  1011 + </field>
  1012 + <field>
  1013 + <name>&#x5de5;&#x53f7;</name>
  1014 + <type>String</type>
  1015 + <format/>
  1016 + </field>
  1017 + <field>
  1018 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  1019 + <type>String</type>
  1020 + <format/>
  1021 + </field>
  1022 + <field>
  1023 + <name>gs_code</name>
  1024 + <type>String</type>
  1025 + <format/>
  1026 + </field>
  1027 + <field>
  1028 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  1029 + <type>String</type>
  1030 + <format/>
  1031 + </field>
  1032 + <field>
  1033 + <name>fgs_code</name>
  1034 + <type>String</type>
  1035 + <format/>
  1036 + </field>
  1037 + <field>
  1038 + <name>gh_calcu</name>
  1039 + <type>String</type>
  1040 + <format/>
  1041 + </field>
  1042 + <field>
  1043 + <name>error_count</name>
  1044 + <type>Integer</type>
  1045 + <format/>
  1046 + </field>
  1047 + <field>
  1048 + <name>error_desc</name>
  1049 + <type>String</type>
  1050 + <format/>
  1051 + </field>
  1052 + <field>
  1053 + <name>error_column1</name>
  1054 + <type>String</type>
  1055 + <format/>
  1056 + </field>
  1057 + <field>
  1058 + <name>error_column2</name>
  1059 + <type>String</type>
  1060 + <format/>
  1061 + </field>
  1062 + </fields>
  1063 + <custom>
  1064 + <header_font_name>arial</header_font_name>
  1065 + <header_font_size>10</header_font_size>
  1066 + <header_font_bold>N</header_font_bold>
  1067 + <header_font_italic>N</header_font_italic>
  1068 + <header_font_underline>no</header_font_underline>
  1069 + <header_font_orientation>horizontal</header_font_orientation>
  1070 + <header_font_color>black</header_font_color>
  1071 + <header_background_color>none</header_background_color>
  1072 + <header_row_height>255</header_row_height>
  1073 + <header_alignment>left</header_alignment>
  1074 + <header_image/>
  1075 + <row_font_name>arial</row_font_name>
  1076 + <row_font_size>10</row_font_size>
  1077 + <row_font_color>black</row_font_color>
  1078 + <row_background_color>none</row_background_color>
  1079 + </custom>
  1080 + <cluster_schema/>
  1081 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1082 + <xloc>240</xloc>
  1083 + <yloc>442</yloc>
  1084 + <draw>Y</draw>
  1085 + </GUI>
  1086 + </step>
  1087 +
  1088 + <step_error_handling>
  1089 + <error>
  1090 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</source_step>
  1091 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  1092 + <is_enabled>Y</is_enabled>
  1093 + <nr_valuename>error_count</nr_valuename>
  1094 + <descriptions_valuename>error_desc</descriptions_valuename>
  1095 + <fields_valuename>error_column1</fields_valuename>
  1096 + <codes_valuename>error_column2</codes_valuename>
  1097 + <max_errors/>
  1098 + <max_pct_errors/>
  1099 + <min_pct_rows/>
  1100 + </error>
  1101 + </step_error_handling>
  1102 + <slave-step-copy-partition-distribution>
  1103 +</slave-step-copy-partition-distribution>
  1104 + <slave_transformation>N</slave_transformation>
  1105 +
  1106 +</transformation>
src/main/resources/datatools/ktrs/employeesDataOutput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>  
5 - <description/>  
6 - <extended_description/>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - <parameter>  
13 - <name>filepath</name>  
14 - <default_value/>  
15 - <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>  
16 - </parameter>  
17 - </parameters>  
18 - <log>  
19 -<trans-log-table><connection/>  
20 -<schema/>  
21 -<table/>  
22 -<size_limit_lines/>  
23 -<interval/>  
24 -<timeout_days/>  
25 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>  
26 -<perf-log-table><connection/>  
27 -<schema/>  
28 -<table/>  
29 -<interval/>  
30 -<timeout_days/>  
31 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>  
32 -<channel-log-table><connection/>  
33 -<schema/>  
34 -<table/>  
35 -<timeout_days/>  
36 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>  
37 -<step-log-table><connection/>  
38 -<schema/>  
39 -<table/>  
40 -<timeout_days/>  
41 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>  
42 -<metrics-log-table><connection/>  
43 -<schema/>  
44 -<table/>  
45 -<timeout_days/>  
46 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>  
47 - </log>  
48 - <maxdate>  
49 - <connection/>  
50 - <table/>  
51 - <field/>  
52 - <offset>0.0</offset>  
53 - <maxdiff>0.0</maxdiff>  
54 - </maxdate>  
55 - <size_rowset>10000</size_rowset>  
56 - <sleep_time_empty>50</sleep_time_empty>  
57 - <sleep_time_full>50</sleep_time_full>  
58 - <unique_connections>N</unique_connections>  
59 - <feedback_shown>Y</feedback_shown>  
60 - <feedback_size>50000</feedback_size>  
61 - <using_thread_priorities>Y</using_thread_priorities>  
62 - <shared_objects_file/>  
63 - <capture_step_performance>N</capture_step_performance>  
64 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
65 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
66 - <dependencies>  
67 - </dependencies>  
68 - <partitionschemas>  
69 - </partitionschemas>  
70 - <slaveservers>  
71 - </slaveservers>  
72 - <clusterschemas>  
73 - </clusterschemas>  
74 - <created_user>-</created_user>  
75 - <created_date>2016&#x2f;08&#x2f;09 09&#x3a;57&#x3a;38.471</created_date>  
76 - <modified_user>-</modified_user>  
77 - <modified_date>2016&#x2f;08&#x2f;09 09&#x3a;57&#x3a;38.471</modified_date>  
78 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
79 - <is_key_private>N</is_key_private>  
80 - </info>  
81 - <notepads>  
82 - </notepads>  
83 - <connection>  
84 - <name>192.168.168.1_jwgl_dw</name>  
85 - <server>192.168.168.1</server>  
86 - <type>ORACLE</type>  
87 - <access>Native</access>  
88 - <database>orcl</database>  
89 - <port>1521</port>  
90 - <username>jwgl_dw</username>  
91 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
92 - <servername/>  
93 - <data_tablespace/>  
94 - <index_tablespace/>  
95 - <attributes>  
96 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
97 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
98 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
99 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
100 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
101 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
102 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
103 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
104 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
105 - </attributes>  
106 - </connection>  
107 - <connection>  
108 - <name>bus_control_variable</name>  
109 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
110 - <type>MYSQL</type>  
111 - <access>Native</access>  
112 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
113 - <port>3306</port>  
114 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
115 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
116 - <servername/>  
117 - <data_tablespace/>  
118 - <index_tablespace/>  
119 - <attributes>  
120 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
121 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
122 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
123 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
124 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
125 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
126 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
127 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
128 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
129 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
130 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
131 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
132 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
133 - </attributes>  
134 - </connection>  
135 - <connection>  
136 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
137 - <server>localhost</server>  
138 - <type>MYSQL</type>  
139 - <access>Native</access>  
140 - <database>control</database>  
141 - <port>3306</port>  
142 - <username>root</username>  
143 - <password>Encrypted </password>  
144 - <servername/>  
145 - <data_tablespace/>  
146 - <index_tablespace/>  
147 - <attributes>  
148 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
149 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
150 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
151 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
152 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
153 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
154 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
155 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
156 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
157 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
158 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
159 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
160 - </attributes>  
161 - </connection>  
162 - <connection>  
163 - <name>bus_control_&#x672c;&#x673a;</name>  
164 - <server>localhost</server>  
165 - <type>MYSQL</type>  
166 - <access>Native</access>  
167 - <database>control</database>  
168 - <port>3306</port>  
169 - <username>root</username>  
170 - <password>Encrypted </password>  
171 - <servername/>  
172 - <data_tablespace/>  
173 - <index_tablespace/>  
174 - <attributes>  
175 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
176 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
177 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
178 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
179 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
180 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
181 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
182 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
183 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
184 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
185 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
186 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
187 - </attributes>  
188 - </connection>  
189 - <connection>  
190 - <name>xlab_mysql_youle</name>  
191 - <server>101.231.124.8</server>  
192 - <type>MYSQL</type>  
193 - <access>Native</access>  
194 - <database>xlab_youle</database>  
195 - <port>45687</port>  
196 - <username>xlab-youle</username>  
197 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
198 - <servername/>  
199 - <data_tablespace/>  
200 - <index_tablespace/>  
201 - <attributes>  
202 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
203 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
204 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
205 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
206 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
207 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
208 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
209 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
210 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
211 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
212 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
213 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
214 - </attributes>  
215 - </connection>  
216 - <connection>  
217 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
218 - <server>localhost</server>  
219 - <type>MYSQL</type>  
220 - <access>Native</access>  
221 - <database>xlab_youle</database>  
222 - <port>3306</port>  
223 - <username>root</username>  
224 - <password>Encrypted </password>  
225 - <servername/>  
226 - <data_tablespace/>  
227 - <index_tablespace/>  
228 - <attributes>  
229 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
230 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
231 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
232 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
233 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
234 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
235 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
236 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
237 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
238 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
239 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
240 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
241 - </attributes>  
242 - </connection>  
243 - <connection>  
244 - <name>xlab_youle</name>  
245 - <server/>  
246 - <type>MYSQL</type>  
247 - <access>JNDI</access>  
248 - <database>xlab_youle</database>  
249 - <port>1521</port>  
250 - <username/>  
251 - <password>Encrypted </password>  
252 - <servername/>  
253 - <data_tablespace/>  
254 - <index_tablespace/>  
255 - <attributes>  
256 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
257 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
258 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
259 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
260 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
261 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
262 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
263 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
264 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
265 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
266 - </attributes>  
267 - </connection>  
268 - <order>  
269 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
270 - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
271 - </order>  
272 - <step>  
273 - <name>Excel&#x8f93;&#x51fa;</name>  
274 - <type>ExcelOutput</type>  
275 - <description/>  
276 - <distribute>Y</distribute>  
277 - <custom_distribution/>  
278 - <copies>1</copies>  
279 - <partitioning>  
280 - <method>none</method>  
281 - <schema_name/>  
282 - </partitioning>  
283 - <header>Y</header>  
284 - <footer>N</footer>  
285 - <encoding/>  
286 - <append>N</append>  
287 - <add_to_result_filenames>Y</add_to_result_filenames>  
288 - <file>  
289 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
290 - <extention>xls</extention>  
291 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
292 - <create_parent_folder>N</create_parent_folder>  
293 - <split>N</split>  
294 - <add_date>N</add_date>  
295 - <add_time>N</add_time>  
296 - <SpecifyFormat>N</SpecifyFormat>  
297 - <date_time_format>yyyyMMddHHmmss</date_time_format>  
298 - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>  
299 - <autosizecolums>N</autosizecolums>  
300 - <nullisblank>N</nullisblank>  
301 - <protect_sheet>N</protect_sheet>  
302 - <password>Encrypted </password>  
303 - <splitevery>0</splitevery>  
304 - <usetempfiles>N</usetempfiles>  
305 - <tempdirectory/>  
306 - </file>  
307 - <template>  
308 - <enabled>N</enabled>  
309 - <append>N</append>  
310 - <filename>template.xls</filename>  
311 - </template>  
312 - <fields>  
313 - <field>  
314 - <name>&#x59d3;&#x540d;</name>  
315 - <type>String</type>  
316 - <format/>  
317 - </field>  
318 - <field>  
319 - <name>&#x5de5;&#x53f7;</name>  
320 - <type>String</type>  
321 - <format/>  
322 - </field>  
323 - <field>  
324 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>  
325 - <type>String</type>  
326 - <format/>  
327 - </field>  
328 - <field>  
329 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
330 - <type>String</type>  
331 - <format/>  
332 - </field>  
333 - <field>  
334 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>  
335 - <type>String</type>  
336 - <format/>  
337 - </field>  
338 - <field>  
339 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
340 - <type>String</type>  
341 - <format/>  
342 - </field>  
343 - </fields>  
344 - <custom>  
345 - <header_font_name>arial</header_font_name>  
346 - <header_font_size>10</header_font_size>  
347 - <header_font_bold>N</header_font_bold>  
348 - <header_font_italic>N</header_font_italic>  
349 - <header_font_underline>no</header_font_underline>  
350 - <header_font_orientation>horizontal</header_font_orientation>  
351 - <header_font_color>black</header_font_color>  
352 - <header_background_color>none</header_background_color>  
353 - <header_row_height>255</header_row_height>  
354 - <header_alignment>left</header_alignment>  
355 - <header_image/>  
356 - <row_font_name>arial</row_font_name>  
357 - <row_font_size>10</row_font_size>  
358 - <row_font_color>black</row_font_color>  
359 - <row_background_color>none</row_background_color>  
360 - </custom>  
361 - <cluster_schema/>  
362 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
363 - <xloc>346</xloc>  
364 - <yloc>66</yloc>  
365 - <draw>Y</draw>  
366 - </GUI>  
367 - </step>  
368 -  
369 - <step>  
370 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
371 - <type>SelectValues</type>  
372 - <description/>  
373 - <distribute>Y</distribute>  
374 - <custom_distribution/>  
375 - <copies>1</copies>  
376 - <partitioning>  
377 - <method>none</method>  
378 - <schema_name/>  
379 - </partitioning>  
380 - <fields> <field> <name>personnel_name</name>  
381 - <rename>&#x59d3;&#x540d;</rename>  
382 - <length>-2</length>  
383 - <precision>-2</precision>  
384 - </field> <field> <name>job_code</name>  
385 - <rename>&#x5de5;&#x53f7;</rename>  
386 - <length>-2</length>  
387 - <precision>-2</precision>  
388 - </field> <field> <name>company</name>  
389 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>  
390 - <length>-2</length>  
391 - <precision>-2</precision>  
392 - </field> <field> <name>company_code</name>  
393 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
394 - <length>-2</length>  
395 - <precision>-2</precision>  
396 - </field> <field> <name>branche_company</name>  
397 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>  
398 - <length>-2</length>  
399 - <precision>-2</precision>  
400 - </field> <field> <name>branche_company_code</name>  
401 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
402 - <length>-2</length>  
403 - <precision>-2</precision>  
404 - </field> <select_unspecified>N</select_unspecified>  
405 - </fields> <cluster_schema/>  
406 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
407 - <xloc>221</xloc>  
408 - <yloc>66</yloc>  
409 - <draw>Y</draw>  
410 - </GUI>  
411 - </step>  
412 -  
413 - <step>  
414 - <name>&#x8868;&#x8f93;&#x5165;</name>  
415 - <type>TableInput</type>  
416 - <description/>  
417 - <distribute>Y</distribute>  
418 - <custom_distribution/>  
419 - <copies>1</copies>  
420 - <partitioning>  
421 - <method>none</method>  
422 - <schema_name/>  
423 - </partitioning>  
424 - <connection>bus_control_variable</connection>  
425 - <sql>SELECT &#x2a; FROM bsth_c_personnel&#x3b;</sql>  
426 - <limit>0</limit>  
427 - <lookup/>  
428 - <execute_each_row>N</execute_each_row>  
429 - <variables_active>N</variables_active>  
430 - <lazy_conversion_active>N</lazy_conversion_active>  
431 - <cluster_schema/>  
432 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
433 - <xloc>112</xloc>  
434 - <yloc>66</yloc>  
435 - <draw>Y</draw>  
436 - </GUI>  
437 - </step>  
438 -  
439 - <step_error_handling>  
440 - </step_error_handling>  
441 - <slave-step-copy-partition-distribution>  
442 -</slave-step-copy-partition-distribution>  
443 - <slave_transformation>N</slave_transformation>  
444 -  
445 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>cgsbm_in</name>
  14 + <default_value/>
  15 + <description>&#x5206;&#x516c;&#x53f8;&#x7f16;&#x7801;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;08&#x2f;09 09&#x3a;57&#x3a;38.471</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;08&#x2f;09 09&#x3a;57&#x3a;38.471</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + </notepads>
  88 + <connection>
  89 + <name>192.168.168.1_jwgl_dw</name>
  90 + <server>192.168.168.1</server>
  91 + <type>ORACLE</type>
  92 + <access>Native</access>
  93 + <database>orcl</database>
  94 + <port>1521</port>
  95 + <username>jwgl_dw</username>
  96 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  97 + <servername/>
  98 + <data_tablespace/>
  99 + <index_tablespace/>
  100 + <attributes>
  101 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  102 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  103 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  104 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  105 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  106 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  107 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  108 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  109 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  110 + </attributes>
  111 + </connection>
  112 + <connection>
  113 + <name>bus_control_variable</name>
  114 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  115 + <type>MYSQL</type>
  116 + <access>Native</access>
  117 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  118 + <port>3306</port>
  119 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  120 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  121 + <servername/>
  122 + <data_tablespace/>
  123 + <index_tablespace/>
  124 + <attributes>
  125 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  126 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  127 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  130 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  131 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  132 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  133 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  134 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  135 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  136 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  137 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  138 + </attributes>
  139 + </connection>
  140 + <connection>
  141 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  142 + <server>localhost</server>
  143 + <type>MYSQL</type>
  144 + <access>Native</access>
  145 + <database>control</database>
  146 + <port>3306</port>
  147 + <username>root</username>
  148 + <password>Encrypted </password>
  149 + <servername/>
  150 + <data_tablespace/>
  151 + <index_tablespace/>
  152 + <attributes>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  154 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  158 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  159 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  160 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_&#x672c;&#x673a;</name>
  169 + <server>localhost</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>control</database>
  173 + <port>3306</port>
  174 + <username>root</username>
  175 + <password>Encrypted </password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  185 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  186 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  187 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  192 + </attributes>
  193 + </connection>
  194 + <connection>
  195 + <name>xlab_mysql_youle</name>
  196 + <server>101.231.124.8</server>
  197 + <type>MYSQL</type>
  198 + <access>Native</access>
  199 + <database>xlab_youle</database>
  200 + <port>45687</port>
  201 + <username>xlab-youle</username>
  202 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  203 + <servername/>
  204 + <data_tablespace/>
  205 + <index_tablespace/>
  206 + <attributes>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  208 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  212 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  213 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  214 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  215 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  217 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  218 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  219 + </attributes>
  220 + </connection>
  221 + <connection>
  222 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  223 + <server>localhost</server>
  224 + <type>MYSQL</type>
  225 + <access>Native</access>
  226 + <database>xlab_youle</database>
  227 + <port>3306</port>
  228 + <username>root</username>
  229 + <password>Encrypted </password>
  230 + <servername/>
  231 + <data_tablespace/>
  232 + <index_tablespace/>
  233 + <attributes>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  235 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  239 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  240 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  241 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  242 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  243 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  245 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  246 + </attributes>
  247 + </connection>
  248 + <connection>
  249 + <name>xlab_youle</name>
  250 + <server/>
  251 + <type>MYSQL</type>
  252 + <access>JNDI</access>
  253 + <database>xlab_youle</database>
  254 + <port>1521</port>
  255 + <username/>
  256 + <password>Encrypted </password>
  257 + <servername/>
  258 + <data_tablespace/>
  259 + <index_tablespace/>
  260 + <attributes>
  261 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  264 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  265 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  266 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  267 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  268 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  270 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  271 + </attributes>
  272 + </connection>
  273 + <order>
  274 + <hop> <from>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
  275 + <hop> <from>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  276 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  277 + <hop> <from>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x5904;&#x7406;&#x5de5;&#x53f7;</to><enabled>Y</enabled> </hop>
  278 + <hop> <from>&#x5904;&#x7406;&#x5de5;&#x53f7;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  279 + <hop> <from>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</from><to>&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  280 + <hop> <from>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  281 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  282 + </order>
  283 + <step>
  284 + <name>Excel&#x8f93;&#x51fa;</name>
  285 + <type>ExcelOutput</type>
  286 + <description/>
  287 + <distribute>Y</distribute>
  288 + <custom_distribution/>
  289 + <copies>1</copies>
  290 + <partitioning>
  291 + <method>none</method>
  292 + <schema_name/>
  293 + </partitioning>
  294 + <header>Y</header>
  295 + <footer>N</footer>
  296 + <encoding/>
  297 + <append>N</append>
  298 + <add_to_result_filenames>Y</add_to_result_filenames>
  299 + <file>
  300 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  301 + <extention>xls</extention>
  302 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  303 + <create_parent_folder>N</create_parent_folder>
  304 + <split>N</split>
  305 + <add_date>N</add_date>
  306 + <add_time>N</add_time>
  307 + <SpecifyFormat>N</SpecifyFormat>
  308 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  309 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  310 + <autosizecolums>N</autosizecolums>
  311 + <nullisblank>N</nullisblank>
  312 + <protect_sheet>N</protect_sheet>
  313 + <password>Encrypted </password>
  314 + <splitevery>0</splitevery>
  315 + <usetempfiles>N</usetempfiles>
  316 + <tempdirectory/>
  317 + </file>
  318 + <template>
  319 + <enabled>N</enabled>
  320 + <append>N</append>
  321 + <filename>template.xls</filename>
  322 + </template>
  323 + <fields>
  324 + <field>
  325 + <name>&#x59d3;&#x540d;</name>
  326 + <type>String</type>
  327 + <format/>
  328 + </field>
  329 + <field>
  330 + <name>&#x5de5;&#x53f7;</name>
  331 + <type>String</type>
  332 + <format/>
  333 + </field>
  334 + <field>
  335 + <name>&#x6027;&#x522b;</name>
  336 + <type>String</type>
  337 + <format/>
  338 + </field>
  339 + <field>
  340 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  341 + <type>String</type>
  342 + <format/>
  343 + </field>
  344 + <field>
  345 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  346 + <type>String</type>
  347 + <format/>
  348 + </field>
  349 + <field>
  350 + <name>&#x4e00;&#x5361;&#x901a;&#x53f7;</name>
  351 + <type>String</type>
  352 + <format/>
  353 + </field>
  354 + <field>
  355 + <name>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</name>
  356 + <type>String</type>
  357 + <format/>
  358 + </field>
  359 + <field>
  360 + <name>&#x5c97;&#x4f4d;</name>
  361 + <type>String</type>
  362 + <format/>
  363 + </field>
  364 + <field>
  365 + <name>&#x5907;&#x6ce8;</name>
  366 + <type>String</type>
  367 + <format/>
  368 + </field>
  369 + </fields>
  370 + <custom>
  371 + <header_font_name>arial</header_font_name>
  372 + <header_font_size>10</header_font_size>
  373 + <header_font_bold>N</header_font_bold>
  374 + <header_font_italic>N</header_font_italic>
  375 + <header_font_underline>no</header_font_underline>
  376 + <header_font_orientation>horizontal</header_font_orientation>
  377 + <header_font_color>black</header_font_color>
  378 + <header_background_color>none</header_background_color>
  379 + <header_row_height>255</header_row_height>
  380 + <header_alignment>left</header_alignment>
  381 + <header_image/>
  382 + <row_font_name>arial</row_font_name>
  383 + <row_font_size>10</row_font_size>
  384 + <row_font_color>black</row_font_color>
  385 + <row_background_color>none</row_background_color>
  386 + </custom>
  387 + <cluster_schema/>
  388 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  389 + <xloc>625</xloc>
  390 + <yloc>443</yloc>
  391 + <draw>Y</draw>
  392 + </GUI>
  393 + </step>
  394 +
  395 + <step>
  396 + <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</name>
  397 + <type>TableInput</type>
  398 + <description/>
  399 + <distribute>Y</distribute>
  400 + <custom_distribution/>
  401 + <copies>1</copies>
  402 + <partitioning>
  403 + <method>none</method>
  404 + <schema_name/>
  405 + </partitioning>
  406 + <connection>bus_control_variable</connection>
  407 + <sql>SELECT &#x2a; FROM bsth_c_personnel&#xa;where concat&#x28;company_code, &#x27;_&#x27;, branche_company_code&#x29; in &#x28;&#x24;&#x7b;cgsbm_in&#x7d;&#x29;</sql>
  408 + <limit>0</limit>
  409 + <lookup/>
  410 + <execute_each_row>N</execute_each_row>
  411 + <variables_active>Y</variables_active>
  412 + <lazy_conversion_active>N</lazy_conversion_active>
  413 + <cluster_schema/>
  414 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  415 + <xloc>112</xloc>
  416 + <yloc>66</yloc>
  417 + <draw>Y</draw>
  418 + </GUI>
  419 + </step>
  420 +
  421 + <step>
  422 + <name>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</name>
  423 + <type>ScriptValueMod</type>
  424 + <description/>
  425 + <distribute>Y</distribute>
  426 + <custom_distribution/>
  427 + <copies>1</copies>
  428 + <partitioning>
  429 + <method>none</method>
  430 + <schema_name/>
  431 + </partitioning>
  432 + <compatible>N</compatible>
  433 + <optimizationLevel>9</optimizationLevel>
  434 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  435 + <jsScript_name>Script 1</jsScript_name>
  436 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var up_code &#x3d; &#x27;88&#x27;&#x3b;&#xa;var sexType &#x3d; &#x27;sexType&#x27;&#x3b;&#xa;var gzType &#x3d; &#x27;gzType&#x27;&#x3b;</jsScript_script>
  437 + </jsScript> </jsScripts> <fields> <field> <name>up_code</name>
  438 + <rename>up_code</rename>
  439 + <type>String</type>
  440 + <length>-1</length>
  441 + <precision>-1</precision>
  442 + <replace>N</replace>
  443 + </field> <field> <name>sexType</name>
  444 + <rename>sexType</rename>
  445 + <type>String</type>
  446 + <length>-1</length>
  447 + <precision>-1</precision>
  448 + <replace>N</replace>
  449 + </field> <field> <name>gzType</name>
  450 + <rename>gzType</rename>
  451 + <type>String</type>
  452 + <length>-1</length>
  453 + <precision>-1</precision>
  454 + <replace>N</replace>
  455 + </field> </fields> <cluster_schema/>
  456 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  457 + <xloc>235</xloc>
  458 + <yloc>65</yloc>
  459 + <draw>Y</draw>
  460 + </GUI>
  461 + </step>
  462 +
  463 + <step>
  464 + <name>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</name>
  465 + <type>DBLookup</type>
  466 + <description/>
  467 + <distribute>Y</distribute>
  468 + <custom_distribution/>
  469 + <copies>1</copies>
  470 + <partitioning>
  471 + <method>none</method>
  472 + <schema_name/>
  473 + </partitioning>
  474 + <connection>bus_control_variable</connection>
  475 + <cache>N</cache>
  476 + <cache_load_all>N</cache_load_all>
  477 + <cache_size>0</cache_size>
  478 + <lookup>
  479 + <schema/>
  480 + <table>bsth_c_sys_dictionary</table>
  481 + <orderby/>
  482 + <fail_on_multiple>N</fail_on_multiple>
  483 + <eat_row_on_failure>N</eat_row_on_failure>
  484 + <key>
  485 + <name>gzType</name>
  486 + <field>d_group</field>
  487 + <condition>&#x3d;</condition>
  488 + <name2/>
  489 + </key>
  490 + <key>
  491 + <name>posts</name>
  492 + <field>d_code</field>
  493 + <condition>&#x3d;</condition>
  494 + <name2/>
  495 + </key>
  496 + <value>
  497 + <name>d_name</name>
  498 + <rename>gz</rename>
  499 + <default/>
  500 + <type>String</type>
  501 + </value>
  502 + </lookup>
  503 + <cluster_schema/>
  504 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  505 + <xloc>423</xloc>
  506 + <yloc>235</yloc>
  507 + <draw>Y</draw>
  508 + </GUI>
  509 + </step>
  510 +
  511 + <step>
  512 + <name>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</name>
  513 + <type>DBLookup</type>
  514 + <description/>
  515 + <distribute>Y</distribute>
  516 + <custom_distribution/>
  517 + <copies>1</copies>
  518 + <partitioning>
  519 + <method>none</method>
  520 + <schema_name/>
  521 + </partitioning>
  522 + <connection>bus_control_variable</connection>
  523 + <cache>N</cache>
  524 + <cache_load_all>N</cache_load_all>
  525 + <cache_size>0</cache_size>
  526 + <lookup>
  527 + <schema/>
  528 + <table>bsth_c_sys_dictionary</table>
  529 + <orderby/>
  530 + <fail_on_multiple>N</fail_on_multiple>
  531 + <eat_row_on_failure>N</eat_row_on_failure>
  532 + <key>
  533 + <name>sexType</name>
  534 + <field>d_group</field>
  535 + <condition>&#x3d;</condition>
  536 + <name2/>
  537 + </key>
  538 + <key>
  539 + <name>personnel_type</name>
  540 + <field>d_code</field>
  541 + <condition>&#x3d;</condition>
  542 + <name2/>
  543 + </key>
  544 + <value>
  545 + <name>d_name</name>
  546 + <rename>sex</rename>
  547 + <default/>
  548 + <type>String</type>
  549 + </value>
  550 + </lookup>
  551 + <cluster_schema/>
  552 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  553 + <xloc>423</xloc>
  554 + <yloc>339</yloc>
  555 + <draw>Y</draw>
  556 + </GUI>
  557 + </step>
  558 +
  559 + <step>
  560 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  561 + <type>SelectValues</type>
  562 + <description/>
  563 + <distribute>Y</distribute>
  564 + <custom_distribution/>
  565 + <copies>1</copies>
  566 + <partitioning>
  567 + <method>none</method>
  568 + <schema_name/>
  569 + </partitioning>
  570 + <fields> <field> <name>personnel_name</name>
  571 + <rename>&#x59d3;&#x540d;</rename>
  572 + <length>-2</length>
  573 + <precision>-2</precision>
  574 + </field> <field> <name>jc</name>
  575 + <rename>&#x5de5;&#x53f7;</rename>
  576 + <length>-2</length>
  577 + <precision>-2</precision>
  578 + </field> <field> <name>sex</name>
  579 + <rename>&#x6027;&#x522b;</rename>
  580 + <length>-2</length>
  581 + <precision>-2</precision>
  582 + </field> <field> <name>gs</name>
  583 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  584 + <length>-2</length>
  585 + <precision>-2</precision>
  586 + </field> <field> <name>fgs</name>
  587 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  588 + <length>-2</length>
  589 + <precision>-2</precision>
  590 + </field> <field> <name>ic_card_code</name>
  591 + <rename>&#x4e00;&#x5361;&#x901a;&#x53f7;</rename>
  592 + <length>-2</length>
  593 + <precision>-2</precision>
  594 + </field> <field> <name>papers_code</name>
  595 + <rename>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</rename>
  596 + <length>-2</length>
  597 + <precision>-2</precision>
  598 + </field> <field> <name>gz</name>
  599 + <rename>&#x5c97;&#x4f4d;</rename>
  600 + <length>-2</length>
  601 + <precision>-2</precision>
  602 + </field> <field> <name>remark</name>
  603 + <rename>&#x5907;&#x6ce8;</rename>
  604 + <length>-2</length>
  605 + <precision>-2</precision>
  606 + </field> <select_unspecified>N</select_unspecified>
  607 + </fields> <cluster_schema/>
  608 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  609 + <xloc>623</xloc>
  610 + <yloc>339</yloc>
  611 + <draw>Y</draw>
  612 + </GUI>
  613 + </step>
  614 +
  615 + <step>
  616 + <name>&#x5904;&#x7406;&#x5de5;&#x53f7;</name>
  617 + <type>ScriptValueMod</type>
  618 + <description/>
  619 + <distribute>Y</distribute>
  620 + <custom_distribution/>
  621 + <copies>1</copies>
  622 + <partitioning>
  623 + <method>none</method>
  624 + <schema_name/>
  625 + </partitioning>
  626 + <compatible>N</compatible>
  627 + <optimizationLevel>9</optimizationLevel>
  628 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  629 + <jsScript_name>Script 1</jsScript_name>
  630 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jc&#x3b;&#xa;jc &#x3d; job_code.split&#x28;&#x22;-&#x22;&#x29;&#x5b;1&#x5d;&#x3b;</jsScript_script>
  631 + </jsScript> </jsScripts> <fields> <field> <name>jc</name>
  632 + <rename>jc</rename>
  633 + <type>String</type>
  634 + <length>-1</length>
  635 + <precision>-1</precision>
  636 + <replace>N</replace>
  637 + </field> </fields> <cluster_schema/>
  638 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  639 + <xloc>423</xloc>
  640 + <yloc>444</yloc>
  641 + <draw>Y</draw>
  642 + </GUI>
  643 + </step>
  644 +
  645 + <step>
  646 + <name>&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  647 + <type>DBLookup</type>
  648 + <description/>
  649 + <distribute>Y</distribute>
  650 + <custom_distribution/>
  651 + <copies>1</copies>
  652 + <partitioning>
  653 + <method>none</method>
  654 + <schema_name/>
  655 + </partitioning>
  656 + <connection>bus_control_variable</connection>
  657 + <cache>N</cache>
  658 + <cache_load_all>N</cache_load_all>
  659 + <cache_size>0</cache_size>
  660 + <lookup>
  661 + <schema/>
  662 + <table>bsth_c_business</table>
  663 + <orderby/>
  664 + <fail_on_multiple>N</fail_on_multiple>
  665 + <eat_row_on_failure>N</eat_row_on_failure>
  666 + <key>
  667 + <name>up_code</name>
  668 + <field>up_code</field>
  669 + <condition>&#x3d;</condition>
  670 + <name2/>
  671 + </key>
  672 + <key>
  673 + <name>company_code</name>
  674 + <field>business_code</field>
  675 + <condition>&#x3d;</condition>
  676 + <name2/>
  677 + </key>
  678 + <value>
  679 + <name>business_name</name>
  680 + <rename>gs</rename>
  681 + <default/>
  682 + <type>String</type>
  683 + </value>
  684 + </lookup>
  685 + <cluster_schema/>
  686 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  687 + <xloc>361</xloc>
  688 + <yloc>65</yloc>
  689 + <draw>Y</draw>
  690 + </GUI>
  691 + </step>
  692 +
  693 + <step>
  694 + <name>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  695 + <type>DBLookup</type>
  696 + <description/>
  697 + <distribute>Y</distribute>
  698 + <custom_distribution/>
  699 + <copies>1</copies>
  700 + <partitioning>
  701 + <method>none</method>
  702 + <schema_name/>
  703 + </partitioning>
  704 + <connection>bus_control_variable</connection>
  705 + <cache>N</cache>
  706 + <cache_load_all>N</cache_load_all>
  707 + <cache_size>0</cache_size>
  708 + <lookup>
  709 + <schema/>
  710 + <table>bsth_c_business</table>
  711 + <orderby/>
  712 + <fail_on_multiple>N</fail_on_multiple>
  713 + <eat_row_on_failure>N</eat_row_on_failure>
  714 + <key>
  715 + <name>company_code</name>
  716 + <field>up_code</field>
  717 + <condition>&#x3d;</condition>
  718 + <name2/>
  719 + </key>
  720 + <key>
  721 + <name>branche_company_code</name>
  722 + <field>business_code</field>
  723 + <condition>&#x3d;</condition>
  724 + <name2/>
  725 + </key>
  726 + <value>
  727 + <name>business_name</name>
  728 + <rename>fgs</rename>
  729 + <default/>
  730 + <type>String</type>
  731 + </value>
  732 + </lookup>
  733 + <cluster_schema/>
  734 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  735 + <xloc>479</xloc>
  736 + <yloc>67</yloc>
  737 + <draw>Y</draw>
  738 + </GUI>
  739 + </step>
  740 +
  741 + <step_error_handling>
  742 + </step_error_handling>
  743 + <slave-step-copy-partition-distribution>
  744 +</slave-step-copy-partition-distribution>
  745 + <slave_transformation>N</slave_transformation>
  746 +
  747 +</transformation>
src/main/resources/static/pages/base/line/edit.html
@@ -46,6 +46,10 @@ @@ -46,6 +46,10 @@
46 46
47 <!-- 表单分组组件 form-group START --> 47 <!-- 表单分组组件 form-group START -->
48 <div class="form-group"> 48 <div class="form-group">
  49 + <!-- in_use字段 START -->
  50 + <input type="hidden" name="inUse" id="inUseInput" placeholder="隐藏字段" readonly="readonly">
  51 + <!-- in_use字段 END -->
  52 +
49 <!-- 线路编码 (* 必填项) START --> 53 <!-- 线路编码 (* 必填项) START -->
50 <div class="col-md-6"> 54 <div class="col-md-6">
51 <label class="control-label col-md-5"> 55 <label class="control-label col-md-5">
src/main/resources/static/pages/base/line/js/line-add-form.js
@@ -9,12 +9,12 @@ @@ -9,12 +9,12 @@
9 9
10 $(function(){ 10 $(function(){
11 /** 获取线路编码 @param cb <回调函数> */ 11 /** 获取线路编码 @param cb <回调函数> */
12 - function getLineCode(cb) {  
13 - /** get请求获取线路编码。返回线路编码值 */ 12 + /*function getLineCode(cb) {
  13 + *//** get请求获取线路编码。返回线路编码值 *//*
14 $.get('/line/getLineCode',function(lineCode){ 14 $.get('/line/getLineCode',function(lineCode){
15 return cb && cb(lineCode); 15 return cb && cb(lineCode);
16 }); 16 });
17 - } 17 + }*/
18 /** 填充分公司下拉框选择值 */ 18 /** 填充分公司下拉框选择值 */
19 function setbrancheCompanySelectOptions(){ 19 function setbrancheCompanySelectOptions(){
20 // 获取公司下拉框选择值 20 // 获取公司下拉框选择值
@@ -48,11 +48,11 @@ $(function(){ @@ -48,11 +48,11 @@ $(function(){
48 $('#shortNameInput').val(pinyin.getCamelChars(val)); 48 $('#shortNameInput').val(pinyin.getCamelChars(val));
49 } 49 }
50 50
51 - /** 获取线路编码元素并设值 @param 匿名函数 */ 51 + /** 获取线路编码元素并设值 @param 匿名函数 *//*
52 getLineCode(function(result){ 52 getLineCode(function(result){
53 // 设置线路编码值 53 // 设置线路编码值
54 $('#lineCodeInput').val(result); 54 $('#lineCodeInput').val(result);
55 - }) 55 + })*/
56 /** 输入线路名称,自动生成英文名称和线路简称 */ 56 /** 输入线路名称,自动生成英文名称和线路简称 */
57 $('#nameInput').on('keyup', setPinYin); 57 $('#nameInput').on('keyup', setPinYin);
58 /** 开辟日期 日期控件 <format:日期控件时间格式;locale:语言> */ 58 /** 开辟日期 日期控件 <format:日期控件时间格式;locale:语言> */
@@ -196,7 +196,7 @@ $(function(){ @@ -196,7 +196,7 @@ $(function(){
196 // 如果大于零,则已存在录入的线路编码;否则不存在 196 // 如果大于零,则已存在录入的线路编码;否则不存在
197 if(len > 0) { 197 if(len > 0) {
198 198
199 - // 定义已有的线路编码 199 + /*// 定义已有的线路编码
200 var oldCode = params.lineCode; 200 var oldCode = params.lineCode;
201 201
202 // 自动获取线路编码 202 // 自动获取线路编码
@@ -210,8 +210,11 @@ $(function(){ @@ -210,8 +210,11 @@ $(function(){
210 btn : [ '确认提示并提交', '取消' ] 210 btn : [ '确认提示并提交', '取消' ]
211 }, submit); 211 }, submit);
212 212
213 - });  
214 - 213 + });*/
  214 + layer.open({
  215 + title: '消息提示'
  216 + ,content: '线路编码【'+params.lineCode+'】已存在,请重新输入编码!'
  217 + });
215 } else { 218 } else {
216 219
217 // 提交 220 // 提交
src/main/resources/static/pages/base/line/js/line-edit-form.js
@@ -100,10 +100,13 @@ @@ -100,10 +100,13 @@
100 selectTemp(function(){ 100 selectTemp(function(){
101 /** 根据ID查询详细信息 */ 101 /** 根据ID查询详细信息 */
102 $get('/line/' + lineId ,null, function(result){ 102 $get('/line/' + lineId ,null, function(result){
  103 + debugger;
103 // 如果不为空 104 // 如果不为空
104 if(result) { 105 if(result) {
105 // 定义日期格式 106 // 定义日期格式
106 - var fs = 'YYYY-MM-DD' 107 + var fs = 'YYYY-MM-DD';
  108 + // 设置inUse
  109 + $('#inUseInput').val(result.inUse);
107 // 设置日期 110 // 设置日期
108 result.openDate = moment(result.openDate).format(fs); 111 result.openDate = moment(result.openDate).format(fs);
109 /** 填充修改线路表单元素值 @param:<result:数据结果集;line_edit_form:表单元素> */ 112 /** 填充修改线路表单元素值 @param:<result:数据结果集;line_edit_form:表单元素> */
@@ -242,7 +245,7 @@ @@ -242,7 +245,7 @@
242 // 提交 245 // 提交
243 submit(); 246 submit();
244 } else { 247 } else {
245 - // 定义已有的线路编码 248 + /*// 定义已有的线路编码
246 var oldCode = params.lineCode; 249 var oldCode = params.lineCode;
247 // 重新设置提交参数线路编码值 250 // 重新设置提交参数线路编码值
248 params.lineCode = lineId; 251 params.lineCode = lineId;
@@ -250,7 +253,11 @@ @@ -250,7 +253,11 @@
250 layer.confirm('线路编码【'+oldCode+'】已存在!自动顺延为如下:<br>线路编码:'+lineId, { 253 layer.confirm('线路编码【'+oldCode+'】已存在!自动顺延为如下:<br>线路编码:'+lineId, {
251 btn : [ '确认提示并提交', '取消' ] 254 btn : [ '确认提示并提交', '取消' ]
252 }, submit); 255 }, submit);
253 - 256 + */
  257 + layer.open({
  258 + title: '消息提示'
  259 + ,content: '线路编码【'+params.lineCode+'】已存在,请重新输入编码!'
  260 + });
254 } 261 }
255 } else { 262 } else {
256 // 提交 263 // 提交
src/main/resources/static/pages/base/line/js/line-list-table.js
@@ -336,7 +336,7 @@ @@ -336,7 +336,7 @@
336 var arrChk = $("input[type='checkbox']:checked"); 336 var arrChk = $("input[type='checkbox']:checked");
337 var len = arrChk.length; 337 var len = arrChk.length;
338 // 选中行ID与线路名称 338 // 选中行ID与线路名称
339 - var id = '', lineName = ''; 339 + var id = '';
340 if(len>1) { 340 if(len>1) {
341 // 弹出添加成功提示消息 341 // 弹出添加成功提示消息
342 layer.msg('存在多选,请只选中一行!'); 342 layer.msg('存在多选,请只选中一行!');
@@ -370,4 +370,37 @@ @@ -370,4 +370,37 @@
370 window.location.href = "/pages/base/line/map.html?no="+id; 370 window.location.href = "/pages/base/line/map.html?no="+id;
371 } 371 }
372 }); 372 });
  373 +
  374 + // 导出线路站点
  375 + $('#datatable_ajax_tools #exportStation').on('click', function() {
  376 + // 获取选中行.
  377 + var arrChk = $("input[type='checkbox']:checked");
  378 + var len = arrChk.length;
  379 + // 选中行ID与线路名称
  380 + var id = '';
  381 + if(len>1) {
  382 + // 弹出添加成功提示消息
  383 + layer.msg('存在多选,请只选中一行!');
  384 + return ;
  385 + }else if(len==0) {
  386 + // 弹出添加成功提示消息
  387 + layer.msg('请选中一条线路!');
  388 + return ;
  389 + }else {
  390 + id = arrChk.data('id');
  391 + var param = {};
  392 + param.id = id;
  393 + window.open('/stationroute/export?id='+id);
  394 +
  395 + /*$.get("/stationroute/export",param,function(result) {
  396 + if(result.status == "ERROR") {
  397 + layer.msg("导出文件失败!");
  398 + } else if(result.status == "ERROR") {
  399 + layer.msg("导出文件成功!");
  400 + } else {
  401 + layer.msg("未知异常!");
  402 + }
  403 + });*/
  404 + }
  405 + });
373 })(); 406 })();
374 \ No newline at end of file 407 \ No newline at end of file
src/main/resources/static/pages/base/line/list.html
@@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
5 <div class="page-title"> 5 <div class="page-title">
6 <h1>线路信息</h1> 6 <h1>线路信息</h1>
7 </div> 7 </div>
8 -</div> 8 +
9 <!-- 片段标题 END --> 9 <!-- 片段标题 END -->
10 10
11 <!-- 线路信息导航栏组件 START --> 11 <!-- 线路信息导航栏组件 START -->
@@ -40,6 +40,9 @@ @@ -40,6 +40,9 @@
40 <li> 40 <li>
41 <a href="javascript:;" data-action="1" id="editRoute" class="tool-action"> <i class="fa fa-level-up"></i>上传GPS生成路线</a> 41 <a href="javascript:;" data-action="1" id="editRoute" class="tool-action"> <i class="fa fa-level-up"></i>上传GPS生成路线</a>
42 </li> 42 </li>
  43 + <li>
  44 + <a href="javascript:;" data-action="2" id="exportStation" class="tool-action"> <i class="fa fa-level-up"></i>导出线路站点Excel</a>
  45 + </li>
43 <!-- <li><a href="javascript:;" data-action="0" class="tool-action"> <i class="fa fa-print"></i> 打印 46 <!-- <li><a href="javascript:;" data-action="0" class="tool-action"> <i class="fa fa-print"></i> 打印
44 </a></li> 47 </a></li>
45 <li><a href="javascript:;" data-action="1" class="tool-action"> <i class="fa fa-copy"></i> 复制 48 <li><a href="javascript:;" data-action="1" class="tool-action"> <i class="fa fa-copy"></i> 复制
@@ -151,6 +154,7 @@ @@ -151,6 +154,7 @@
151 </div> 154 </div>
152 </div> 155 </div>
153 </div> 156 </div>
  157 +</div>
154 <!-- 158 <!--
155 159
156 <td style="vertical-align: middle;"> 160 <td style="vertical-align: middle;">
src/main/resources/static/pages/base/stationroute/addstationstemplate.html
@@ -212,17 +212,25 @@ $(&#39;#add_station_template_mobal&#39;).on(&#39;AddStationTempMobal.show&#39;, function(e,map,a @@ -212,17 +212,25 @@ $(&#39;#add_station_template_mobal&#39;).on(&#39;AddStationTempMobal.show&#39;, function(e,map,a
212 // 定义路段信息字符串 212 // 定义路段信息字符串
213 var sectionJSON = JSON.stringify(jsonArray); 213 var sectionJSON = JSON.stringify(jsonArray);
214 // 路段信息JSON字符串 214 // 路段信息JSON字符串
215 - params.sectionJSON = sectionJSON;  
216 - addSave(params,addLine.id,directionData); 215 + // if(sectionJSON != null && sectionJSON != "") {
  216 + params.sectionJSON = sectionJSON;
  217 + addSave(params,addLine.id,directionData);
  218 + /* } else {
  219 + layer.msg('百度地图上没有此线路的相应路段,请更换方式规划!!!');
  220 + } */
217 }else { 221 }else {
218 // 根据坐标点获取两点之间的折线路段 222 // 根据坐标点获取两点之间的折线路段
219 map.getSectionListPlonly(stationdataList,function(sectiondata) { 223 map.getSectionListPlonly(stationdataList,function(sectiondata) {
220 // 定义路段信息字符串 224 // 定义路段信息字符串
221 var sectionJSON = JSON.stringify(sectiondata); 225 var sectionJSON = JSON.stringify(sectiondata);
222 // 路段信息JSON字符串 226 // 路段信息JSON字符串
223 - params.sectionJSON = sectionJSON;  
224 - addSave(params,addLine.id,directionData);  
225 - 227 + //if(sectionJSON != null && sectionJSON != "") {
  228 + params.sectionJSON = sectionJSON;
  229 + addSave(params,addLine.id,directionData);
  230 + /* } else {
  231 + layer.msg('无法生成路段,请重试!');
  232 + return;
  233 + } */
226 }); 234 });
227 } 235 }
228 }); 236 });
src/main/resources/static/pages/base/stationroute/deletesection.html
@@ -193,10 +193,24 @@ $(&#39;#delete_section_mobal&#39;).on(&#39;deleteSectionMobal.show&#39;,function(e, ajaxd, line, @@ -193,10 +193,24 @@ $(&#39;#delete_section_mobal&#39;).on(&#39;deleteSectionMobal.show&#39;,function(e, ajaxd, line,
193 page = 0; 193 page = 0;
194 loadTableDate(params, true); 194 loadTableDate(params, true);
195 } 195 }
  196 + function getLineCode(id) {
  197 + var lineCode;
  198 + $.ajax({
  199 + url: "/line/findById", //请求地址
  200 + type: "Get",
  201 + async:false,
  202 + //请求方式
  203 + data: { id : id}, //请求参数
  204 + success: function (result) {
  205 + lineCode = result.lineCode;
  206 + }
  207 + });
  208 + return lineCode;
  209 + }
196 function getParams() { 210 function getParams() {
197 // 搜索参数集合 211 // 搜索参数集合
198 params = {}; 212 params = {};
199 - params.lineCode_eq = line.id; 213 + params.lineCode_eq = getLineCode(line.id);
200 params.directions_eq = delBatch.dir; 214 params.directions_eq = delBatch.dir;
201 params.destroy_eq = "0"; //默认查没有撤销的路段 215 params.destroy_eq = "0"; //默认查没有撤销的路段
202 return params; 216 return params;
src/main/resources/static/pages/base/stationroute/deletestation.html
@@ -194,10 +194,24 @@ $(&#39;#delete_station_mobal&#39;).on(&#39;deleteStationMobal.show&#39;,function(e, ajaxd, line, @@ -194,10 +194,24 @@ $(&#39;#delete_station_mobal&#39;).on(&#39;deleteStationMobal.show&#39;,function(e, ajaxd, line,
194 page = 0; 194 page = 0;
195 loadTableDate(params, true); 195 loadTableDate(params, true);
196 } 196 }
  197 + function getLineCode(id) {
  198 + var lineCode;
  199 + $.ajax({
  200 + url: "/line/findById", //请求地址
  201 + type: "Get",
  202 + async:false,
  203 + //请求方式
  204 + data: { id : id}, //请求参数
  205 + success: function (result) {
  206 + lineCode = result.lineCode;
  207 + }
  208 + });
  209 + return lineCode;
  210 + }
197 function getParams() { 211 function getParams() {
198 // 搜索参数集合 212 // 搜索参数集合
199 params = {}; 213 params = {};
200 - params.lineCode_eq = line.id; 214 + params.lineCode_eq = getLineCode(line.id);
201 params.directions_eq = delBatch.dir; 215 params.directions_eq = delBatch.dir;
202 params.destroy_eq = "0"; //默认查没有撤销的站点 216 params.destroy_eq = "0"; //默认查没有撤销的站点
203 return params; 217 return params;
src/main/resources/static/pages/base/stationroute/js/stationroute-list-reload.js
@@ -58,13 +58,16 @@ $(function(){ @@ -58,13 +58,16 @@ $(function(){
58 /** 初始化下行树 @param:<Line.id:线路Id;1:下行> */ 58 /** 初始化下行树 @param:<Line.id:线路Id;1:下行> */
59 PublicFunctions.TreeUpOrDown(Line.id,'1'); 59 PublicFunctions.TreeUpOrDown(Line.id,'1');
60 60
  61 + var start =new Date();
  62 + console.log(start);
61 /** 查询路段信息 @param:<Line.id:线路Id;dir:方向> @return:data:路段数据 */ 63 /** 查询路段信息 @param:<Line.id:线路Id;dir:方向> @return:data:路段数据 */
62 GetAjaxData.getSectionRouteInfo(Line.id,dir,function(data) { 64 GetAjaxData.getSectionRouteInfo(Line.id,dir,function(data) {
63 /** 在地图上画出线路走向 @param:<Line.id:线路Id;0:上行;data:路段数据> */ 65 /** 在地图上画出线路走向 @param:<Line.id:线路Id;0:上行;data:路段数据> */
64 PublicFunctions.linePanlThree(Line.id,data,dir); 66 PublicFunctions.linePanlThree(Line.id,data,dir);
65 67
66 }); 68 });
67 - 69 + var finish =new Date();
  70 + console.log(finish);
68 },500); 71 },500);
69 72
70 }else { 73 }else {
src/main/resources/static/pages/base/timesmodel/js/add-form-wizard.js
@@ -505,6 +505,14 @@ var SKBFormWizard = function() { @@ -505,6 +505,14 @@ var SKBFormWizard = function() {
505 'bxrc' : {required : true},// 班型人次,必填项 505 'bxrc' : {required : true},// 班型人次,必填项
506 'linePlayType' : {required : true},// 线路规划类型,必填项 506 'linePlayType' : {required : true},// 线路规划类型,必填项
507 'zdzcrl' : {number : true,digits : true}, 507 'zdzcrl' : {number : true,digits : true},
  508 +
  509 +
  510 + 'gfupStopTime' : {required : true,number : true}, // 高峰上行停站时间,必填项、必须为整数.
  511 + 'gfdownStopTime' : {required : true,number : true}, // 高峰下行停站时间,必填项、必须为整数.
  512 + 'dgupStopTime' : {required : true,number : true}, // 低谷上行停站时间,必填项、必须为整数.
  513 + 'dgdownStopTime' : {required : true,number : true}, // 低谷下行停站时间,必填项、必须为整数.
  514 + 'dgmaxfcjx' : {required : true,number : true}, // 低谷最大发车间隙,必填项、必须为整数.
  515 + 'dgmaxtzsj' : {required : true,number : true}, // 低谷最大停站时间,必填项、必须为整数.
508 }, 516 },
509 517
510 /** 518 /**
src/main/resources/static/pages/base/timesmodel/js/base-fun.js
@@ -794,31 +794,36 @@ var BaseFun = function() { @@ -794,31 +794,36 @@ var BaseFun = function() {
794 794
795 // 第一步 根据表单中的参数得到所有路牌下的班次数[从各路牌下的第一个班次发车时间 到 营运结束时间点并且是连续的班次数]. 795 // 第一步 根据表单中的参数得到所有路牌下的班次数[从各路牌下的第一个班次发车时间 到 营运结束时间点并且是连续的班次数].
796 var allLMapBc = baseF.GetByArgusInitAllLpDownedBcCollections(saa , cara , map , seMap , dataMap); 796 var allLMapBc = baseF.GetByArgusInitAllLpDownedBcCollections(saa , cara , map , seMap , dataMap);
797 -  
798 - // 第二步 纵向调整 797 + //return {'json':allLMapBc,'bxrcgs':null};
  798 +
  799 + // 第二步 纵向调整
799 baseF.evenStartDepartSpace(allLMapBc , dataMap); 800 baseF.evenStartDepartSpace(allLMapBc , dataMap);
800 - 801 + //return {'json':allLMapBc,'bxrcgs':null};
  802 +
801 // 第三步 剔除首末班车以外的班次,并确认首末班车. 803 // 第三步 剔除首末班车以外的班次,并确认首末班车.
802 var markArray = baseF.markFirstAndLastBusAlsoDietNotInRangeBc(allLMapBc , dataMap); 804 var markArray = baseF.markFirstAndLastBusAlsoDietNotInRangeBc(allLMapBc , dataMap);
803 - // return {'json':markArray,'bxrcgs':null};  
804 - // 第四步 横向调整 805 + //return {'json':markArray,'bxrcgs':null};
  806 + // 第四步 横向调整
805 baseF.resizeByPitStopTime(cara , markArray , dataMap); 807 baseF.resizeByPitStopTime(cara , markArray , dataMap);
806 - // return {'json':markArray,'bxrcgs':null}; 808 + //return {'json':markArray,'bxrcgs':null};
807 /** 809 /**
808 * 第五步 把班型合理的分配到各个路牌上. 810 * 第五步 把班型合理的分配到各个路牌上.
809 - * 811 + *
810 * 切割班型/人次/配车数 字符串 为 数组对象. 812 * 切割班型/人次/配车数 字符串 为 数组对象.
811 - * 813 + *
812 * 把班型分配到对应的具体路牌上. 814 * 把班型分配到对应的具体路牌上.
813 */ 815 */
814 // 切割班型/人次/配车数 字符串 为 数组对象. 816 // 切割班型/人次/配车数 字符串 为 数组对象.
815 var list = baseF.getBxRcListCollection(map.bxrc); 817 var list = baseF.getBxRcListCollection(map.bxrc);
816 // 把班型分配到对应的具体路牌上. 818 // 把班型分配到对应的具体路牌上.
817 baseF.bxAlloTotLp(list,cara); 819 baseF.bxAlloTotLp(list,cara);
  820 + //return {'json':markArray,'bxrcgs':null};
  821 +
  822 +
818 // 第六步 抽车来满足工时. 823 // 第六步 抽车来满足工时.
819 var tempA = baseF.abstractCar(list , markArray , cara , saa , dataMap , map); 824 var tempA = baseF.abstractCar(list , markArray , cara , saa , dataMap , map);
820 // return {'json':tempA,'bxrcgs':null}; 825 // return {'json':tempA,'bxrcgs':null};
821 - // 第七步 确定吃饭时间. 826 + // 第七步 确定吃饭时间.
822 baseF.markeEatTime(list , tempA , cara , saa , dataMap ,map); 827 baseF.markeEatTime(list , tempA , cara , saa , dataMap ,map);
823 baseF.resizeByPitStopTime(cara , tempA , dataMap); 828 baseF.resizeByPitStopTime(cara , tempA , dataMap);
824 baseF.updfcno01(tempA,0); 829 baseF.updfcno01(tempA,0);
src/main/resources/static/pages/base/timesmodel/tepms/bctype_temp.html
@@ -635,7 +635,9 @@ @@ -635,7 +635,9 @@
635 <!-- 线路规划类型 (* 必填项) END --> 635 <!-- 线路规划类型 (* 必填项) END -->
636 <!-- 起始站首班时间 (* 必填项) START --> 636 <!-- 起始站首班时间 (* 必填项) START -->
637 <div class="col-md-6"> 637 <div class="col-md-6">
638 - <label class="control-label col-md-5"> 起始站首班时间 : </label> 638 + <label class="control-label col-md-5">
  639 + <span class="required"> * </span> 起始站首班时间 :
  640 + </label>
639 <div class="col-md-4"> 641 <div class="col-md-4">
640 <p class="form-control-static" data-display="startStationFirstTime"> </p> 642 <p class="form-control-static" data-display="startStationFirstTime"> </p>
641 </div> 643 </div>
@@ -643,7 +645,9 @@ @@ -643,7 +645,9 @@
643 <!-- 起始站首班时间 (* 必填项) END --> 645 <!-- 起始站首班时间 (* 必填项) END -->
644 <!-- 起始站末班时间 (* 必填项) START --> 646 <!-- 起始站末班时间 (* 必填项) START -->
645 <div class="col-md-6"> 647 <div class="col-md-6">
646 - <label class="control-label col-md-5"> 起始站末班时间 : </label> 648 + <label class="control-label col-md-5">
  649 + <span class="required"> * </span> 起始站末班时间 :
  650 + </label>
647 <div class="col-md-4"> 651 <div class="col-md-4">
648 <p class="form-control-static" data-display="startStationEndTime"> </p> 652 <p class="form-control-static" data-display="startStationEndTime"> </p>
649 </div> 653 </div>
@@ -656,7 +660,9 @@ @@ -656,7 +660,9 @@
656 <div class="form-group"> 660 <div class="form-group">
657 <!-- 终点站首班时间 (* 必填项) START --> 661 <!-- 终点站首班时间 (* 必填项) START -->
658 <div class="col-md-6"> 662 <div class="col-md-6">
659 - <label class="control-label col-md-5"> 终点站首班时间 : </label> 663 + <label class="control-label col-md-5">
  664 + <span class="required"> * </span> 终点站首班时间 :
  665 + </label>
660 <div class="col-md-4"> 666 <div class="col-md-4">
661 <p class="form-control-static" data-display="endStationFirstTime"> </p> 667 <p class="form-control-static" data-display="endStationFirstTime"> </p>
662 </div> 668 </div>
@@ -664,7 +670,9 @@ @@ -664,7 +670,9 @@
664 <!-- 终点站首班时间 (* 必填项) END --> 670 <!-- 终点站首班时间 (* 必填项) END -->
665 <!-- 终点站末班时间 (* 必填项) START --> 671 <!-- 终点站末班时间 (* 必填项) START -->
666 <div class="col-md-6"> 672 <div class="col-md-6">
667 - <label class="control-label col-md-5"> 终点站末班时间 : </label> 673 + <label class="control-label col-md-5">
  674 + <span class="required"> * </span> 终点站末班时间 :
  675 + </label>
668 <div class="col-md-4"> 676 <div class="col-md-4">
669 <p class="form-control-static" data-display="endStationEndTime"> </p> 677 <p class="form-control-static" data-display="endStationEndTime"> </p>
670 </div> 678 </div>
@@ -677,7 +685,9 @@ @@ -677,7 +685,9 @@
677 <div class="form-group"> 685 <div class="form-group">
678 <!-- 早高峰开始时间(* 必填项) START --> 686 <!-- 早高峰开始时间(* 必填项) START -->
679 <div class="col-md-6"> 687 <div class="col-md-6">
680 - <label class="control-label col-md-5"> 早高峰开始时间 : </label> 688 + <label class="control-label col-md-5">
  689 + <span class="required"> * </span> 早高峰开始时间 :
  690 + </label>
681 <div class="col-md-4"> 691 <div class="col-md-4">
682 <p class="form-control-static" data-display="earlyStartTime"> </p> 692 <p class="form-control-static" data-display="earlyStartTime"> </p>
683 </div> 693 </div>
@@ -685,7 +695,9 @@ @@ -685,7 +695,9 @@
685 <!-- 早高峰开始时间 (* 必填项) END --> 695 <!-- 早高峰开始时间 (* 必填项) END -->
686 <!-- 早高峰结束时间 (* 必填项) START --> 696 <!-- 早高峰结束时间 (* 必填项) START -->
687 <div class="col-md-6"> 697 <div class="col-md-6">
688 - <label class="control-label col-md-5"> 早高峰结束时间 : </label> 698 + <label class="control-label col-md-5">
  699 + <span class="required"> * </span> 早高峰结束时间 :
  700 + </label>
689 <div class="col-md-4"> 701 <div class="col-md-4">
690 <p class="form-control-static" data-display="earlyEndTime"> </p> 702 <p class="form-control-static" data-display="earlyEndTime"> </p>
691 </div> 703 </div>
@@ -698,7 +710,9 @@ @@ -698,7 +710,9 @@
698 <div class="form-group"> 710 <div class="form-group">
699 <!-- 晚高峰开始时间(* 必填项) START --> 711 <!-- 晚高峰开始时间(* 必填项) START -->
700 <div class="col-md-6"> 712 <div class="col-md-6">
701 - <label class="control-label col-md-5"> 晚高峰开始时间 : </label> 713 + <label class="control-label col-md-5">
  714 + <span class="required"> * </span> 晚高峰开始时间 :
  715 + </label>
702 <div class="col-md-4"> 716 <div class="col-md-4">
703 <p class="form-control-static" data-display="lateStartTime"> </p> 717 <p class="form-control-static" data-display="lateStartTime"> </p>
704 </div> 718 </div>
@@ -706,7 +720,9 @@ @@ -706,7 +720,9 @@
706 <!-- 晚高峰开始时间(* 必填项) END --> 720 <!-- 晚高峰开始时间(* 必填项) END -->
707 <!-- 晚高峰结束时间(* 必填项) START --> 721 <!-- 晚高峰结束时间(* 必填项) START -->
708 <div class="col-md-6"> 722 <div class="col-md-6">
709 - <label class="control-label col-md-5"> 晚高峰结束时间 : </label> 723 + <label class="control-label col-md-5">
  724 + <span class="required"> * </span> 晚高峰结束时间 :
  725 + </label>
710 <div class="col-md-4"> 726 <div class="col-md-4">
711 <p class="form-control-static" data-display="lateEndTime"> </p> 727 <p class="form-control-static" data-display="lateEndTime"> </p>
712 </div> 728 </div>
@@ -719,7 +735,9 @@ @@ -719,7 +735,9 @@
719 <div class="form-group"> 735 <div class="form-group">
720 <!-- 上行行驶时间(* 必填项) START --> 736 <!-- 上行行驶时间(* 必填项) START -->
721 <div class="col-md-6"> 737 <div class="col-md-6">
722 - <label class="control-label col-md-5"> 上行行驶时间  : </label> 738 + <label class="control-label col-md-5">
  739 + <span class="required"> * </span> 上行行驶时间  :
  740 + </label>
723 <div class="col-md-4"> 741 <div class="col-md-4">
724 <p class="form-control-static" data-display="upTravelTime"> </p> 742 <p class="form-control-static" data-display="upTravelTime"> </p>
725 </div> 743 </div>
@@ -727,7 +745,9 @@ @@ -727,7 +745,9 @@
727 <!-- 上行行驶时间(* 必填项) END --> 745 <!-- 上行行驶时间(* 必填项) END -->
728 <!-- 下行行驶时间(* 必填项) START --> 746 <!-- 下行行驶时间(* 必填项) START -->
729 <div class="col-md-6"> 747 <div class="col-md-6">
730 - <label class="control-label col-md-5"> 下行行驶时间  : </label> 748 + <label class="control-label col-md-5">
  749 + <span class="required"> * </span> 下行行驶时间  :
  750 + </label>
731 <div class="col-md-4"> 751 <div class="col-md-4">
732 <p class="form-control-static" data-display="downTravelTime"> </p> 752 <p class="form-control-static" data-display="downTravelTime"> </p>
733 </div> 753 </div>
@@ -740,7 +760,9 @@ @@ -740,7 +760,9 @@
740 <div class="form-group"> 760 <div class="form-group">
741 <!-- 上行行驶里程(* 必填项) START --> 761 <!-- 上行行驶里程(* 必填项) START -->
742 <div class="col-md-6"> 762 <div class="col-md-6">
743 - <label class="control-label col-md-5"> 上行行驶里程  : </label> 763 + <label class="control-label col-md-5">
  764 + <span class="required"> * </span> 上行行驶里程  :
  765 + </label>
744 <div class="col-md-4"> 766 <div class="col-md-4">
745 <p class="form-control-static" data-display="upMileage"> </p> 767 <p class="form-control-static" data-display="upMileage"> </p>
746 </div> 768 </div>
@@ -748,7 +770,9 @@ @@ -748,7 +770,9 @@
748 <!-- 上行行驶里程(* 必填项) END--> 770 <!-- 上行行驶里程(* 必填项) END-->
749 <!-- 下行行驶里程(* 必填项) START --> 771 <!-- 下行行驶里程(* 必填项) START -->
750 <div class="col-md-6"> 772 <div class="col-md-6">
751 - <label class="control-label col-md-5"> 下行行驶里程  : </label> 773 + <label class="control-label col-md-5">
  774 + <span class="required"> * </span> 下行行驶里程  :
  775 + </label>
752 <div class="col-md-4"> 776 <div class="col-md-4">
753 <p class="form-control-static" data-display="downMileage"> </p> 777 <p class="form-control-static" data-display="downMileage"> </p>
754 </div> 778 </div>
@@ -761,7 +785,9 @@ @@ -761,7 +785,9 @@
761 <div class="form-group"> 785 <div class="form-group">
762 <!-- 高峰上行停站时间(* 必填项) START --> 786 <!-- 高峰上行停站时间(* 必填项) START -->
763 <div class="col-md-6"> 787 <div class="col-md-6">
764 - <label class="control-label col-md-5"> 高峰上行停站时间: </label> 788 + <label class="control-label col-md-5">
  789 + <span class="required"> * </span> 高峰上行停站时间:
  790 + </label>
765 <div class="col-md-4"> 791 <div class="col-md-4">
766 <p class="form-control-static" data-display="gfupStopTime"> </p> 792 <p class="form-control-static" data-display="gfupStopTime"> </p>
767 </div> 793 </div>
@@ -769,7 +795,9 @@ @@ -769,7 +795,9 @@
769 <!-- 高峰上行停站时间(* 必填项) END --> 795 <!-- 高峰上行停站时间(* 必填项) END -->
770 <!-- 高峰下行停站时间(* 必填项) START --> 796 <!-- 高峰下行停站时间(* 必填项) START -->
771 <div class="col-md-6"> 797 <div class="col-md-6">
772 - <label class="control-label col-md-5"> 高峰下行停站时间: </label> 798 + <label class="control-label col-md-5">
  799 + <span class="required"> * </span> 高峰下行停站时间:
  800 + </label>
773 <div class="col-md-4"> 801 <div class="col-md-4">
774 <p class="form-control-static" data-display="gfdownStopTime"> </p> 802 <p class="form-control-static" data-display="gfdownStopTime"> </p>
775 </div> 803 </div>
@@ -782,7 +810,9 @@ @@ -782,7 +810,9 @@
782 <div class="form-group"> 810 <div class="form-group">
783 <!-- 低谷上行停站时间(* 必填项) START --> 811 <!-- 低谷上行停站时间(* 必填项) START -->
784 <div class="col-md-6"> 812 <div class="col-md-6">
785 - <label class="control-label col-md-5"> 低谷上行停站时间: </label> 813 + <label class="control-label col-md-5">
  814 + <span class="required"> * </span> 低谷上行停站时间:
  815 + </label>
786 <div class="col-md-4"> 816 <div class="col-md-4">
787 <p class="form-control-static" data-display="dgupStopTime"> </p> 817 <p class="form-control-static" data-display="dgupStopTime"> </p>
788 </div> 818 </div>
@@ -790,7 +820,9 @@ @@ -790,7 +820,9 @@
790 <!-- 低谷上行停站时间(* 必填项) END --> 820 <!-- 低谷上行停站时间(* 必填项) END -->
791 <!-- 低谷下行停站时间(* 必填项) START --> 821 <!-- 低谷下行停站时间(* 必填项) START -->
792 <div class="col-md-6"> 822 <div class="col-md-6">
793 - <label class="control-label col-md-5"> 低谷下行停站时间: </label> 823 + <label class="control-label col-md-5">
  824 + <span class="required"> * </span> 低谷下行停站时间:
  825 + </label>
794 <div class="col-md-4"> 826 <div class="col-md-4">
795 <p class="form-control-static" data-display="dgdownStopTime"> </p> 827 <p class="form-control-static" data-display="dgdownStopTime"> </p>
796 </div> 828 </div>
@@ -803,7 +835,9 @@ @@ -803,7 +835,9 @@
803 <div class="form-group"> 835 <div class="form-group">
804 <!-- 低谷最大发车间隙(* 必填项) START --> 836 <!-- 低谷最大发车间隙(* 必填项) START -->
805 <div class="col-md-6"> 837 <div class="col-md-6">
806 - <label class="control-label col-md-5"> 低谷最大发车间隙: </label> 838 + <label class="control-label col-md-5">
  839 + <span class="required"> * </span> 低谷最大发车间隙:
  840 + </label>
807 <div class="col-md-4"> 841 <div class="col-md-4">
808 <p class="form-control-static" data-display="dgmaxfcjx"> </p> 842 <p class="form-control-static" data-display="dgmaxfcjx"> </p>
809 </div> 843 </div>
@@ -812,7 +846,9 @@ @@ -812,7 +846,9 @@
812 846
813 <!-- 低谷最大停站时间(* 必填项) START --> 847 <!-- 低谷最大停站时间(* 必填项) START -->
814 <div class="col-md-6"> 848 <div class="col-md-6">
815 - <label class="control-label col-md-5"> 低谷最大停站时间: </label> 849 + <label class="control-label col-md-5">
  850 + <span class="required"> * </span> 低谷最大停站时间:
  851 + </label>
816 <div class="col-md-4"> 852 <div class="col-md-4">
817 <p class="form-control-static" data-display="dgmaxtzsj"> </p> 853 <p class="form-control-static" data-display="dgmaxtzsj"> </p>
818 </div> 854 </div>
@@ -825,7 +861,9 @@ @@ -825,7 +861,9 @@
825 <div class="form-group"> 861 <div class="form-group">
826 <!-- 线路规划类型 (* 必填项) START --> 862 <!-- 线路规划类型 (* 必填项) START -->
827 <div class="col-md-6"> 863 <div class="col-md-6">
828 - <label class="control-label col-md-5"> 线路规划类型  : </label> 864 + <label class="control-label col-md-5">
  865 + <span class="required"> * </span> 线路规划类型  :
  866 + </label>
829 <div class="col-md-4"> 867 <div class="col-md-4">
830 <p class="form-control-static" data-display="linePlayType"> </p> 868 <p class="form-control-static" data-display="linePlayType"> </p>
831 </div> 869 </div>
@@ -1076,7 +1114,9 @@ @@ -1076,7 +1114,9 @@
1076 <div class="form-group"> 1114 <div class="form-group">
1077 <!-- 班型与人次 START --> 1115 <!-- 班型与人次 START -->
1078 <div class="col-md-6"> 1116 <div class="col-md-6">
1079 - <label class="control-label col-md-5">班型/人次/车辆 :</label> 1117 + <label class="control-label col-md-5">
  1118 + <span class="required"> * </span> 班型/人次/车辆 :
  1119 + </label>
1080 <div class="col-md-4"> 1120 <div class="col-md-4">
1081 <p class="form-control-static" data-display="bxrc"> </p> 1121 <p class="form-control-static" data-display="bxrc"> </p>
1082 </div> 1122 </div>
@@ -1084,7 +1124,9 @@ @@ -1084,7 +1124,9 @@
1084 <!-- 班型与人次 END --> 1124 <!-- 班型与人次 END -->
1085 <!-- 车辆总数 START --> 1125 <!-- 车辆总数 START -->
1086 <div class="col-md-6"> 1126 <div class="col-md-6">
1087 - <label class="control-label col-md-5"> 车辆总数    :</label> 1127 + <label class="control-label col-md-5">
  1128 + <span class="required"> * </span> 车辆总数    :
  1129 + </label>
1088 <div class="col-md-4"> 1130 <div class="col-md-4">
1089 <p class="form-control-static" data-display="clzs"> </p> 1131 <p class="form-control-static" data-display="clzs"> </p>
1090 </div> 1132 </div>
src/main/resources/static/pages/excep/mhspeedingList.html
@@ -263,7 +263,7 @@ $(function(){ @@ -263,7 +263,7 @@ $(function(){
263 return; 263 return;
264 } 264 }
265 var result = listResult[index]; 265 var result = listResult[index];
266 - new BMap.Geocoder().getLocation(new BMap.Point(result.lon,result.lat), function(rs){ 266 + new BMap.Geocoder().getLocation(new BMap.Point(result.lon,result.lat), function(rs){ //根据坐标点查询文字位置。
267 var addComp = rs.addressComponents; 267 var addComp = rs.addressComponents;
268 result.address = addComp.district+addComp.street+addComp.streetNumber; 268 result.address = addComp.district+addComp.street+addComp.streetNumber;
269 f(); 269 f();
src/main/resources/static/pages/excep/speedingMap.html
@@ -26,15 +26,15 @@ @@ -26,15 +26,15 @@
26 $(function(){ 26 $(function(){
27 var dataArr = window.localStorage.zbhAndDate.split(",");//获取页面传递过来的车辆自编号以及超速起始时间和超速结束时间 27 var dataArr = window.localStorage.zbhAndDate.split(",");//获取页面传递过来的车辆自编号以及超速起始时间和超速结束时间
28 localStorage.clear();//清楚前端缓存 28 localStorage.clear();//清楚前端缓存
29 - var vehicle = dataArr[0];  
30 - var startdate = dataArr[1];  
31 - var enddate = dataArr[2]; 29 + var vehicle = dataArr[0];//内部编码
  30 + var startdate = dataArr[1];//开始时间
  31 + var enddate = dataArr[2];//结束时间
32 var lon = dataArr[3];//起点经度 32 var lon = dataArr[3];//起点经度
33 var lat = dataArr[4];//起点纬度 33 var lat = dataArr[4];//起点纬度
34 var endLon = dataArr[5];//终点经度 34 var endLon = dataArr[5];//终点经度
35 var endLat = dataArr[6];//终点纬度 35 var endLat = dataArr[6];//终点纬度
36 - var lineid = dataArr[7];  
37 - var directionData = dataArr[8]; 36 + var lineid = dataArr[7];//线路ID
  37 + var directionData = dataArr[8];//线路方向
38 var pointObj;//坐标和速度组成的对象 38 var pointObj;//坐标和速度组成的对象
39 var Points = [];//坐标和速度对象的集合 39 var Points = [];//坐标和速度对象的集合
40 var coordinateArr = [];//坐标点数组 40 var coordinateArr = [];//坐标点数组
@@ -57,7 +57,6 @@ $(function(){ @@ -57,7 +57,6 @@ $(function(){
57 }); 57 });
58 setTimeout(function(){ 58 setTimeout(function(){
59 var map = BasicMap.init();//创建地图 59 var map = BasicMap.init();//创建地图
60 - debugger;  
61 $get('/sectionroute/findSection',{'line.id_eq' : lineid , 'directions_eq' :directionData},function(data) { 60 $get('/sectionroute/findSection',{'line.id_eq' : lineid , 'directions_eq' :directionData},function(data) {
62 // 在地图上画出线路走向 61 // 在地图上画出线路走向
63 PublicFunctions.linePanlThree(lineid,data,directionData); 62 PublicFunctions.linePanlThree(lineid,data,directionData);
src/main/resources/static/pages/permission/authorize_all/user_auth.html
@@ -136,13 +136,13 @@ @@ -136,13 +136,13 @@
136 <script> 136 <script>
137 (function () { 137 (function () {
138 var wrap = '#user_authorize_wrap', user, xd_auth, all_lines,companyData; 138 var wrap = '#user_authorize_wrap', user, xd_auth, all_lines,companyData;
139 - //分公司名称映射(只用于分组展示,就写死浦东的,其他区域不用分公司 139 + //分公司名称映射(只用于分组展示,就写死
140 var fgs_name_mapp={ 140 var fgs_name_mapp={
141 '55_3': '上南公司(六分公司)', '55_1': '上南公司(二分公司)', '55_2': '上南公司(三分公司)', '55_4': '上南公司(一分公司)', '55_5': '上南公司(培训部)', 141 '55_3': '上南公司(六分公司)', '55_1': '上南公司(二分公司)', '55_2': '上南公司(三分公司)', '55_4': '上南公司(一分公司)', '55_5': '上南公司(培训部)',
142 '22_2': '金高公司(二分公司)', '22_1': '金高公司(四分公司)', '22_3': '金高公司(三分公司)', '22_5': '金高公司(一分公司)', 142 '22_2': '金高公司(二分公司)', '22_1': '金高公司(四分公司)', '22_3': '金高公司(三分公司)', '22_5': '金高公司(一分公司)',
143 '26_3': '南汇公司(三分公司)', '26_2': '南汇公司(南汇二分)', '26_1': '南汇公司(南汇一分)', '26_4': '南汇公司(南汇维修公司)', '26_6': '南汇公司(航头枢纽站)', 143 '26_3': '南汇公司(三分公司)', '26_2': '南汇公司(南汇二分)', '26_1': '南汇公司(南汇一分)', '26_4': '南汇公司(南汇维修公司)', '26_6': '南汇公司(航头枢纽站)',
144 '05_5': '杨高公司(杨高分公司)', '05_6': '杨高公司(周浦分公司)', '05_3': '杨高公司(芦潮港分公司)', '05_1': '杨高公司(川沙分公司)', '05_2': '杨高公司(金桥分公司)', 144 '05_5': '杨高公司(杨高分公司)', '05_6': '杨高公司(周浦分公司)', '05_3': '杨高公司(芦潮港分公司)', '05_1': '杨高公司(川沙分公司)', '05_2': '杨高公司(金桥分公司)',
145 - '77_78': '闵行公司', '99_100': '青浦公交' 145 + '77_78': '闵行公司', '99_100': '青浦公交','24_1': '一车队', '24_2': '二车队', '24_3': '三车队'
146 }; 146 };
147 147
148 var defauleConfig; 148 var defauleConfig;
src/main/resources/static/pages/scheduleApp/module/basicInfo/busInfoManage/edit.html
@@ -68,15 +68,16 @@ @@ -68,15 +68,16 @@
68 <div class="col-md-3"> 68 <div class="col-md-3">
69 <sa-Select5 name="gs" 69 <sa-Select5 name="gs"
70 model="ctrl.busInfoForSave" 70 model="ctrl.busInfoForSave"
71 - cmaps="{'businessCode': 'code', 'company': 'name'}" 71 + cmaps="{'businessCode': 'businessCode', 'company': 'businessName'}"
72 dcname="businessCode" 72 dcname="businessCode"
73 - icname="code"  
74 - dsparams="{{ {type: 'dic', param: 'gsType' } | json }}" 73 + icname="businessCode"
  74 + dsparams="{{ {type: 'ajax', param:{'upCode_eq': '88' }, atype:'gs' } | json }}"
75 iterobjname="item" 75 iterobjname="item"
76 - iterobjexp="item.name"  
77 - searchph="请选择所属公司..."  
78 - searchexp="this.name"  
79 - required > 76 + iterobjexp="item.businessName"
  77 + searchph="请选择所属分公司..."
  78 + searchexp="this.businessName"
  79 + required
  80 + >
80 </sa-Select5> 81 </sa-Select5>
81 82
82 </div> 83 </div>
@@ -86,8 +87,8 @@ @@ -86,8 +87,8 @@
86 </div> 87 </div>
87 </div> 88 </div>
88 89
89 - <div class="form-group">  
90 - <label class="col-md-2 control-label">分公司:</label> 90 + <div class="form-group has-success has-feedback">
  91 + <label class="col-md-2 control-label">分公司*:</label>
91 <div class="col-md-3"> 92 <div class="col-md-3">
92 <sa-Select5 name="fgs" 93 <sa-Select5 name="fgs"
93 model="ctrl.busInfoForSave" 94 model="ctrl.busInfoForSave"
@@ -99,9 +100,14 @@ @@ -99,9 +100,14 @@
99 iterobjexp="item.businessName" 100 iterobjexp="item.businessName"
100 searchph="请选择所属分公司..." 101 searchph="请选择所属分公司..."
101 searchexp="this.businessName" 102 searchexp="this.businessName"
  103 + required
102 > 104 >
103 </sa-Select5> 105 </sa-Select5>
104 </div> 106 </div>
  107 + <!-- 隐藏块,显示验证信息 -->
  108 + <div class="alert alert-danger well-sm" ng-show="myForm.fgs.$error.required">
  109 + 分公司也必须选择
  110 + </div>
105 </div> 111 </div>
106 112
107 <div class="form-group has-success has-feedback"> 113 <div class="form-group has-success has-feedback">
src/main/resources/static/pages/scheduleApp/module/basicInfo/busInfoManage/form.html
@@ -68,15 +68,16 @@ @@ -68,15 +68,16 @@
68 <div class="col-md-3"> 68 <div class="col-md-3">
69 <sa-Select5 name="gs" 69 <sa-Select5 name="gs"
70 model="ctrl.busInfoForSave" 70 model="ctrl.busInfoForSave"
71 - cmaps="{'businessCode': 'code', 'company': 'name'}" 71 + cmaps="{'businessCode': 'businessCode', 'company': 'businessName'}"
72 dcname="businessCode" 72 dcname="businessCode"
73 - icname="code"  
74 - dsparams="{{ {type: 'dic', param: 'gsType' } | json }}" 73 + icname="businessCode"
  74 + dsparams="{{ {type: 'ajax', param:{'upCode_eq': '88' }, atype:'gs' } | json }}"
75 iterobjname="item" 75 iterobjname="item"
76 - iterobjexp="item.name"  
77 - searchph="请选择所属公司..."  
78 - searchexp="this.name"  
79 - required > 76 + iterobjexp="item.businessName"
  77 + searchph="请选择所属分公司..."
  78 + searchexp="this.businessName"
  79 + required
  80 + >
80 </sa-Select5> 81 </sa-Select5>
81 82
82 </div> 83 </div>
@@ -86,8 +87,8 @@ @@ -86,8 +87,8 @@
86 </div> 87 </div>
87 </div> 88 </div>
88 89
89 - <div class="form-group">  
90 - <label class="col-md-2 control-label">分公司:</label> 90 + <div class="form-group has-success has-feedback">
  91 + <label class="col-md-2 control-label">分公司*:</label>
91 <div class="col-md-3"> 92 <div class="col-md-3">
92 <sa-Select5 name="fgs" 93 <sa-Select5 name="fgs"
93 model="ctrl.busInfoForSave" 94 model="ctrl.busInfoForSave"
@@ -99,10 +100,15 @@ @@ -99,10 +100,15 @@
99 iterobjexp="item.businessName" 100 iterobjexp="item.businessName"
100 searchph="请选择所属分公司..." 101 searchph="请选择所属分公司..."
101 searchexp="this.businessName" 102 searchexp="this.businessName"
  103 + required
102 > 104 >
103 </sa-Select5> 105 </sa-Select5>
104 106
105 </div> 107 </div>
  108 + <!-- 隐藏块,显示验证信息 -->
  109 + <div class="alert alert-danger well-sm" ng-show="myForm.fgs.$error.required">
  110 + 分公司也必须选择
  111 + </div>
106 </div> 112 </div>
107 113
108 <div class="form-group has-success has-feedback"> 114 <div class="form-group has-success has-feedback">
src/main/resources/static/pages/scheduleApp/module/basicInfo/busInfoManage/list.html
@@ -4,14 +4,14 @@ @@ -4,14 +4,14 @@
4 <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column"> 4 <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column">
5 <thead> 5 <thead>
6 <tr role="row" class="heading"> 6 <tr role="row" class="heading">
7 - <th style="width: 50px;">序号</th>  
8 - <th style="width: 130px;">车辆编号</th>  
9 - <th style="width: 130px;">内部编号</th>  
10 - <th style="width: 130px;">设备编号</th>  
11 - <th style="width: 130px;">车牌号</th> 7 + <th style="width:70px;">序号</th>
  8 + <th style="width: 120px;">车辆编号</th>
  9 + <th style="width: 120px;">内部编号</th>
  10 + <th style="width: 120px;">设备编号</th>
  11 + <th style="width: 120px;">车牌号</th>
12 <th style="width: 150px;">所在公司</th> 12 <th style="width: 150px;">所在公司</th>
13 - <th style="width: 100px;">所在分公司</th>  
14 - <th style="width: 80px">是否电车</th> 13 + <th style="width: 160px;">所在分公司</th>
  14 + <th style="width: 60px">电车</th>
15 <th style="width: 100%">操作</th> 15 <th style="width: 100%">操作</th>
16 </tr> 16 </tr>
17 <tr role="row" class="filter"> 17 <tr role="row" class="filter">
@@ -29,23 +29,34 @@ @@ -29,23 +29,34 @@
29 <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().carPlate_like" placeholder="输入车牌号..."/> 29 <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().carPlate_like" placeholder="输入车牌号..."/>
30 </td> 30 </td>
31 <td> 31 <td>
32 - <div>  
33 - <sa-Select5 name="gs"  
34 - model="ctrl.searchCondition()"  
35 - cmaps="{'businessCode_eq': 'code'}"  
36 - dcname="businessCode_eq"  
37 - icname="code"  
38 - dsparams="{{ {type: 'dic', param: 'gsType' } | json }}"  
39 - iterobjname="item"  
40 - iterobjexp="item.name"  
41 - searchph="选择公司..."  
42 - searchexp="this.name"  
43 - >  
44 - </sa-Select5>  
45 - </div>  
46 - </td>  
47 - <td>  
48 - 32 + <sa-Select5 name="gs"
  33 + model="ctrl.searchCondition()"
  34 + cmaps="{'businessCode_eq': 'businessCode'}"
  35 + dcname="businessCode_eq"
  36 + icname="businessCode"
  37 + dsparams="{{ {type: 'ajax', param:{'upCode_eq': '88' }, atype:'gs' } | json }}"
  38 + iterobjname="item"
  39 + iterobjexp="item.businessName"
  40 + searchph="请输拼音..."
  41 + searchexp="this.businessName"
  42 + required
  43 + >
  44 + </sa-Select5>
  45 + </td>
  46 + <td>
  47 + <sa-Select5 name="fgs"
  48 + model="ctrl.searchCondition()"
  49 + cmaps="{'brancheCompanyCode_eq': 'businessCode'}"
  50 + dcname="brancheCompanyCode_eq"
  51 + icname="businessCode"
  52 + dsparams="{{ {type: 'ajax', param:{'upCode_eq': ctrl.searchCondition().businessCode_eq }, atype:'gs' } | json }}"
  53 + iterobjname="item"
  54 + iterobjexp="item.businessName"
  55 + searchph="请输拼音..."
  56 + searchexp="this.businessName"
  57 + required
  58 + >
  59 + </sa-Select5>
49 </td> 60 </td>
50 <td> 61 <td>
51 62
@@ -65,7 +76,17 @@ @@ -65,7 +76,17 @@
65 <tbody> 76 <tbody>
66 <tr ng-repeat="info in ctrl.page()['content']" class="odd gradeX"> 77 <tr ng-repeat="info in ctrl.page()['content']" class="odd gradeX">
67 <td> 78 <td>
68 - <span ng-bind="$index + 1"></span> 79 + <div>
  80 + <a href="#"
  81 + tooltip-animation="false"
  82 + tooltip-placement="top"
  83 + uib-tooltip="{{'公司/编号:' + info.company + '/' + info.insideCode}}"
  84 + tooltip-class="headClass">
  85 +
  86 + <i class="fa fa-list-ol" aria-hidden="true"></i>
  87 + {{$index + ctrl.page().number * 10 + 1}}
  88 + </a>
  89 + </div>
69 </td> 90 </td>
70 <td> 91 <td>
71 <span ng-bind="info.carCode"></span> 92 <span ng-bind="info.carCode"></span>
@@ -93,6 +114,10 @@ @@ -93,6 +114,10 @@
93 <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>--> 114 <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->
94 <a ui-sref="busInfoManage_detail({id: info.id})" class="btn btn-info btn-sm"> 详细 </a> 115 <a ui-sref="busInfoManage_detail({id: info.id})" class="btn btn-info btn-sm"> 详细 </a>
95 <a ui-sref="busInfoManage_edit({id: info.id})" class="btn btn-info btn-sm"> 修改 </a> 116 <a ui-sref="busInfoManage_edit({id: info.id})" class="btn btn-info btn-sm"> 修改 </a>
  117 + <a sweetalert
  118 + sweet-options="{title: '是否删除车辆信息?',text: '内部编码:' + info.insideCode + '</br>如果有车辆配置信息关联,会报错,建议不要随便删除!', html: true,type: 'warning',showCancelButton: true,confirmButtonColor: '#DD6B55',confirmButtonText: '是',cancelButtonText: '取消'}"
  119 + sweet-on-confirm="ctrl.deleteCar(info.id)"
  120 + class="btn btn-danger btn-sm">删除</a>
96 </td> 121 </td>
97 </tr> 122 </tr>
98 </tbody> 123 </tbody>
src/main/resources/static/pages/scheduleApp/module/basicInfo/busInfoManage/module.js
@@ -72,7 +72,13 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -72,7 +72,13 @@ angular.module(&#39;ScheduleApp&#39;).factory(
72 * @returns {*|Function|promise|n} 72 * @returns {*|Function|promise|n}
73 */ 73 */
74 dataExport: function() { 74 dataExport: function() {
75 - return service.dataTools.dataExport().$promise; 75 + if (UserPrincipal.getGsStrsQuery().length > 0) {
  76 + return service.dataTools.dataExport(
  77 + {'cgsbm_in': UserPrincipal.getGsStrsQuery().join(",")}
  78 + ).$promise;
  79 + } else {
  80 + return null;
  81 + }
76 } 82 }
77 }; 83 };
78 84
@@ -125,14 +131,18 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -125,14 +131,18 @@ angular.module(&#39;ScheduleApp&#39;).controller(
125 131
126 // 导出excel 132 // 导出excel
127 self.exportData = function() { 133 self.exportData = function() {
128 - busInfoManageService.dataExport().then(  
129 - function(result) {  
130 - fileDownload.downloadFile(result.data, "application/octet-stream", "车辆基础信息.xls");  
131 - },  
132 - function(result) {  
133 - console.log("exportData failed:" + result);  
134 - }  
135 - ); 134 + var p = busInfoManageService.dataExport();
  135 + if (p) {
  136 + p.then(
  137 + function(result) {
  138 + fileDownload.downloadFile(result.data, "application/octet-stream", "车辆基础信息.xls");
  139 + },
  140 + function(result) {
  141 + console.log("exportData failed:" + result);
  142 + }
  143 + );
  144 + }
  145 +
136 }; 146 };
137 } 147 }
138 ] 148 ]
@@ -217,6 +227,16 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -217,6 +227,16 @@ angular.module(&#39;ScheduleApp&#39;).controller(
217 }); 227 });
218 }; 228 };
219 229
  230 + self.deleteCar = function(id) {
  231 + Cars.delete({id: id}, function(result) {
  232 + if (result.msg) { // 暂时这样做,之后全局拦截
  233 + alert("失败:" + result.msg);
  234 + } else {
  235 + self.doPage();
  236 + }
  237 + });
  238 + };
  239 +
220 self.doPage(); 240 self.doPage();
221 } 241 }
222 ] 242 ]
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/edit.html
@@ -38,15 +38,16 @@ @@ -38,15 +38,16 @@
38 <div class="col-md-3"> 38 <div class="col-md-3">
39 <sa-Select5 name="gs" 39 <sa-Select5 name="gs"
40 model="ctrl.employeeInfoForSave" 40 model="ctrl.employeeInfoForSave"
41 - cmaps="{'companyCode': 'code', 'company': 'name'}" 41 + cmaps="{'companyCode': 'businessCode', 'brancheCompany': 'businessName'}"
42 dcname="companyCode" 42 dcname="companyCode"
43 - icname="code"  
44 - dsparams="{{ {type: 'dic', param: 'gsType' } | json }}" 43 + icname="businessCode"
  44 + dsparams="{{ {type: 'ajax', param:{'upCode_eq': '88' }, atype:'gs' } | json }}"
45 iterobjname="item" 45 iterobjname="item"
46 - iterobjexp="item.name"  
47 - searchph="请输拼音..."  
48 - searchexp="this.name"  
49 - required > 46 + iterobjexp="item.businessName"
  47 + searchph="请选择所属分公司..."
  48 + searchexp="this.businessName"
  49 + required
  50 + >
50 </sa-Select5> 51 </sa-Select5>
51 </div> 52 </div>
52 <!-- 隐藏块,显示验证信息 --> 53 <!-- 隐藏块,显示验证信息 -->
@@ -55,8 +56,8 @@ @@ -55,8 +56,8 @@
55 </div> 56 </div>
56 </div> 57 </div>
57 58
58 - <div class="form-group">  
59 - <label class="col-md-2 control-label">分公司:</label> 59 + <div class="form-group has-success has-feedback">
  60 + <label class="col-md-2 control-label">分公司*:</label>
60 <div class="col-md-3"> 61 <div class="col-md-3">
61 <sa-Select5 name="fgs" 62 <sa-Select5 name="fgs"
62 model="ctrl.employeeInfoForSave" 63 model="ctrl.employeeInfoForSave"
@@ -68,17 +69,23 @@ @@ -68,17 +69,23 @@
68 iterobjexp="item.businessName" 69 iterobjexp="item.businessName"
69 searchph="请选择所属分公司..." 70 searchph="请选择所属分公司..."
70 searchexp="this.businessName" 71 searchexp="this.businessName"
  72 + required
71 > 73 >
72 </sa-Select5> 74 </sa-Select5>
73 75
74 </div> 76 </div>
  77 +
  78 + <!-- 隐藏块,显示验证信息 -->
  79 + <div class="alert alert-danger well-sm" ng-show="myForm.fgs.$error.required">
  80 + 分公司也必须选择
  81 + </div>
75 </div> 82 </div>
76 83
77 <div class="form-group has-success has-feedback"> 84 <div class="form-group has-success has-feedback">
78 <label class="col-md-2 control-label">工号*:</label> 85 <label class="col-md-2 control-label">工号*:</label>
79 <div class="col-md-3"> 86 <div class="col-md-3">
80 <input type="text" class="form-control" 87 <input type="text" class="form-control"
81 - name="jobCode" ng-model="ctrl.employeeInfoForSave.jobCode" 88 + name="jobCode" ng-model="ctrl.employeeInfoForSave.jobCodeori"
82 required placeholder="请输入工号" 89 required placeholder="请输入工号"
83 remote-Validation 90 remote-Validation
84 remotevtype="ee_gh" 91 remotevtype="ee_gh"
@@ -147,6 +154,17 @@ @@ -147,6 +154,17 @@
147 </div> 154 </div>
148 </div> 155 </div>
149 156
  157 + <div class="form-group">
  158 + <label class="col-md-2 control-label">备注:</label>
  159 + <div class="col-md-3">
  160 + <textarea class="form-control"
  161 + ng-model="ctrl.employeeInfoForSave.remark"
  162 + >
  163 + </textarea>
  164 + </div>
  165 +
  166 + </div>
  167 +
150 <!-- 其他form-group --> 168 <!-- 其他form-group -->
151 169
152 </div> 170 </div>
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/form.html
@@ -38,15 +38,16 @@ @@ -38,15 +38,16 @@
38 <div class="col-md-3"> 38 <div class="col-md-3">
39 <sa-Select5 name="gs" 39 <sa-Select5 name="gs"
40 model="ctrl.employeeInfoForSave" 40 model="ctrl.employeeInfoForSave"
41 - cmaps="{'companyCode': 'code', 'company': 'name'}" 41 + cmaps="{'companyCode': 'businessCode', 'brancheCompany': 'businessName'}"
42 dcname="companyCode" 42 dcname="companyCode"
43 - icname="code"  
44 - dsparams="{{ {type: 'dic', param: 'gsType' } | json }}" 43 + icname="businessCode"
  44 + dsparams="{{ {type: 'ajax', param:{'upCode_eq': '88' }, atype:'gs' } | json }}"
45 iterobjname="item" 45 iterobjname="item"
46 - iterobjexp="item.name"  
47 - searchph="请输拼音..."  
48 - searchexp="this.name"  
49 - required > 46 + iterobjexp="item.businessName"
  47 + searchph="请选择所属分公司..."
  48 + searchexp="this.businessName"
  49 + required
  50 + >
50 </sa-Select5> 51 </sa-Select5>
51 </div> 52 </div>
52 <!-- 隐藏块,显示验证信息 --> 53 <!-- 隐藏块,显示验证信息 -->
@@ -55,8 +56,8 @@ @@ -55,8 +56,8 @@
55 </div> 56 </div>
56 </div> 57 </div>
57 58
58 - <div class="form-group">  
59 - <label class="col-md-2 control-label">分公司:</label> 59 + <div class="form-group has-success has-feedback">
  60 + <label class="col-md-2 control-label">分公司*:</label>
60 <div class="col-md-3"> 61 <div class="col-md-3">
61 <sa-Select5 name="fgs" 62 <sa-Select5 name="fgs"
62 model="ctrl.employeeInfoForSave" 63 model="ctrl.employeeInfoForSave"
@@ -68,17 +69,22 @@ @@ -68,17 +69,22 @@
68 iterobjexp="item.businessName" 69 iterobjexp="item.businessName"
69 searchph="请选择所属分公司..." 70 searchph="请选择所属分公司..."
70 searchexp="this.businessName" 71 searchexp="this.businessName"
  72 + required
71 > 73 >
72 </sa-Select5> 74 </sa-Select5>
73 75
74 </div> 76 </div>
  77 + <!-- 隐藏块,显示验证信息 -->
  78 + <div class="alert alert-danger well-sm" ng-show="myForm.fgs.$error.required">
  79 + 分公司也必须选择
  80 + </div>
75 </div> 81 </div>
76 82
77 <div class="form-group has-success has-feedback"> 83 <div class="form-group has-success has-feedback">
78 <label class="col-md-2 control-label">工号*:</label> 84 <label class="col-md-2 control-label">工号*:</label>
79 <div class="col-md-3"> 85 <div class="col-md-3">
80 <input type="text" class="form-control" 86 <input type="text" class="form-control"
81 - name="jobCode" ng-model="ctrl.employeeInfoForSave.jobCode" 87 + name="jobCode" ng-model="ctrl.employeeInfoForSave.jobCodeori"
82 required placeholder="请输入工号" 88 required placeholder="请输入工号"
83 remote-Validation 89 remote-Validation
84 remotevtype="ee_gh" 90 remotevtype="ee_gh"
@@ -147,6 +153,17 @@ @@ -147,6 +153,17 @@
147 </div> 153 </div>
148 </div> 154 </div>
149 155
  156 + <div class="form-group">
  157 + <label class="col-md-2 control-label">备注:</label>
  158 + <div class="col-md-3">
  159 + <textarea class="form-control"
  160 + ng-model="ctrl.employeeInfoForSave.remark"
  161 + >
  162 + </textarea>
  163 + </div>
  164 +
  165 + </div>
  166 +
150 <!-- 其他form-group --> 167 <!-- 其他form-group -->
151 168
152 </div> 169 </div>
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/list.html
@@ -4,9 +4,9 @@ @@ -4,9 +4,9 @@
4 <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column"> 4 <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column">
5 <thead> 5 <thead>
6 <tr role="row" class="heading"> 6 <tr role="row" class="heading">
7 - <th style="width: 50px;">序号</th> 7 + <th style="width:70px;">序号</th>
8 <th style="width: 130px;">姓名</th> 8 <th style="width: 130px;">姓名</th>
9 - <th style="width: 130px;">号</th> 9 + <th style="width: 130px;">员工编号</th>
10 <th style="width: 5%;">性别</th> 10 <th style="width: 5%;">性别</th>
11 <th style="width: 15%;">所在公司</th> 11 <th style="width: 15%;">所在公司</th>
12 <th >分公司</th> 12 <th >分公司</th>
@@ -25,22 +25,34 @@ @@ -25,22 +25,34 @@
25 <td> 25 <td>
26 </td> 26 </td>
27 <td> 27 <td>
28 - <div>  
29 - <sa-Select5 name="gs"  
30 - model="ctrl.searchCondition()"  
31 - cmaps="{'companyCode_eq': 'code'}"  
32 - dcname="companyCode_eq"  
33 - icname="code"  
34 - dsparams="{{ {type: 'dic', param: 'gsType' } | json }}"  
35 - iterobjname="item"  
36 - iterobjexp="item.name"  
37 - searchph="请输拼音..."  
38 - searchexp="this.name"  
39 - >  
40 - </sa-Select5>  
41 - </div> 28 + <sa-Select5 name="gs"
  29 + model="ctrl.searchCondition()"
  30 + cmaps="{'companyCode_eq': 'businessCode'}"
  31 + dcname="companyCode_eq"
  32 + icname="businessCode"
  33 + dsparams="{{ {type: 'ajax', param:{'upCode_eq': '88' }, atype:'gs' } | json }}"
  34 + iterobjname="item"
  35 + iterobjexp="item.businessName"
  36 + searchph="请输拼音..."
  37 + searchexp="this.businessName"
  38 + required
  39 + >
  40 + </sa-Select5>
42 </td> 41 </td>
43 <td> 42 <td>
  43 + <sa-Select5 name="fgs"
  44 + model="ctrl.searchCondition()"
  45 + cmaps="{'brancheCompanyCode_eq': 'businessCode'}"
  46 + dcname="brancheCompanyCode_eq"
  47 + icname="businessCode"
  48 + dsparams="{{ {type: 'ajax', param:{'upCode_eq': ctrl.searchCondition().companyCode_eq }, atype:'gs' } | json }}"
  49 + iterobjname="item"
  50 + iterobjexp="item.businessName"
  51 + searchph="请输拼音..."
  52 + searchexp="this.businessName"
  53 + required
  54 + >
  55 + </sa-Select5>
44 </td> 56 </td>
45 <td> 57 <td>
46 <div> 58 <div>
@@ -76,7 +88,18 @@ @@ -76,7 +88,18 @@
76 <tbody> 88 <tbody>
77 <tr ng-repeat="info in ctrl.page()['content']" class="odd gradeX"> 89 <tr ng-repeat="info in ctrl.page()['content']" class="odd gradeX">
78 <td> 90 <td>
79 - <span ng-bind="$index + 1"></span> 91 + <div>
  92 + <a href="#"
  93 + tooltip-animation="false"
  94 + tooltip-placement="top"
  95 + uib-tooltip="{{'姓名/工号:' + info.personnelName + '/' + info.jobCodeori}}"
  96 + tooltip-class="headClass">
  97 +
  98 + <i class="fa fa-list-ol" aria-hidden="true"></i>
  99 + {{$index + ctrl.page().number * 10 + 1}}
  100 + </a>
  101 + </div>
  102 +
80 </td> 103 </td>
81 <td> 104 <td>
82 <span ng-bind="info.personnelName"></span> 105 <span ng-bind="info.personnelName"></span>
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/module.js
@@ -72,7 +72,13 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -72,7 +72,13 @@ angular.module(&#39;ScheduleApp&#39;).factory(
72 * @returns {*|Function|promise|n} 72 * @returns {*|Function|promise|n}
73 */ 73 */
74 dataExport: function() { 74 dataExport: function() {
75 - return service.dataTools.dataExport().$promise; 75 + if (UserPrincipal.getGsStrsQuery().length > 0) {
  76 + return service.dataTools.dataExport(
  77 + {'cgsbm_in': UserPrincipal.getGsStrsQuery().join(",")}
  78 + ).$promise;
  79 + } else {
  80 + return null;
  81 + }
76 } 82 }
77 } 83 }
78 } 84 }
@@ -124,14 +130,17 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -124,14 +130,17 @@ angular.module(&#39;ScheduleApp&#39;).controller(
124 130
125 // 导出excel 131 // 导出excel
126 self.exportData = function() { 132 self.exportData = function() {
127 - employeeInfoManageService.dataExport().then(  
128 - function(result) {  
129 - fileDownload.downloadFile(result.data, "application/octet-stream", "人员基础信息.xls");  
130 - },  
131 - function(result) {  
132 - console.log("exportData failed:" + result);  
133 - }  
134 - ); 133 + var p = employeeInfoManageService.dataExport();
  134 + if (p) {
  135 + p.then(
  136 + function(result) {
  137 + fileDownload.downloadFile(result.data, "application/octet-stream", "人员基础信息.xls");
  138 + },
  139 + function(result) {
  140 + console.log("exportData failed:" + result);
  141 + }
  142 + );
  143 + }
135 }; 144 };
136 145
137 } 146 }
@@ -256,17 +265,20 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -256,17 +265,20 @@ angular.module(&#39;ScheduleApp&#39;).controller(
256 // 获取传过来的id,有的话就是修改,获取一遍数据 265 // 获取传过来的id,有的话就是修改,获取一遍数据
257 var id = $stateParams.id; 266 var id = $stateParams.id;
258 if (id) { 267 if (id) {
259 - self.employeeInfoForSave = Employee.get({id: id}, function() {}); 268 + self.employeeInfoForSave = Employee.get({id: id}, function() {
  269 + // 员工编号=公司编码_工号
  270 + if (!self.employeeInfoForSave.jobCodeori) {
  271 + self.employeeInfoForSave.jobCodeori = self.employeeInfoForSave.jobCode.split("-")[1];
  272 + }
  273 + });
  274 +
260 } 275 }
261 276
262 // 提交方法 277 // 提交方法
263 self.submit = function() { 278 self.submit = function() {
264 - // 在工号前添加公司编码  
265 - var gh = self.employeeInfoForSave.jobCode;  
266 - if (gh.indexOf("-") < 0) {  
267 - gh = self.employeeInfoForSave.companyCode + "-" + gh;  
268 - self.employeeInfoForSave.jobCode = gh;  
269 - } 279 + // 员工编号=公司编码_工号
  280 + var gh = self.employeeInfoForSave.jobCodeori;
  281 + self.employeeInfoForSave.jobCode = self.employeeInfoForSave.companyCode + "-" + gh;
270 282
271 console.log(self.employeeInfoForSave); 283 console.log(self.employeeInfoForSave);
272 284
src/main/resources/static/pages/scheduleApp/module/common/main.js
@@ -19,6 +19,7 @@ ScheduleApp.factory(&#39;UserPrincipal&#39;, [ @@ -19,6 +19,7 @@ ScheduleApp.factory(&#39;UserPrincipal&#39;, [
19 var gsinfos = []; // 原始返回的对象数据 19 var gsinfos = []; // 原始返回的对象数据
20 var gsinfo_strs = []; // 拼装以后的(公司代码_分公司代码) 20 var gsinfo_strs = []; // 拼装以后的(公司代码_分公司代码)
21 var gsinfo_strs_u = []; // 拼装以后的(分公司代码_公司代码) 21 var gsinfo_strs_u = []; // 拼装以后的(分公司代码_公司代码)
  22 + var gsinfo_strs_query = []; // 拼装以后的(公司代码_分公司代码),带单引号
22 23
23 $http({ 24 $http({
24 method: 'GET', 25 method: 'GET',
@@ -32,6 +33,7 @@ ScheduleApp.factory(&#39;UserPrincipal&#39;, [ @@ -32,6 +33,7 @@ ScheduleApp.factory(&#39;UserPrincipal&#39;, [
32 var fgsbm = obj2.code; 33 var fgsbm = obj2.code;
33 gsinfo_strs.push(gsbm + "_" + fgsbm); 34 gsinfo_strs.push(gsbm + "_" + fgsbm);
34 gsinfo_strs_u.push(fgsbm + "_" + gsbm); 35 gsinfo_strs_u.push(fgsbm + "_" + gsbm);
  36 + gsinfo_strs_query.push("'" + gsbm + "_" + fgsbm + "'");
35 }); 37 });
36 }); 38 });
37 39
@@ -46,6 +48,9 @@ ScheduleApp.factory(&#39;UserPrincipal&#39;, [ @@ -46,6 +48,9 @@ ScheduleApp.factory(&#39;UserPrincipal&#39;, [
46 }, 48 },
47 getGsStrsU: function() { 49 getGsStrsU: function() {
48 return gsinfo_strs_u; 50 return gsinfo_strs_u;
  51 + },
  52 + getGsStrsQuery: function() {
  53 + return gsinfo_strs_query;
49 } 54 }
50 }; 55 };
51 } 56 }
src/main/resources/static/real_control_v2/js/utils/svg_chart.js
@@ -19,6 +19,12 @@ var gb_svg_chart = (function () { @@ -19,6 +19,12 @@ var gb_svg_chart = (function () {
19 'svg-wrap': 'line' 19 'svg-wrap': 'line'
20 } 20 }
21 21
  22 + //站点间隔 线路编码 -> space
  23 + var circle_spaces={};
  24 + //var circle_space;
  25 + //是否启用动画
  26 + var animation = true;
  27 +
22 var calc_text_y = function (t) { 28 var calc_text_y = function (t) {
23 return (chart_height - (chart_height / t_max_size * t.length)) / 2 + 5; 29 return (chart_height - (chart_height / t_max_size * t.length)) / 2 + 5;
24 }, 30 },
@@ -43,7 +49,8 @@ var gb_svg_chart = (function () { @@ -43,7 +49,8 @@ var gb_svg_chart = (function () {
43 * @param enableAttr 是否启用配置 49 * @param enableAttr 是否启用配置
44 */ 50 */
45 var draw_line = function (lineCode, wrap, enableAttr) { 51 var draw_line = function (lineCode, wrap, enableAttr) {
46 - wraps[lineCode+'_'+suffixs[wrap.attr('class')]]=wrap; 52 + var wrapId = lineCode+'_'+suffixs[wrap.attr('class')];
  53 + wraps[wrapId]=wrap;
47 //环线 54 //环线
48 var loopLine = gb_data_basic.isLoopLine(lineCode); 55 var loopLine = gb_data_basic.isLoopLine(lineCode);
49 56
@@ -84,6 +91,7 @@ var gb_svg_chart = (function () { @@ -84,6 +91,7 @@ var gb_svg_chart = (function () {
84 return cx(d, i) - 8; 91 return cx(d, i) - 8;
85 }; 92 };
86 93
  94 + circle_spaces[wrapId] = (w - (x_padd * 2)) / len;
87 //add svg dom 95 //add svg dom
88 var svg = d3.select(wrap[0]).append('svg') 96 var svg = d3.select(wrap[0]).append('svg')
89 .classed({ 97 .classed({
@@ -189,11 +197,17 @@ var gb_svg_chart = (function () { @@ -189,11 +197,17 @@ var gb_svg_chart = (function () {
189 } 197 }
190 return circle; 198 return circle;
191 }, 199 },
192 - gx = function (gps, svg) { 200 + gx = function (gps, svg, wrapId) {
193 var circle = get_circle(gps.stopNo + '_' + gps.upDown, svg); 201 var circle = get_circle(gps.stopNo + '_' + gps.upDown, svg);
194 if (!circle) return -100; 202 if (!circle) return -100;
195 203
196 - return circle.attr('cx') - 16.5; 204 + var x = circle.attr('cx') - 16.5,
  205 + s = circle_spaces[wrapId] / 2;
  206 + // console.log('ss', gps.lineId + '=' + s);
  207 + //s = 5;
  208 + if(gps['instation']==0)
  209 + x = (gps['upDown']==0?x+s:x-s);
  210 + return x;
197 }, 211 },
198 gy = function (gps, svg) { 212 gy = function (gps, svg) {
199 var circle = get_circle(gps.stopNo + '_' + gps.upDown, svg); 213 var circle = get_circle(gps.stopNo + '_' + gps.upDown, svg);
@@ -233,10 +247,13 @@ var gb_svg_chart = (function () { @@ -233,10 +247,13 @@ var gb_svg_chart = (function () {
233 gps_key = function (d) { 247 gps_key = function (d) {
234 return d.deviceId; 248 return d.deviceId;
235 }, 249 },
236 - gps_update_point = function (e, svg) {  
237 - var x;  
238 - e.transition().attr('x', function (d) {  
239 - x = gx(d, svg); 250 + gps_update_point = function (e, svg, wrapId) {
  251 + var x,e1;
  252 + e1 = e;
  253 + if(animation)
  254 + e1 = e.transition();
  255 + e1.attr('x', function (d) {
  256 + x = gx(d, svg, wrapId);
240 if(x == -100) 257 if(x == -100)
241 $(this).css('transition-duration', 0).hide(); 258 $(this).css('transition-duration', 0).hide();
242 else 259 else
@@ -319,12 +336,15 @@ var gb_svg_chart = (function () { @@ -319,12 +336,15 @@ var gb_svg_chart = (function () {
319 //rect 336 //rect
320 var rects = gps_cont.selectAll('rect').data(data, gps_key); 337 var rects = gps_cont.selectAll('rect').data(data, gps_key);
321 rects.enter().append('rect').attr('_id', rct_id); 338 rects.enter().append('rect').attr('_id', rct_id);
322 - gps_update_point(rects, svg); 339 +
  340 + //lineCode+'_'+suffixs[wrap.attr('class')]
  341 + var wrapId = $(svg).data('code') + '_' + suffixs[$(svg).parent().attr('class')];
  342 + gps_update_point(rects, svg, wrapId);
323 //text 343 //text
324 var ts = gps_cont.selectAll('text').data(data, gps_key); 344 var ts = gps_cont.selectAll('text').data(data, gps_key);
325 ts.enter().append('text').attr('_id', tx_id); 345 ts.enter().append('text').attr('_id', tx_id);
326 ts.text(g_text) 346 ts.text(g_text)
327 - gps_update_point(ts, svg); 347 + gps_update_point(ts, svg, wrapId);
328 }; 348 };
329 349
330 var marker_clusterer = function (svg, lineCode) { 350 var marker_clusterer = function (svg, lineCode) {
@@ -405,6 +425,12 @@ var gb_svg_chart = (function () { @@ -405,6 +425,12 @@ var gb_svg_chart = (function () {
405 draw_line: draw_line, 425 draw_line: draw_line,
406 setGps: setGps, 426 setGps: setGps,
407 deviceOffline: deviceOffline, 427 deviceOffline: deviceOffline,
408 - refreshByVisible: refreshByVisible 428 + refreshByVisible: refreshByVisible,
  429 + disabledAnimation: function () {
  430 + animation = false;
  431 + },
  432 + enabledAnimation: function () {
  433 + animation = true;
  434 + }
409 }; 435 };
410 })(); 436 })();