Commit 6ef6d97e6bb29b0f15ba3fabbbc1460af8fe01d9
1 parent
8ed2f6f3
PSM-7
Showing
14 changed files
with
4007 additions
and
3900 deletions
src/main/java/com/bsth/controller/schedule/TTInfoDetailController.java
| ... | ... | @@ -116,6 +116,7 @@ public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { |
| 116 | 116 | if (sheet.getRows() == 0 || sheet.getColumns() == 0) { // 工作区是否为空 |
| 117 | 117 | rtn.put("status", ResponseCode.ERROR); |
| 118 | 118 | rtn.put("msg", String.format("%s 工作区没有数据!", sheetname)); |
| 119 | + return rtn; | |
| 119 | 120 | } else { |
| 120 | 121 | if (sheet.getRows() <= 1 || sheet.getColumns() <= 1) { |
| 121 | 122 | rtn.put("status", ResponseCode.ERROR); |
| ... | ... | @@ -147,11 +148,11 @@ public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { |
| 147 | 148 | List<StationRoute> stationRouteList = (List<StationRoute>) stationRouteService.list(p1); |
| 148 | 149 | if (CollectionUtils.isEmpty(stationRouteList)) { |
| 149 | 150 | rtn.put("status", ResponseCode.ERROR); |
| 150 | - rtn.put("msg", String.format("第1行,第%d列数据在%s站点路由中不是起点站", i + 1, linename)); | |
| 151 | + rtn.put("msg", String.format("第1行,第%d列数据%s在%s站点路由中不是起点站", i + 1, cell_con.trim(), linename)); | |
| 151 | 152 | return rtn; |
| 152 | 153 | } else if (stationRouteList.size() > 1) { |
| 153 | 154 | rtn.put("status", ResponseCode.ERROR); |
| 154 | - rtn.put("msg", String.format("第1行,第%d列数据在%s站点路由中上下行都是起点站", i + 1, linename)); | |
| 155 | + rtn.put("msg", String.format("第1行,第%d列数据%s在%s站点路由中上下行都是起点站", i + 1, cell_con.trim(), linename)); | |
| 155 | 156 | return rtn; |
| 156 | 157 | } |
| 157 | 158 | } |
| ... | ... | @@ -363,6 +364,7 @@ public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { |
| 363 | 364 | |
| 364 | 365 | ttInfoDetailService.fileDataImport( |
| 365 | 366 | new File(filename + "_temp.xls"), |
| 367 | + (String) form.get("sheetname"), | |
| 366 | 368 | (String) form.get("xlname"), |
| 367 | 369 | (String) form.get("ttname"), |
| 368 | 370 | tccname | ... | ... |
src/main/java/com/bsth/entity/schedule/SchedulePlan.java
| ... | ... | @@ -38,6 +38,15 @@ public class SchedulePlan { |
| 38 | 38 | @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) |
| 39 | 39 | private ScheduleRule1 scheduleRule1; |
| 40 | 40 | |
| 41 | + // TODO: 新字段,测试完后删除旧的字段 | |
| 42 | + | |
| 43 | + /** 使用的时刻表名字列表(用逗号连接) */ | |
| 44 | + private String ttInfoNames; | |
| 45 | + /** 使用的时刻表id列表(用逗号连接) */ | |
| 46 | + private String ttInfoId; | |
| 47 | + /** 使用的规则1列表(用逗号连接) */ | |
| 48 | + private String rule1Ids; | |
| 49 | + | |
| 41 | 50 | /** 排班计划的开始时间 */ |
| 42 | 51 | @Column(nullable = false) |
| 43 | 52 | private Date scheduleFromTime; |
| ... | ... | @@ -150,4 +159,28 @@ public class SchedulePlan { |
| 150 | 159 | public void setUpdateDate(Date updateDate) { |
| 151 | 160 | this.updateDate = updateDate; |
| 152 | 161 | } |
| 162 | + | |
| 163 | + public String getTtInfoNames() { | |
| 164 | + return ttInfoNames; | |
| 165 | + } | |
| 166 | + | |
| 167 | + public void setTtInfoNames(String ttInfoNames) { | |
| 168 | + this.ttInfoNames = ttInfoNames; | |
| 169 | + } | |
| 170 | + | |
| 171 | + public String getTtInfoId() { | |
| 172 | + return ttInfoId; | |
| 173 | + } | |
| 174 | + | |
| 175 | + public void setTtInfoId(String ttInfoId) { | |
| 176 | + this.ttInfoId = ttInfoId; | |
| 177 | + } | |
| 178 | + | |
| 179 | + public String getRule1Ids() { | |
| 180 | + return rule1Ids; | |
| 181 | + } | |
| 182 | + | |
| 183 | + public void setRule1Ids(String rule1Ids) { | |
| 184 | + this.rule1Ids = rule1Ids; | |
| 185 | + } | |
| 153 | 186 | } | ... | ... |
src/main/java/com/bsth/entity/schedule/SchedulePlanInfo.java
| ... | ... | @@ -121,6 +121,13 @@ public class SchedulePlanInfo { |
| 121 | 121 | @Column(nullable = false) |
| 122 | 122 | private String bcType; |
| 123 | 123 | |
| 124 | + // 重要的新增字段 | |
| 125 | + /** 关联的时刻表id */ | |
| 126 | + private Long ttInfo; | |
| 127 | + /** 关联的时刻表名字 */ | |
| 128 | + private String ttInfoName; | |
| 129 | + | |
| 130 | + | |
| 124 | 131 | /** 创建人 */ |
| 125 | 132 | @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) |
| 126 | 133 | private SysUser createBy; |
| ... | ... | @@ -555,4 +562,20 @@ public class SchedulePlanInfo { |
| 555 | 562 | public void setSchedulePlan(SchedulePlan schedulePlan) { |
| 556 | 563 | this.schedulePlan = schedulePlan; |
| 557 | 564 | } |
| 565 | + | |
| 566 | + public Long getTtInfo() { | |
| 567 | + return ttInfo; | |
| 568 | + } | |
| 569 | + | |
| 570 | + public void setTtInfo(Long ttInfo) { | |
| 571 | + this.ttInfo = ttInfo; | |
| 572 | + } | |
| 573 | + | |
| 574 | + public String getTtInfoName() { | |
| 575 | + return ttInfoName; | |
| 576 | + } | |
| 577 | + | |
| 578 | + public void setTtInfoName(String ttInfoName) { | |
| 579 | + this.ttInfoName = ttInfoName; | |
| 580 | + } | |
| 558 | 581 | } | ... | ... |
src/main/java/com/bsth/entity/search/PredicatesBuilder.java
| ... | ... | @@ -29,7 +29,26 @@ public class PredicatesBuilder { |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | public static Predicate eq(CriteriaBuilder cb,Path<?> expression, Object object){ |
| 32 | - return cb.equal(expression, object); | |
| 32 | + Class<?> leftType = expression.getJavaType(); | |
| 33 | + Class<?> rightType = object.getClass(); | |
| 34 | + | |
| 35 | + if (Number.class.isAssignableFrom(leftType) && | |
| 36 | + (Number.class.isAssignableFrom(rightType) || String.class.isAssignableFrom(rightType))) { // Number == Number/String | |
| 37 | + return cb.equal(expression, object); | |
| 38 | + } else if (String.class.isAssignableFrom(leftType) && | |
| 39 | + (String.class.isAssignableFrom(rightType) || Number.class.isAssignableFrom(rightType))) { // String == String/Number | |
| 40 | + return cb.equal(expression, object); | |
| 41 | + } else if (Date.class.isAssignableFrom(leftType) && | |
| 42 | + Date.class.isAssignableFrom(rightType)) { // Date == Date | |
| 43 | + return cb.equal(expression, object); | |
| 44 | + } else if (Date.class.isAssignableFrom(leftType) && | |
| 45 | + String.class.isAssignableFrom(rightType)) { // Date == String | |
| 46 | + DateTime dateTime = new DateTime(object); | |
| 47 | + return cb.equal(expression, dateTime.toDate()); | |
| 48 | + } else { | |
| 49 | + throw new RuntimeException("eq 不支持类型组合:" + expression.getJavaType() + "==" + object.getClass()); | |
| 50 | + } | |
| 51 | + | |
| 33 | 52 | } |
| 34 | 53 | |
| 35 | 54 | public static Predicate ne(CriteriaBuilder cb,Path<?> expression, Object object){ |
| ... | ... | @@ -49,17 +68,17 @@ public class PredicatesBuilder { |
| 49 | 68 | Class<?> leftType = expression.getJavaType(); |
| 50 | 69 | Class<?> rightType = object.getClass(); |
| 51 | 70 | |
| 52 | - if (leftType.isAssignableFrom(Number.class) && | |
| 53 | - rightType.isAssignableFrom(Number.class)) { // 判定是否是Number类型的子类 | |
| 71 | + if (Number.class.isAssignableFrom(leftType) && | |
| 72 | + (Number.class.isAssignableFrom(rightType) || String.class.isAssignableFrom(rightType))) { // Number >= Number/String | |
| 54 | 73 | return cb.ge((Path<Number>) expression, (Number) object); |
| 55 | - } else if (leftType.isAssignableFrom(String.class) && | |
| 56 | - rightType.isAssignableFrom(String.class)) { // 判定是否是String类型的子类 | |
| 74 | + } else if (String.class.isAssignableFrom(leftType) && | |
| 75 | + (String.class.isAssignableFrom(rightType) || Number.class.isAssignableFrom(rightType))) { // String >= String/Number | |
| 57 | 76 | return cb.greaterThanOrEqualTo((Path<String>) expression, (String) object); |
| 58 | - } else if (leftType.isAssignableFrom(Date.class) && | |
| 59 | - rightType.isAssignableFrom(Date.class)) { // 判定是否是Date类型的子类 | |
| 77 | + } else if (Date.class.isAssignableFrom(leftType) && | |
| 78 | + Date.class.isAssignableFrom(rightType)) { // Date >= Date | |
| 60 | 79 | return cb.greaterThanOrEqualTo((Path<Date>) expression, (Date) object); |
| 61 | - } else if (leftType.isAssignableFrom(Date.class) && | |
| 62 | - rightType.isAssignableFrom(String.class)) { // 左边是日期,右边是字符串,尝试转换字符串到日期 | |
| 80 | + } else if (Date.class.isAssignableFrom(leftType) && | |
| 81 | + String.class.isAssignableFrom(rightType)) { // Date >= String | |
| 63 | 82 | DateTime dateTime = new DateTime(object); |
| 64 | 83 | return cb.greaterThanOrEqualTo((Path<Date>) expression, dateTime.toDate()); |
| 65 | 84 | } else { |
| ... | ... | @@ -80,21 +99,22 @@ public class PredicatesBuilder { |
| 80 | 99 | Class<?> leftType = expression.getJavaType(); |
| 81 | 100 | Class<?> rightType = object.getClass(); |
| 82 | 101 | |
| 83 | - if (leftType.isAssignableFrom(Number.class) && | |
| 84 | - rightType.isAssignableFrom(Number.class)) { // 判定是否是Number类型的子类 | |
| 102 | + | |
| 103 | + if (Number.class.isAssignableFrom(leftType) && | |
| 104 | + (Number.class.isAssignableFrom(rightType) || String.class.isAssignableFrom(rightType))) { // Number <= Number/String | |
| 85 | 105 | return cb.le((Path<Number>) expression, (Number) object); |
| 86 | - } else if (leftType.isAssignableFrom(String.class) && | |
| 87 | - rightType.isAssignableFrom(String.class)) { // 判定是否是String类型的子类 | |
| 106 | + } else if (String.class.isAssignableFrom(leftType) && | |
| 107 | + (String.class.isAssignableFrom(rightType) || Number.class.isAssignableFrom(rightType))) { // String <= String/Number | |
| 88 | 108 | return cb.lessThanOrEqualTo((Path<String>) expression, (String) object); |
| 89 | - } else if (leftType.isAssignableFrom(Date.class) && | |
| 90 | - rightType.isAssignableFrom(Date.class)) { // 判定是否是Date类型的子类 | |
| 109 | + } else if (Date.class.isAssignableFrom(leftType) && | |
| 110 | + Date.class.isAssignableFrom(rightType)) { // Date <= Date | |
| 91 | 111 | return cb.lessThanOrEqualTo((Path<Date>) expression, (Date) object); |
| 92 | - } else if (leftType.isAssignableFrom(Date.class) && | |
| 93 | - rightType.isAssignableFrom(String.class)) { // 左边是日期,右边是字符串,尝试转换字符串到日期 | |
| 112 | + } else if (Date.class.isAssignableFrom(leftType) && | |
| 113 | + String.class.isAssignableFrom(rightType)) { // Date <= String | |
| 94 | 114 | DateTime dateTime = new DateTime(object); |
| 95 | 115 | return cb.lessThanOrEqualTo((Path<Date>) expression, dateTime.toDate()); |
| 96 | 116 | } else { |
| 97 | - throw new RuntimeException("ge 不支持类型组合:" + expression.getJavaType() + ">=" + object.getClass()); | |
| 117 | + throw new RuntimeException("le 不支持类型组合:" + expression.getJavaType() + "<=" + object.getClass()); | |
| 98 | 118 | } |
| 99 | 119 | } |
| 100 | 120 | ... | ... |
src/main/java/com/bsth/service/schedule/TTInfoDetailService.java
| ... | ... | @@ -136,7 +136,7 @@ public interface TTInfoDetailService extends BaseService<TTInfoDetail, Long> { |
| 136 | 136 | String ttinfoname, |
| 137 | 137 | String tccname) throws Exception; |
| 138 | 138 | |
| 139 | - void fileDataImport(File file, String xlmc, String ttinfoname, String tccname) throws Exception; | |
| 139 | + void fileDataImport(File file, String sheetname, String xlmc, String ttinfoname, String tccname) throws Exception; | |
| 140 | 140 | |
| 141 | 141 | |
| 142 | 142 | } | ... | ... |
src/main/java/com/bsth/service/schedule/TTInfoDetailServiceImpl.java
| ... | ... | @@ -114,6 +114,7 @@ public class TTInfoDetailServiceImpl extends BaseServiceImpl<TTInfoDetail, Long> |
| 114 | 114 | return editInfo; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | + @Override | |
| 117 | 118 | /** |
| 118 | 119 | * 上传并导入数据,和DataImportExportService的同名方法有差别。 |
| 119 | 120 | * @param datafile form上传文件 |
| ... | ... | @@ -128,12 +129,12 @@ public class TTInfoDetailServiceImpl extends BaseServiceImpl<TTInfoDetail, Long> |
| 128 | 129 | String tccname) throws Exception { |
| 129 | 130 | // 上传数据文件 |
| 130 | 131 | File uploadFile = dataImportExportService.uploadFile(datafile); |
| 131 | - fileDataImport(uploadFile, xlmc, ttinfoname, tccname); | |
| 132 | + fileDataImport(uploadFile, "工作表1", xlmc, ttinfoname, tccname); | |
| 132 | 133 | |
| 133 | 134 | } |
| 134 | 135 | |
| 135 | 136 | @Override |
| 136 | - public void fileDataImport(File uploadFile, String xlmc, String ttinfoname, String tccname) throws Exception { | |
| 137 | + public void fileDataImport(File uploadFile, String sheetname, String xlmc, String ttinfoname, String tccname) throws Exception { | |
| 137 | 138 | // 1、上传数据文件 |
| 138 | 139 | System.out.println("线路名称:" + xlmc); |
| 139 | 140 | System.out.println("时刻表名称:" + ttinfoname); |
| ... | ... | @@ -162,6 +163,7 @@ public class TTInfoDetailServiceImpl extends BaseServiceImpl<TTInfoDetail, Long> |
| 162 | 163 | // 2.3、设定命名参数,用于指定数据文件,注意每个ktr必须都有以下指定的命名参数 |
| 163 | 164 | trans.setParameterValue("injectktrfile", ktrFile2.getAbsolutePath()); // 注入元数据的ktr文件 |
| 164 | 165 | trans.setParameterValue("filepath", uploadFile.getAbsolutePath()); // 指定导入数据文件的位置 |
| 166 | + trans.setParameterValue("sheetname", sheetname); // sheet工作区的名字 | |
| 165 | 167 | trans.setParameterValue("erroroutputdir", dataToolsProperties.getTransErrordir()); // ktr转换错误输出目录 |
| 166 | 168 | trans.setParameterValue("xlname", xlmc); // 线路名称 |
| 167 | 169 | trans.setParameterValue("ttinfoname", ttinfoname); // 时刻表名称 | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>ttinfodetailDataInput</name> | |
| 5 | - <description>时刻表明细信息导入</description> | |
| 6 | - <extended_description>时刻表明细信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - </parameters> | |
| 13 | - <log> | |
| 14 | -<trans-log-table><connection/> | |
| 15 | -<schema/> | |
| 16 | -<table/> | |
| 17 | -<size_limit_lines/> | |
| 18 | -<interval/> | |
| 19 | -<timeout_days/> | |
| 20 | -<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> | |
| 21 | -<perf-log-table><connection/> | |
| 22 | -<schema/> | |
| 23 | -<table/> | |
| 24 | -<interval/> | |
| 25 | -<timeout_days/> | |
| 26 | -<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> | |
| 27 | -<channel-log-table><connection/> | |
| 28 | -<schema/> | |
| 29 | -<table/> | |
| 30 | -<timeout_days/> | |
| 31 | -<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> | |
| 32 | -<step-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>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> | |
| 37 | -<metrics-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>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> | |
| 42 | - </log> | |
| 43 | - <maxdate> | |
| 44 | - <connection/> | |
| 45 | - <table/> | |
| 46 | - <field/> | |
| 47 | - <offset>0.0</offset> | |
| 48 | - <maxdiff>0.0</maxdiff> | |
| 49 | - </maxdate> | |
| 50 | - <size_rowset>10000</size_rowset> | |
| 51 | - <sleep_time_empty>50</sleep_time_empty> | |
| 52 | - <sleep_time_full>50</sleep_time_full> | |
| 53 | - <unique_connections>N</unique_connections> | |
| 54 | - <feedback_shown>Y</feedback_shown> | |
| 55 | - <feedback_size>50000</feedback_size> | |
| 56 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 57 | - <shared_objects_file/> | |
| 58 | - <capture_step_performance>N</capture_step_performance> | |
| 59 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 60 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 61 | - <dependencies> | |
| 62 | - </dependencies> | |
| 63 | - <partitionschemas> | |
| 64 | - </partitionschemas> | |
| 65 | - <slaveservers> | |
| 66 | - </slaveservers> | |
| 67 | - <clusterschemas> | |
| 68 | - </clusterschemas> | |
| 69 | - <created_user>-</created_user> | |
| 70 | - <created_date>2016/06/30 12:21:57.536</created_date> | |
| 71 | - <modified_user>-</modified_user> | |
| 72 | - <modified_date>2016/06/30 12:21:57.536</modified_date> | |
| 73 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 74 | - <is_key_private>N</is_key_private> | |
| 75 | - </info> | |
| 76 | - <notepads> | |
| 77 | - <notepad> | |
| 78 | - <note>字典表对应(以后直接查找表 bsth_c_sys_dictionary)
类型 代码 名称
LineTrend 0 上行
LineTrend 1 下行
ScheduleType normal 正常班次
ScheduleType out 出场
ScheduleType in 进场
ScheduleType temp 临加
ScheduleType region 区间
ScheduleType venting 放空
ScheduleType major 放大站</note> | |
| 79 | - <xloc>606</xloc> | |
| 80 | - <yloc>129</yloc> | |
| 81 | - <width>332</width> | |
| 82 | - <heigth>186</heigth> | |
| 83 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 84 | - <fontsize>12</fontsize> | |
| 85 | - <fontbold>N</fontbold> | |
| 86 | - <fontitalic>N</fontitalic> | |
| 87 | - <fontcolorred>0</fontcolorred> | |
| 88 | - <fontcolorgreen>0</fontcolorgreen> | |
| 89 | - <fontcolorblue>0</fontcolorblue> | |
| 90 | - <backgroundcolorred>255</backgroundcolorred> | |
| 91 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 92 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 93 | - <bordercolorred>100</bordercolorred> | |
| 94 | - <bordercolorgreen>100</bordercolorgreen> | |
| 95 | - <bordercolorblue>100</bordercolorblue> | |
| 96 | - <drawshadow>Y</drawshadow> | |
| 97 | - </notepad> | |
| 98 | - <notepad> | |
| 99 | - <note>因为时刻表输入格式不确定性,主要因为表结构是反范式化的,
所以需要外部动态指定愿数据,头三个step动态指定愿数据

</note> | |
| 100 | - <xloc>79</xloc> | |
| 101 | - <yloc>206</yloc> | |
| 102 | - <width>346</width> | |
| 103 | - <heigth>74</heigth> | |
| 104 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 105 | - <fontsize>12</fontsize> | |
| 106 | - <fontbold>N</fontbold> | |
| 107 | - <fontitalic>N</fontitalic> | |
| 108 | - <fontcolorred>0</fontcolorred> | |
| 109 | - <fontcolorgreen>0</fontcolorgreen> | |
| 110 | - <fontcolorblue>0</fontcolorblue> | |
| 111 | - <backgroundcolorred>255</backgroundcolorred> | |
| 112 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 113 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 114 | - <bordercolorred>100</bordercolorred> | |
| 115 | - <bordercolorgreen>100</bordercolorgreen> | |
| 116 | - <bordercolorblue>100</bordercolorblue> | |
| 117 | - <drawshadow>Y</drawshadow> | |
| 118 | - </notepad> | |
| 119 | - </notepads> | |
| 120 | - <connection> | |
| 121 | - <name>bus_control_variable</name> | |
| 122 | - <server>${v_db_ip}</server> | |
| 123 | - <type>MYSQL</type> | |
| 124 | - <access>Native</access> | |
| 125 | - <database>${v_db_dname}</database> | |
| 126 | - <port>3306</port> | |
| 127 | - <username>${v_db_uname}</username> | |
| 128 | - <password>${v_db_pwd}</password> | |
| 129 | - <servername/> | |
| 130 | - <data_tablespace/> | |
| 131 | - <index_tablespace/> | |
| 132 | - <attributes> | |
| 133 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 134 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 135 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 136 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 137 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 138 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 139 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 140 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 141 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 142 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 143 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 144 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 145 | - </attributes> | |
| 146 | - </connection> | |
| 147 | - <connection> | |
| 148 | - <name>bus_control_公司_201</name> | |
| 149 | - <server>localhost</server> | |
| 150 | - <type>MYSQL</type> | |
| 151 | - <access>Native</access> | |
| 152 | - <database>control</database> | |
| 153 | - <port>3306</port> | |
| 154 | - <username>root</username> | |
| 155 | - <password>Encrypted </password> | |
| 156 | - <servername/> | |
| 157 | - <data_tablespace/> | |
| 158 | - <index_tablespace/> | |
| 159 | - <attributes> | |
| 160 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 161 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 162 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 163 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 164 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 165 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 166 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 167 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 168 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 169 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 170 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 171 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 172 | - </attributes> | |
| 173 | - </connection> | |
| 174 | - <connection> | |
| 175 | - <name>bus_control_本机</name> | |
| 176 | - <server>localhost</server> | |
| 177 | - <type>MYSQL</type> | |
| 178 | - <access>Native</access> | |
| 179 | - <database>control</database> | |
| 180 | - <port>3306</port> | |
| 181 | - <username>root</username> | |
| 182 | - <password>Encrypted </password> | |
| 183 | - <servername/> | |
| 184 | - <data_tablespace/> | |
| 185 | - <index_tablespace/> | |
| 186 | - <attributes> | |
| 187 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 188 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 189 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 190 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 191 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 192 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 193 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 194 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 195 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 196 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 197 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 198 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 199 | - </attributes> | |
| 200 | - </connection> | |
| 201 | - <connection> | |
| 202 | - <name>xlab_mysql_youle</name> | |
| 203 | - <server>101.231.124.8</server> | |
| 204 | - <type>MYSQL</type> | |
| 205 | - <access>Native</access> | |
| 206 | - <database>xlab_youle</database> | |
| 207 | - <port>45687</port> | |
| 208 | - <username>xlab-youle</username> | |
| 209 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 210 | - <servername/> | |
| 211 | - <data_tablespace/> | |
| 212 | - <index_tablespace/> | |
| 213 | - <attributes> | |
| 214 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 215 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 216 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 217 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 218 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 219 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 220 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 221 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 222 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 223 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 224 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 225 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 226 | - </attributes> | |
| 227 | - </connection> | |
| 228 | - <connection> | |
| 229 | - <name>xlab_mysql_youle(本机)</name> | |
| 230 | - <server>localhost</server> | |
| 231 | - <type>MYSQL</type> | |
| 232 | - <access>Native</access> | |
| 233 | - <database>xlab_youle</database> | |
| 234 | - <port>3306</port> | |
| 235 | - <username>root</username> | |
| 236 | - <password>Encrypted </password> | |
| 237 | - <servername/> | |
| 238 | - <data_tablespace/> | |
| 239 | - <index_tablespace/> | |
| 240 | - <attributes> | |
| 241 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 242 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 243 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 244 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 245 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 246 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 247 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 248 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 249 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 250 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 251 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 252 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 253 | - </attributes> | |
| 254 | - </connection> | |
| 255 | - <connection> | |
| 256 | - <name>xlab_youle</name> | |
| 257 | - <server/> | |
| 258 | - <type>MYSQL</type> | |
| 259 | - <access>JNDI</access> | |
| 260 | - <database>xlab_youle</database> | |
| 261 | - <port>1521</port> | |
| 262 | - <username/> | |
| 263 | - <password>Encrypted </password> | |
| 264 | - <servername/> | |
| 265 | - <data_tablespace/> | |
| 266 | - <index_tablespace/> | |
| 267 | - <attributes> | |
| 268 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 269 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 270 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 271 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 272 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 273 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 274 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 275 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 276 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 277 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 278 | - </attributes> | |
| 279 | - </connection> | |
| 280 | - <order> | |
| 281 | - <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 282 | - <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 283 | - <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</to><enabled>Y</enabled> </hop> | |
| 284 | - <hop> <from>添加对应班次数</from><to>处理数据</to><enabled>Y</enabled> </hop> | |
| 285 | - <hop> <from>处理数据</from><to>分组各个路牌的站</to><enabled>Y</enabled> </hop> | |
| 286 | - <hop> <from>查找时刻表基础信息关联</from><to>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 287 | - <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 288 | - <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 289 | - <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 290 | - <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 291 | - <hop> <from>匹配上下行正常班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 292 | - <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 293 | - <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 294 | - <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 295 | - <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 296 | - <hop> <from>查找线路上下行里程时间</from><to>匹配上下行正常班次里程时间</to><enabled>Y</enabled> </hop> | |
| 297 | - <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 298 | - <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 299 | - <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 300 | - <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 301 | - <hop> <from>班次类型字典</from><to>查找线路上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 302 | - <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 303 | - <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 304 | - <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 305 | - <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 306 | - <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 307 | - <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 308 | - <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 309 | - <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 310 | - <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 311 | - <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 312 | - <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 313 | - <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 314 | - <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 315 | - <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 316 | - <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 317 | - <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 318 | - <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 319 | - <hop> <from>类型修正</from><to>插入/更新bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop> | |
| 320 | - <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>查找进场起点站关联确定上下行</to><enabled>Y</enabled> </hop> | |
| 321 | - <hop> <from>查找进场起点站关联确定上下行</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 322 | - <hop> <from>查找线路出场里程时间</from><to>匹配出场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 323 | - <hop> <from>匹配出场班次里程时间</from><to>类型修正 2</to><enabled>Y</enabled> </hop> | |
| 324 | - <hop> <from>类型修正 2</from><to>插入/更新bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop> | |
| 325 | - <hop> <from>查找线路进场里程时间</from><to>匹配进场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 326 | - <hop> <from>匹配进场班次里程时间</from><to>类型修正 3</to><enabled>Y</enabled> </hop> | |
| 327 | - <hop> <from>类型修正 3</from><to>插入/更新bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop> | |
| 328 | - </order> | |
| 329 | - <step> | |
| 330 | - <name>上下行字典</name> | |
| 331 | - <type>ValueMapper</type> | |
| 332 | - <description/> | |
| 333 | - <distribute>Y</distribute> | |
| 334 | - <custom_distribution/> | |
| 335 | - <copies>1</copies> | |
| 336 | - <partitioning> | |
| 337 | - <method>none</method> | |
| 338 | - <schema_name/> | |
| 339 | - </partitioning> | |
| 340 | - <field_to_use>sxx</field_to_use> | |
| 341 | - <target_field>sxx_desc</target_field> | |
| 342 | - <non_match_default/> | |
| 343 | - <fields> | |
| 344 | - <field> | |
| 345 | - <source_value>0</source_value> | |
| 346 | - <target_value>上行</target_value> | |
| 347 | - </field> | |
| 348 | - <field> | |
| 349 | - <source_value>1</source_value> | |
| 350 | - <target_value>下行</target_value> | |
| 351 | - </field> | |
| 352 | - </fields> | |
| 353 | - <cluster_schema/> | |
| 354 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 355 | - <xloc>147</xloc> | |
| 356 | - <yloc>403</yloc> | |
| 357 | - <draw>Y</draw> | |
| 358 | - </GUI> | |
| 359 | - </step> | |
| 360 | - | |
| 361 | - <step> | |
| 362 | - <name>上下行字典 2</name> | |
| 363 | - <type>ValueMapper</type> | |
| 364 | - <description/> | |
| 365 | - <distribute>Y</distribute> | |
| 366 | - <custom_distribution/> | |
| 367 | - <copies>1</copies> | |
| 368 | - <partitioning> | |
| 369 | - <method>none</method> | |
| 370 | - <schema_name/> | |
| 371 | - </partitioning> | |
| 372 | - <field_to_use>sxx</field_to_use> | |
| 373 | - <target_field>sxx_desc</target_field> | |
| 374 | - <non_match_default/> | |
| 375 | - <fields> | |
| 376 | - <field> | |
| 377 | - <source_value>0</source_value> | |
| 378 | - <target_value>上行</target_value> | |
| 379 | - </field> | |
| 380 | - <field> | |
| 381 | - <source_value>1</source_value> | |
| 382 | - <target_value>下行</target_value> | |
| 383 | - </field> | |
| 384 | - </fields> | |
| 385 | - <cluster_schema/> | |
| 386 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 387 | - <xloc>331</xloc> | |
| 388 | - <yloc>598</yloc> | |
| 389 | - <draw>Y</draw> | |
| 390 | - </GUI> | |
| 391 | - </step> | |
| 392 | - | |
| 393 | - <step> | |
| 394 | - <name>上下行字典 3</name> | |
| 395 | - <type>ValueMapper</type> | |
| 396 | - <description/> | |
| 397 | - <distribute>Y</distribute> | |
| 398 | - <custom_distribution/> | |
| 399 | - <copies>1</copies> | |
| 400 | - <partitioning> | |
| 401 | - <method>none</method> | |
| 402 | - <schema_name/> | |
| 403 | - </partitioning> | |
| 404 | - <field_to_use>sxx</field_to_use> | |
| 405 | - <target_field>sxx_desc</target_field> | |
| 406 | - <non_match_default/> | |
| 407 | - <fields> | |
| 408 | - <field> | |
| 409 | - <source_value>0</source_value> | |
| 410 | - <target_value>上行</target_value> | |
| 411 | - </field> | |
| 412 | - <field> | |
| 413 | - <source_value>1</source_value> | |
| 414 | - <target_value>下行</target_value> | |
| 415 | - </field> | |
| 416 | - </fields> | |
| 417 | - <cluster_schema/> | |
| 418 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 419 | - <xloc>553</xloc> | |
| 420 | - <yloc>859</yloc> | |
| 421 | - <draw>Y</draw> | |
| 422 | - </GUI> | |
| 423 | - </step> | |
| 424 | - | |
| 425 | - <step> | |
| 426 | - <name>出场班次_确定终点站名字</name> | |
| 427 | - <type>ScriptValueMod</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 | - <compatible>N</compatible> | |
| 437 | - <optimizationLevel>9</optimizationLevel> | |
| 438 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 439 | - <jsScript_name>Script 1</jsScript_name> | |
| 440 | - <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'E';</jsScript_script> | |
| 441 | - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 442 | - <rename>zdzname</rename> | |
| 443 | - <type>String</type> | |
| 444 | - <length>-1</length> | |
| 445 | - <precision>-1</precision> | |
| 446 | - <replace>N</replace> | |
| 447 | - </field> <field> <name>endZdtype</name> | |
| 448 | - <rename>endZdtype</rename> | |
| 449 | - <type>String</type> | |
| 450 | - <length>-1</length> | |
| 451 | - <precision>-1</precision> | |
| 452 | - <replace>N</replace> | |
| 453 | - </field> </fields> <cluster_schema/> | |
| 454 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 455 | - <xloc>575</xloc> | |
| 456 | - <yloc>502</yloc> | |
| 457 | - <draw>Y</draw> | |
| 458 | - </GUI> | |
| 459 | - </step> | |
| 460 | - | |
| 461 | - <step> | |
| 462 | - <name>出场班次数据</name> | |
| 463 | - <type>Dummy</type> | |
| 464 | - <description/> | |
| 465 | - <distribute>Y</distribute> | |
| 466 | - <custom_distribution/> | |
| 467 | - <copies>1</copies> | |
| 468 | - <partitioning> | |
| 469 | - <method>none</method> | |
| 470 | - <schema_name/> | |
| 471 | - </partitioning> | |
| 472 | - <cluster_schema/> | |
| 473 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 474 | - <xloc>869</xloc> | |
| 475 | - <yloc>504</yloc> | |
| 476 | - <draw>Y</draw> | |
| 477 | - </GUI> | |
| 478 | - </step> | |
| 479 | - | |
| 480 | - <step> | |
| 481 | - <name>分组各个路牌的站</name> | |
| 482 | - <type>GroupBy</type> | |
| 483 | - <description/> | |
| 484 | - <distribute>Y</distribute> | |
| 485 | - <custom_distribution/> | |
| 486 | - <copies>1</copies> | |
| 487 | - <partitioning> | |
| 488 | - <method>none</method> | |
| 489 | - <schema_name/> | |
| 490 | - </partitioning> | |
| 491 | - <all_rows>Y</all_rows> | |
| 492 | - <ignore_aggregate>N</ignore_aggregate> | |
| 493 | - <field_ignore/> | |
| 494 | - <directory>%%java.io.tmpdir%%</directory> | |
| 495 | - <prefix>grp</prefix> | |
| 496 | - <add_linenr>Y</add_linenr> | |
| 497 | - <linenr_fieldname>gno</linenr_fieldname> | |
| 498 | - <give_back_row>N</give_back_row> | |
| 499 | - <group> | |
| 500 | - <field> | |
| 501 | - <name>lp</name> | |
| 502 | - </field> | |
| 503 | - </group> | |
| 504 | - <fields> | |
| 505 | - <field> | |
| 506 | - <aggregate>qdzgroups</aggregate> | |
| 507 | - <subject>qdzname</subject> | |
| 508 | - <type>CONCAT_STRING</type> | |
| 509 | - <valuefield>,</valuefield> | |
| 510 | - </field> | |
| 511 | - </fields> | |
| 512 | - <cluster_schema/> | |
| 513 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 514 | - <xloc>892</xloc> | |
| 515 | - <yloc>44</yloc> | |
| 516 | - <draw>Y</draw> | |
| 517 | - </GUI> | |
| 518 | - </step> | |
| 519 | - | |
| 520 | - <step> | |
| 521 | - <name>匹配上下行正常班次里程时间</name> | |
| 522 | - <type>ScriptValueMod</type> | |
| 523 | - <description/> | |
| 524 | - <distribute>Y</distribute> | |
| 525 | - <custom_distribution/> | |
| 526 | - <copies>1</copies> | |
| 527 | - <partitioning> | |
| 528 | - <method>none</method> | |
| 529 | - <schema_name/> | |
| 530 | - </partitioning> | |
| 531 | - <compatible>N</compatible> | |
| 532 | - <optimizationLevel>9</optimizationLevel> | |
| 533 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 534 | - <jsScript_name>Script 1</jsScript_name> | |
| 535 | - <jsScript_script>//Script here

var jhlc; // 计划里程
var bcsj; // 班次时间

if (sxx == 0) { // 上行
 jhlc = up_mileage;
 bcsj = up_travel_time;
} else { // sxx == 1 下行
 jhlc = down_mileage;
 bcsj = down_travel_time;
}</jsScript_script> | |
| 536 | - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 537 | - <rename>jhlc</rename> | |
| 538 | - <type>String</type> | |
| 539 | - <length>-1</length> | |
| 540 | - <precision>-1</precision> | |
| 541 | - <replace>N</replace> | |
| 542 | - </field> <field> <name>bcsj</name> | |
| 543 | - <rename>bcsj</rename> | |
| 544 | - <type>String</type> | |
| 545 | - <length>-1</length> | |
| 546 | - <precision>-1</precision> | |
| 547 | - <replace>N</replace> | |
| 548 | - </field> </fields> <cluster_schema/> | |
| 549 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 550 | - <xloc>148</xloc> | |
| 551 | - <yloc>674</yloc> | |
| 552 | - <draw>Y</draw> | |
| 553 | - </GUI> | |
| 554 | - </step> | |
| 555 | - | |
| 556 | - <step> | |
| 557 | - <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 558 | - <type>DataGrid</type> | |
| 559 | - <description/> | |
| 560 | - <distribute>Y</distribute> | |
| 561 | - <custom_distribution/> | |
| 562 | - <copies>1</copies> | |
| 563 | - <partitioning> | |
| 564 | - <method>none</method> | |
| 565 | - <schema_name/> | |
| 566 | - </partitioning> | |
| 567 | - <fields> | |
| 568 | - </fields> | |
| 569 | - <data> | |
| 570 | - <line> </line> | |
| 571 | - </data> | |
| 572 | - <cluster_schema/> | |
| 573 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 574 | - <xloc>110</xloc> | |
| 575 | - <yloc>133</yloc> | |
| 576 | - <draw>Y</draw> | |
| 577 | - </GUI> | |
| 578 | - </step> | |
| 579 | - | |
| 580 | - <step> | |
| 581 | - <name>处理数据</name> | |
| 582 | - <type>ScriptValueMod</type> | |
| 583 | - <description/> | |
| 584 | - <distribute>Y</distribute> | |
| 585 | - <custom_distribution/> | |
| 586 | - <copies>1</copies> | |
| 587 | - <partitioning> | |
| 588 | - <method>none</method> | |
| 589 | - <schema_name/> | |
| 590 | - </partitioning> | |
| 591 | - <compatible>N</compatible> | |
| 592 | - <optimizationLevel>9</optimizationLevel> | |
| 593 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 594 | - <jsScript_name>Script 1</jsScript_name> | |
| 595 | - <jsScript_script>//Script here

// 使用正则表达式去除站点名称中的数字
qdzname = qdzname.replace(/\d+/g,'');

// sendtime处理
var sendtime_calcu;
if (sendtime.length != 5) 
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(2, 2);
else 
 sendtime_calcu = sendtime;

// 设置分班
var isfb = 0;

// 设置isCanceled
var iscanceled = 0;</jsScript_script> | |
| 596 | - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 597 | - <rename>qdzname</rename> | |
| 598 | - <type>String</type> | |
| 599 | - <length>-1</length> | |
| 600 | - <precision>-1</precision> | |
| 601 | - <replace>Y</replace> | |
| 602 | - </field> <field> <name>isfb</name> | |
| 603 | - <rename>isfb</rename> | |
| 604 | - <type>Integer</type> | |
| 605 | - <length>-1</length> | |
| 606 | - <precision>-1</precision> | |
| 607 | - <replace>N</replace> | |
| 608 | - </field> <field> <name>iscanceled</name> | |
| 609 | - <rename>iscanceled</rename> | |
| 610 | - <type>Integer</type> | |
| 611 | - <length>-1</length> | |
| 612 | - <precision>-1</precision> | |
| 613 | - <replace>N</replace> | |
| 614 | - </field> <field> <name>sendtime_calcu</name> | |
| 615 | - <rename>sendtime_calcu</rename> | |
| 616 | - <type>String</type> | |
| 617 | - <length>-1</length> | |
| 618 | - <precision>-1</precision> | |
| 619 | - <replace>N</replace> | |
| 620 | - </field> </fields> <cluster_schema/> | |
| 621 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 622 | - <xloc>788</xloc> | |
| 623 | - <yloc>44</yloc> | |
| 624 | - <draw>Y</draw> | |
| 625 | - </GUI> | |
| 626 | - </step> | |
| 627 | - | |
| 628 | - <step> | |
| 629 | - <name>字段选择</name> | |
| 630 | - <type>SelectValues</type> | |
| 631 | - <description/> | |
| 632 | - <distribute>Y</distribute> | |
| 633 | - <custom_distribution/> | |
| 634 | - <copies>1</copies> | |
| 635 | - <partitioning> | |
| 636 | - <method>none</method> | |
| 637 | - <schema_name/> | |
| 638 | - </partitioning> | |
| 639 | - <fields> <field> <name>路牌</name> | |
| 640 | - <rename>lp</rename> | |
| 641 | - <length>-2</length> | |
| 642 | - <precision>-2</precision> | |
| 643 | - </field> <field> <name>站点名称</name> | |
| 644 | - <rename>qdzname</rename> | |
| 645 | - <length>-2</length> | |
| 646 | - <precision>-2</precision> | |
| 647 | - </field> <field> <name>发车时间</name> | |
| 648 | - <rename>sendtime</rename> | |
| 649 | - <length>-2</length> | |
| 650 | - <precision>-2</precision> | |
| 651 | - </field> <select_unspecified>Y</select_unspecified> | |
| 652 | - </fields> <cluster_schema/> | |
| 653 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 654 | - <xloc>444</xloc> | |
| 655 | - <yloc>131</yloc> | |
| 656 | - <draw>Y</draw> | |
| 657 | - </GUI> | |
| 658 | - </step> | |
| 659 | - | |
| 660 | - <step> | |
| 661 | - <name>按照班次类型过滤数据1</name> | |
| 662 | - <type>FilterRows</type> | |
| 663 | - <description/> | |
| 664 | - <distribute>Y</distribute> | |
| 665 | - <custom_distribution/> | |
| 666 | - <copies>1</copies> | |
| 667 | - <partitioning> | |
| 668 | - <method>none</method> | |
| 669 | - <schema_name/> | |
| 670 | - </partitioning> | |
| 671 | -<send_true_to>正常班次数据</send_true_to> | |
| 672 | -<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 673 | - <compare> | |
| 674 | -<condition> | |
| 675 | - <negated>N</negated> | |
| 676 | - <leftvalue>bctype</leftvalue> | |
| 677 | - <function>=</function> | |
| 678 | - <rightvalue/> | |
| 679 | - <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 680 | - </compare> | |
| 681 | - <cluster_schema/> | |
| 682 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 683 | - <xloc>860</xloc> | |
| 684 | - <yloc>401</yloc> | |
| 685 | - <draw>Y</draw> | |
| 686 | - </GUI> | |
| 687 | - </step> | |
| 688 | - | |
| 689 | - <step> | |
| 690 | - <name>按照班次类型过滤数据2</name> | |
| 691 | - <type>FilterRows</type> | |
| 692 | - <description/> | |
| 693 | - <distribute>Y</distribute> | |
| 694 | - <custom_distribution/> | |
| 695 | - <copies>1</copies> | |
| 696 | - <partitioning> | |
| 697 | - <method>none</method> | |
| 698 | - <schema_name/> | |
| 699 | - </partitioning> | |
| 700 | -<send_true_to>出场班次数据</send_true_to> | |
| 701 | -<send_false_to>进场班次数据</send_false_to> | |
| 702 | - <compare> | |
| 703 | -<condition> | |
| 704 | - <negated>N</negated> | |
| 705 | - <leftvalue>bctype</leftvalue> | |
| 706 | - <function>=</function> | |
| 707 | - <rightvalue/> | |
| 708 | - <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 709 | - </compare> | |
| 710 | - <cluster_schema/> | |
| 711 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 712 | - <xloc>995</xloc> | |
| 713 | - <yloc>503</yloc> | |
| 714 | - <draw>Y</draw> | |
| 715 | - </GUI> | |
| 716 | - </step> | |
| 717 | - | |
| 718 | - <step> | |
| 719 | - <name>插入/更新bsth_c_s_ttinfo_detail</name> | |
| 720 | - <type>InsertUpdate</type> | |
| 721 | - <description/> | |
| 722 | - <distribute>Y</distribute> | |
| 723 | - <custom_distribution/> | |
| 724 | - <copies>1</copies> | |
| 725 | - <partitioning> | |
| 726 | - <method>none</method> | |
| 727 | - <schema_name/> | |
| 728 | - </partitioning> | |
| 729 | - <connection>bus_control_variable</connection> | |
| 730 | - <commit>100</commit> | |
| 731 | - <update_bypassed>N</update_bypassed> | |
| 732 | - <lookup> | |
| 733 | - <schema/> | |
| 734 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 735 | - <key> | |
| 736 | - <name>xlid</name> | |
| 737 | - <field>xl</field> | |
| 738 | - <condition>=</condition> | |
| 739 | - <name2/> | |
| 740 | - </key> | |
| 741 | - <key> | |
| 742 | - <name>ttid</name> | |
| 743 | - <field>ttinfo</field> | |
| 744 | - <condition>=</condition> | |
| 745 | - <name2/> | |
| 746 | - </key> | |
| 747 | - <key> | |
| 748 | - <name>lpid</name> | |
| 749 | - <field>lp</field> | |
| 750 | - <condition>=</condition> | |
| 751 | - <name2/> | |
| 752 | - </key> | |
| 753 | - <key> | |
| 754 | - <name>fcno</name> | |
| 755 | - <field>fcno</field> | |
| 756 | - <condition>=</condition> | |
| 757 | - <name2/> | |
| 758 | - </key> | |
| 759 | - <key> | |
| 760 | - <name>bcs</name> | |
| 761 | - <field>bcs</field> | |
| 762 | - <condition>=</condition> | |
| 763 | - <name2/> | |
| 764 | - </key> | |
| 765 | - <value> | |
| 766 | - <name>lp</name> | |
| 767 | - <rename>lpid</rename> | |
| 768 | - <update>Y</update> | |
| 769 | - </value> | |
| 770 | - <value> | |
| 771 | - <name>bc_type</name> | |
| 772 | - <rename>bctype_code</rename> | |
| 773 | - <update>Y</update> | |
| 774 | - </value> | |
| 775 | - <value> | |
| 776 | - <name>bcs</name> | |
| 777 | - <rename>bcs</rename> | |
| 778 | - <update>Y</update> | |
| 779 | - </value> | |
| 780 | - <value> | |
| 781 | - <name>bcsj</name> | |
| 782 | - <rename>bcsj</rename> | |
| 783 | - <update>Y</update> | |
| 784 | - </value> | |
| 785 | - <value> | |
| 786 | - <name>fcno</name> | |
| 787 | - <rename>fcno</rename> | |
| 788 | - <update>Y</update> | |
| 789 | - </value> | |
| 790 | - <value> | |
| 791 | - <name>jhlc</name> | |
| 792 | - <rename>jhlc</rename> | |
| 793 | - <update>Y</update> | |
| 794 | - </value> | |
| 795 | - <value> | |
| 796 | - <name>fcsj</name> | |
| 797 | - <rename>sendtime_calcu</rename> | |
| 798 | - <update>Y</update> | |
| 799 | - </value> | |
| 800 | - <value> | |
| 801 | - <name>ttinfo</name> | |
| 802 | - <rename>ttid</rename> | |
| 803 | - <update>Y</update> | |
| 804 | - </value> | |
| 805 | - <value> | |
| 806 | - <name>xl</name> | |
| 807 | - <rename>xlid</rename> | |
| 808 | - <update>Y</update> | |
| 809 | - </value> | |
| 810 | - <value> | |
| 811 | - <name>qdz</name> | |
| 812 | - <rename>qdzid</rename> | |
| 813 | - <update>Y</update> | |
| 814 | - </value> | |
| 815 | - <value> | |
| 816 | - <name>zdz</name> | |
| 817 | - <rename>zdzid</rename> | |
| 818 | - <update>Y</update> | |
| 819 | - </value> | |
| 820 | - <value> | |
| 821 | - <name>xl_dir</name> | |
| 822 | - <rename>sxx</rename> | |
| 823 | - <update>Y</update> | |
| 824 | - </value> | |
| 825 | - <value> | |
| 826 | - <name>isfb</name> | |
| 827 | - <rename>isfb</rename> | |
| 828 | - <update>Y</update> | |
| 829 | - </value> | |
| 830 | - </lookup> | |
| 831 | - <cluster_schema/> | |
| 832 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 833 | - <xloc>143</xloc> | |
| 834 | - <yloc>860</yloc> | |
| 835 | - <draw>Y</draw> | |
| 836 | - </GUI> | |
| 837 | - </step> | |
| 838 | - | |
| 839 | - <step> | |
| 840 | - <name>插入/更新bsth_c_s_ttinfo_detail 2</name> | |
| 841 | - <type>InsertUpdate</type> | |
| 842 | - <description/> | |
| 843 | - <distribute>Y</distribute> | |
| 844 | - <custom_distribution/> | |
| 845 | - <copies>1</copies> | |
| 846 | - <partitioning> | |
| 847 | - <method>none</method> | |
| 848 | - <schema_name/> | |
| 849 | - </partitioning> | |
| 850 | - <connection>bus_control_variable</connection> | |
| 851 | - <commit>100</commit> | |
| 852 | - <update_bypassed>N</update_bypassed> | |
| 853 | - <lookup> | |
| 854 | - <schema/> | |
| 855 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 856 | - <key> | |
| 857 | - <name>xlid</name> | |
| 858 | - <field>xl</field> | |
| 859 | - <condition>=</condition> | |
| 860 | - <name2/> | |
| 861 | - </key> | |
| 862 | - <key> | |
| 863 | - <name>ttid</name> | |
| 864 | - <field>ttinfo</field> | |
| 865 | - <condition>=</condition> | |
| 866 | - <name2/> | |
| 867 | - </key> | |
| 868 | - <key> | |
| 869 | - <name>lpid</name> | |
| 870 | - <field>lp</field> | |
| 871 | - <condition>=</condition> | |
| 872 | - <name2/> | |
| 873 | - </key> | |
| 874 | - <key> | |
| 875 | - <name>fcno</name> | |
| 876 | - <field>fcno</field> | |
| 877 | - <condition>=</condition> | |
| 878 | - <name2/> | |
| 879 | - </key> | |
| 880 | - <key> | |
| 881 | - <name>bcs</name> | |
| 882 | - <field>bcs</field> | |
| 883 | - <condition>=</condition> | |
| 884 | - <name2/> | |
| 885 | - </key> | |
| 886 | - <value> | |
| 887 | - <name>tcc</name> | |
| 888 | - <rename>qdzid</rename> | |
| 889 | - <update>Y</update> | |
| 890 | - </value> | |
| 891 | - <value> | |
| 892 | - <name>zdz</name> | |
| 893 | - <rename>zdzid</rename> | |
| 894 | - <update>Y</update> | |
| 895 | - </value> | |
| 896 | - <value> | |
| 897 | - <name>xl</name> | |
| 898 | - <rename>xlid</rename> | |
| 899 | - <update>Y</update> | |
| 900 | - </value> | |
| 901 | - <value> | |
| 902 | - <name>ttinfo</name> | |
| 903 | - <rename>ttid</rename> | |
| 904 | - <update>Y</update> | |
| 905 | - </value> | |
| 906 | - <value> | |
| 907 | - <name>xl_dir</name> | |
| 908 | - <rename>sxx</rename> | |
| 909 | - <update>Y</update> | |
| 910 | - </value> | |
| 911 | - <value> | |
| 912 | - <name>lp</name> | |
| 913 | - <rename>lpid</rename> | |
| 914 | - <update>Y</update> | |
| 915 | - </value> | |
| 916 | - <value> | |
| 917 | - <name>jhlc</name> | |
| 918 | - <rename>out_mileage</rename> | |
| 919 | - <update>Y</update> | |
| 920 | - </value> | |
| 921 | - <value> | |
| 922 | - <name>fcsj</name> | |
| 923 | - <rename>sendtime_calcu</rename> | |
| 924 | - <update>Y</update> | |
| 925 | - </value> | |
| 926 | - <value> | |
| 927 | - <name>bcsj</name> | |
| 928 | - <rename>out_time</rename> | |
| 929 | - <update>Y</update> | |
| 930 | - </value> | |
| 931 | - <value> | |
| 932 | - <name>bcs</name> | |
| 933 | - <rename>bcs</rename> | |
| 934 | - <update>Y</update> | |
| 935 | - </value> | |
| 936 | - <value> | |
| 937 | - <name>fcno</name> | |
| 938 | - <rename>fcno</rename> | |
| 939 | - <update>Y</update> | |
| 940 | - </value> | |
| 941 | - <value> | |
| 942 | - <name>bc_type</name> | |
| 943 | - <rename>bctype_code</rename> | |
| 944 | - <update>Y</update> | |
| 945 | - </value> | |
| 946 | - <value> | |
| 947 | - <name>isfb</name> | |
| 948 | - <rename>isfb</rename> | |
| 949 | - <update>Y</update> | |
| 950 | - </value> | |
| 951 | - </lookup> | |
| 952 | - <cluster_schema/> | |
| 953 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 954 | - <xloc>342</xloc> | |
| 955 | - <yloc>1031</yloc> | |
| 956 | - <draw>Y</draw> | |
| 957 | - </GUI> | |
| 958 | - </step> | |
| 959 | - | |
| 960 | - <step> | |
| 961 | - <name>插入/更新bsth_c_s_ttinfo_detail 3</name> | |
| 962 | - <type>InsertUpdate</type> | |
| 963 | - <description/> | |
| 964 | - <distribute>Y</distribute> | |
| 965 | - <custom_distribution/> | |
| 966 | - <copies>1</copies> | |
| 967 | - <partitioning> | |
| 968 | - <method>none</method> | |
| 969 | - <schema_name/> | |
| 970 | - </partitioning> | |
| 971 | - <connection>bus_control_variable</connection> | |
| 972 | - <commit>100</commit> | |
| 973 | - <update_bypassed>N</update_bypassed> | |
| 974 | - <lookup> | |
| 975 | - <schema/> | |
| 976 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 977 | - <key> | |
| 978 | - <name>xlid</name> | |
| 979 | - <field>xl</field> | |
| 980 | - <condition>=</condition> | |
| 981 | - <name2/> | |
| 982 | - </key> | |
| 983 | - <key> | |
| 984 | - <name>ttid</name> | |
| 985 | - <field>ttinfo</field> | |
| 986 | - <condition>=</condition> | |
| 987 | - <name2/> | |
| 988 | - </key> | |
| 989 | - <key> | |
| 990 | - <name>lpid</name> | |
| 991 | - <field>lp</field> | |
| 992 | - <condition>=</condition> | |
| 993 | - <name2/> | |
| 994 | - </key> | |
| 995 | - <key> | |
| 996 | - <name>fcno</name> | |
| 997 | - <field>fcno</field> | |
| 998 | - <condition>=</condition> | |
| 999 | - <name2/> | |
| 1000 | - </key> | |
| 1001 | - <key> | |
| 1002 | - <name>bcs</name> | |
| 1003 | - <field>bcs</field> | |
| 1004 | - <condition>=</condition> | |
| 1005 | - <name2/> | |
| 1006 | - </key> | |
| 1007 | - <value> | |
| 1008 | - <name>fcno</name> | |
| 1009 | - <rename>fcno</rename> | |
| 1010 | - <update>Y</update> | |
| 1011 | - </value> | |
| 1012 | - <value> | |
| 1013 | - <name>bcs</name> | |
| 1014 | - <rename>bcs</rename> | |
| 1015 | - <update>Y</update> | |
| 1016 | - </value> | |
| 1017 | - <value> | |
| 1018 | - <name>xl</name> | |
| 1019 | - <rename>xlid</rename> | |
| 1020 | - <update>Y</update> | |
| 1021 | - </value> | |
| 1022 | - <value> | |
| 1023 | - <name>ttinfo</name> | |
| 1024 | - <rename>ttid</rename> | |
| 1025 | - <update>Y</update> | |
| 1026 | - </value> | |
| 1027 | - <value> | |
| 1028 | - <name>lp</name> | |
| 1029 | - <rename>lpid</rename> | |
| 1030 | - <update>Y</update> | |
| 1031 | - </value> | |
| 1032 | - <value> | |
| 1033 | - <name>bc_type</name> | |
| 1034 | - <rename>bctype_code</rename> | |
| 1035 | - <update>Y</update> | |
| 1036 | - </value> | |
| 1037 | - <value> | |
| 1038 | - <name>bcsj</name> | |
| 1039 | - <rename>parade_time</rename> | |
| 1040 | - <update>Y</update> | |
| 1041 | - </value> | |
| 1042 | - <value> | |
| 1043 | - <name>jhlc</name> | |
| 1044 | - <rename>parade_mileage</rename> | |
| 1045 | - <update>Y</update> | |
| 1046 | - </value> | |
| 1047 | - <value> | |
| 1048 | - <name>fcsj</name> | |
| 1049 | - <rename>sendtime_calcu</rename> | |
| 1050 | - <update>Y</update> | |
| 1051 | - </value> | |
| 1052 | - <value> | |
| 1053 | - <name>xl_dir</name> | |
| 1054 | - <rename>sxx2</rename> | |
| 1055 | - <update>Y</update> | |
| 1056 | - </value> | |
| 1057 | - <value> | |
| 1058 | - <name>qdz</name> | |
| 1059 | - <rename>qdzid</rename> | |
| 1060 | - <update>Y</update> | |
| 1061 | - </value> | |
| 1062 | - <value> | |
| 1063 | - <name>tcc</name> | |
| 1064 | - <rename>zdzid</rename> | |
| 1065 | - <update>Y</update> | |
| 1066 | - </value> | |
| 1067 | - <value> | |
| 1068 | - <name>isfb</name> | |
| 1069 | - <rename>isfb</rename> | |
| 1070 | - <update>Y</update> | |
| 1071 | - </value> | |
| 1072 | - </lookup> | |
| 1073 | - <cluster_schema/> | |
| 1074 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1075 | - <xloc>875</xloc> | |
| 1076 | - <yloc>887</yloc> | |
| 1077 | - <draw>Y</draw> | |
| 1078 | - </GUI> | |
| 1079 | - </step> | |
| 1080 | - | |
| 1081 | - <step> | |
| 1082 | - <name>时刻表明细信息Excel输入</name> | |
| 1083 | - <type>ExcelInput</type> | |
| 1084 | - <description/> | |
| 1085 | - <distribute>Y</distribute> | |
| 1086 | - <custom_distribution/> | |
| 1087 | - <copies>1</copies> | |
| 1088 | - <partitioning> | |
| 1089 | - <method>none</method> | |
| 1090 | - <schema_name/> | |
| 1091 | - </partitioning> | |
| 1092 | - <header>Y</header> | |
| 1093 | - <noempty>Y</noempty> | |
| 1094 | - <stoponempty>N</stoponempty> | |
| 1095 | - <filefield/> | |
| 1096 | - <sheetfield/> | |
| 1097 | - <sheetrownumfield/> | |
| 1098 | - <rownumfield/> | |
| 1099 | - <sheetfield/> | |
| 1100 | - <filefield/> | |
| 1101 | - <limit>0</limit> | |
| 1102 | - <encoding/> | |
| 1103 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1104 | - <accept_filenames>N</accept_filenames> | |
| 1105 | - <accept_field/> | |
| 1106 | - <accept_stepname/> | |
| 1107 | - <file> | |
| 1108 | - <name/> | |
| 1109 | - <filemask/> | |
| 1110 | - <exclude_filemask/> | |
| 1111 | - <file_required>N</file_required> | |
| 1112 | - <include_subfolders>N</include_subfolders> | |
| 1113 | - </file> | |
| 1114 | - <fields> | |
| 1115 | - </fields> | |
| 1116 | - <sheets> | |
| 1117 | - <sheet> | |
| 1118 | - <name>工作表1</name> | |
| 1119 | - <startrow>0</startrow> | |
| 1120 | - <startcol>0</startcol> | |
| 1121 | - </sheet> | |
| 1122 | - </sheets> | |
| 1123 | - <strict_types>N</strict_types> | |
| 1124 | - <error_ignored>N</error_ignored> | |
| 1125 | - <error_line_skipped>N</error_line_skipped> | |
| 1126 | - <bad_line_files_destination_directory/> | |
| 1127 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 1128 | - <error_line_files_destination_directory/> | |
| 1129 | - <error_line_files_extension>error</error_line_files_extension> | |
| 1130 | - <line_number_files_destination_directory/> | |
| 1131 | - <line_number_files_extension>line</line_number_files_extension> | |
| 1132 | - <shortFileFieldName/> | |
| 1133 | - <pathFieldName/> | |
| 1134 | - <hiddenFieldName/> | |
| 1135 | - <lastModificationTimeFieldName/> | |
| 1136 | - <uriNameFieldName/> | |
| 1137 | - <rootUriNameFieldName/> | |
| 1138 | - <extensionFieldName/> | |
| 1139 | - <sizeFieldName/> | |
| 1140 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 1141 | - <cluster_schema/> | |
| 1142 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1143 | - <xloc>112</xloc> | |
| 1144 | - <yloc>44</yloc> | |
| 1145 | - <draw>Y</draw> | |
| 1146 | - </GUI> | |
| 1147 | - </step> | |
| 1148 | - | |
| 1149 | - <step> | |
| 1150 | - <name>查找停车场1</name> | |
| 1151 | - <type>DBLookup</type> | |
| 1152 | - <description/> | |
| 1153 | - <distribute>Y</distribute> | |
| 1154 | - <custom_distribution/> | |
| 1155 | - <copies>1</copies> | |
| 1156 | - <partitioning> | |
| 1157 | - <method>none</method> | |
| 1158 | - <schema_name/> | |
| 1159 | - </partitioning> | |
| 1160 | - <connection>bus_control_variable</connection> | |
| 1161 | - <cache>N</cache> | |
| 1162 | - <cache_load_all>N</cache_load_all> | |
| 1163 | - <cache_size>0</cache_size> | |
| 1164 | - <lookup> | |
| 1165 | - <schema/> | |
| 1166 | - <table>bsth_c_car_park</table> | |
| 1167 | - <orderby/> | |
| 1168 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1169 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1170 | - <key> | |
| 1171 | - <name>tccname_</name> | |
| 1172 | - <field>park_name</field> | |
| 1173 | - <condition>=</condition> | |
| 1174 | - <name2/> | |
| 1175 | - </key> | |
| 1176 | - <value> | |
| 1177 | - <name>id</name> | |
| 1178 | - <rename>qdzid</rename> | |
| 1179 | - <default/> | |
| 1180 | - <type>Integer</type> | |
| 1181 | - </value> | |
| 1182 | - </lookup> | |
| 1183 | - <cluster_schema/> | |
| 1184 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1185 | - <xloc>755</xloc> | |
| 1186 | - <yloc>504</yloc> | |
| 1187 | - <draw>Y</draw> | |
| 1188 | - </GUI> | |
| 1189 | - </step> | |
| 1190 | - | |
| 1191 | - <step> | |
| 1192 | - <name>查找停车场2</name> | |
| 1193 | - <type>DBLookup</type> | |
| 1194 | - <description/> | |
| 1195 | - <distribute>Y</distribute> | |
| 1196 | - <custom_distribution/> | |
| 1197 | - <copies>1</copies> | |
| 1198 | - <partitioning> | |
| 1199 | - <method>none</method> | |
| 1200 | - <schema_name/> | |
| 1201 | - </partitioning> | |
| 1202 | - <connection>bus_control_variable</connection> | |
| 1203 | - <cache>N</cache> | |
| 1204 | - <cache_load_all>N</cache_load_all> | |
| 1205 | - <cache_size>0</cache_size> | |
| 1206 | - <lookup> | |
| 1207 | - <schema/> | |
| 1208 | - <table>bsth_c_car_park</table> | |
| 1209 | - <orderby/> | |
| 1210 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1211 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1212 | - <key> | |
| 1213 | - <name>tccname_</name> | |
| 1214 | - <field>park_name</field> | |
| 1215 | - <condition>=</condition> | |
| 1216 | - <name2/> | |
| 1217 | - </key> | |
| 1218 | - <value> | |
| 1219 | - <name>id</name> | |
| 1220 | - <rename>zdzid</rename> | |
| 1221 | - <default/> | |
| 1222 | - <type>Integer</type> | |
| 1223 | - </value> | |
| 1224 | - </lookup> | |
| 1225 | - <cluster_schema/> | |
| 1226 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1227 | - <xloc>887</xloc> | |
| 1228 | - <yloc>608</yloc> | |
| 1229 | - <draw>Y</draw> | |
| 1230 | - </GUI> | |
| 1231 | - </step> | |
| 1232 | - | |
| 1233 | - <step> | |
| 1234 | - <name>查找出场终点站关联并确定上下行</name> | |
| 1235 | - <type>DBLookup</type> | |
| 1236 | - <description/> | |
| 1237 | - <distribute>Y</distribute> | |
| 1238 | - <custom_distribution/> | |
| 1239 | - <copies>1</copies> | |
| 1240 | - <partitioning> | |
| 1241 | - <method>none</method> | |
| 1242 | - <schema_name/> | |
| 1243 | - </partitioning> | |
| 1244 | - <connection>bus_control_variable</connection> | |
| 1245 | - <cache>N</cache> | |
| 1246 | - <cache_load_all>N</cache_load_all> | |
| 1247 | - <cache_size>0</cache_size> | |
| 1248 | - <lookup> | |
| 1249 | - <schema/> | |
| 1250 | - <table>bsth_c_stationroute</table> | |
| 1251 | - <orderby/> | |
| 1252 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1253 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1254 | - <key> | |
| 1255 | - <name>xlid</name> | |
| 1256 | - <field>line</field> | |
| 1257 | - <condition>=</condition> | |
| 1258 | - <name2/> | |
| 1259 | - </key> | |
| 1260 | - <key> | |
| 1261 | - <name>zdzname</name> | |
| 1262 | - <field>station_name</field> | |
| 1263 | - <condition>=</condition> | |
| 1264 | - <name2/> | |
| 1265 | - </key> | |
| 1266 | - <key> | |
| 1267 | - <name>endZdtype</name> | |
| 1268 | - <field>station_mark</field> | |
| 1269 | - <condition>=</condition> | |
| 1270 | - <name2/> | |
| 1271 | - </key> | |
| 1272 | - <value> | |
| 1273 | - <name>station</name> | |
| 1274 | - <rename>zdzid</rename> | |
| 1275 | - <default/> | |
| 1276 | - <type>Integer</type> | |
| 1277 | - </value> | |
| 1278 | - <value> | |
| 1279 | - <name>directions</name> | |
| 1280 | - <rename>sxx</rename> | |
| 1281 | - <default/> | |
| 1282 | - <type>Integer</type> | |
| 1283 | - </value> | |
| 1284 | - </lookup> | |
| 1285 | - <cluster_schema/> | |
| 1286 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1287 | - <xloc>329</xloc> | |
| 1288 | - <yloc>505</yloc> | |
| 1289 | - <draw>Y</draw> | |
| 1290 | - </GUI> | |
| 1291 | - </step> | |
| 1292 | - | |
| 1293 | - <step> | |
| 1294 | - <name>查找时刻表基础信息关联</name> | |
| 1295 | - <type>DBLookup</type> | |
| 1296 | - <description/> | |
| 1297 | - <distribute>Y</distribute> | |
| 1298 | - <custom_distribution/> | |
| 1299 | - <copies>1</copies> | |
| 1300 | - <partitioning> | |
| 1301 | - <method>none</method> | |
| 1302 | - <schema_name/> | |
| 1303 | - </partitioning> | |
| 1304 | - <connection>bus_control_variable</connection> | |
| 1305 | - <cache>N</cache> | |
| 1306 | - <cache_load_all>N</cache_load_all> | |
| 1307 | - <cache_size>0</cache_size> | |
| 1308 | - <lookup> | |
| 1309 | - <schema/> | |
| 1310 | - <table>bsth_c_s_ttinfo</table> | |
| 1311 | - <orderby/> | |
| 1312 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1313 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1314 | - <key> | |
| 1315 | - <name>xlid</name> | |
| 1316 | - <field>xl</field> | |
| 1317 | - <condition>=</condition> | |
| 1318 | - <name2/> | |
| 1319 | - </key> | |
| 1320 | - <key> | |
| 1321 | - <name>ttinfoname_</name> | |
| 1322 | - <field>name</field> | |
| 1323 | - <condition>=</condition> | |
| 1324 | - <name2/> | |
| 1325 | - </key> | |
| 1326 | - <key> | |
| 1327 | - <name>iscanceled</name> | |
| 1328 | - <field>is_cancel</field> | |
| 1329 | - <condition>=</condition> | |
| 1330 | - <name2/> | |
| 1331 | - </key> | |
| 1332 | - <value> | |
| 1333 | - <name>id</name> | |
| 1334 | - <rename>ttid</rename> | |
| 1335 | - <default/> | |
| 1336 | - <type>Integer</type> | |
| 1337 | - </value> | |
| 1338 | - </lookup> | |
| 1339 | - <cluster_schema/> | |
| 1340 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1341 | - <xloc>1011</xloc> | |
| 1342 | - <yloc>134</yloc> | |
| 1343 | - <draw>Y</draw> | |
| 1344 | - </GUI> | |
| 1345 | - </step> | |
| 1346 | - | |
| 1347 | - <step> | |
| 1348 | - <name>查找线路上下行里程时间</name> | |
| 1349 | - <type>DBLookup</type> | |
| 1350 | - <description/> | |
| 1351 | - <distribute>Y</distribute> | |
| 1352 | - <custom_distribution/> | |
| 1353 | - <copies>1</copies> | |
| 1354 | - <partitioning> | |
| 1355 | - <method>none</method> | |
| 1356 | - <schema_name/> | |
| 1357 | - </partitioning> | |
| 1358 | - <connection>bus_control_variable</connection> | |
| 1359 | - <cache>N</cache> | |
| 1360 | - <cache_load_all>N</cache_load_all> | |
| 1361 | - <cache_size>0</cache_size> | |
| 1362 | - <lookup> | |
| 1363 | - <schema/> | |
| 1364 | - <table>bsth_c_line_information</table> | |
| 1365 | - <orderby/> | |
| 1366 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1367 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1368 | - <key> | |
| 1369 | - <name>xlid</name> | |
| 1370 | - <field>line</field> | |
| 1371 | - <condition>=</condition> | |
| 1372 | - <name2/> | |
| 1373 | - </key> | |
| 1374 | - <value> | |
| 1375 | - <name>up_mileage</name> | |
| 1376 | - <rename>up_mileage</rename> | |
| 1377 | - <default/> | |
| 1378 | - <type>Number</type> | |
| 1379 | - </value> | |
| 1380 | - <value> | |
| 1381 | - <name>down_mileage</name> | |
| 1382 | - <rename>down_mileage</rename> | |
| 1383 | - <default/> | |
| 1384 | - <type>Number</type> | |
| 1385 | - </value> | |
| 1386 | - <value> | |
| 1387 | - <name>up_travel_time</name> | |
| 1388 | - <rename>up_travel_time</rename> | |
| 1389 | - <default/> | |
| 1390 | - <type>Number</type> | |
| 1391 | - </value> | |
| 1392 | - <value> | |
| 1393 | - <name>down_travel_time</name> | |
| 1394 | - <rename>down_travel_time</rename> | |
| 1395 | - <default/> | |
| 1396 | - <type>Number</type> | |
| 1397 | - </value> | |
| 1398 | - </lookup> | |
| 1399 | - <cluster_schema/> | |
| 1400 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1401 | - <xloc>149</xloc> | |
| 1402 | - <yloc>581</yloc> | |
| 1403 | - <draw>Y</draw> | |
| 1404 | - </GUI> | |
| 1405 | - </step> | |
| 1406 | - | |
| 1407 | - <step> | |
| 1408 | - <name>查找线路关联</name> | |
| 1409 | - <type>DBLookup</type> | |
| 1410 | - <description/> | |
| 1411 | - <distribute>Y</distribute> | |
| 1412 | - <custom_distribution/> | |
| 1413 | - <copies>1</copies> | |
| 1414 | - <partitioning> | |
| 1415 | - <method>none</method> | |
| 1416 | - <schema_name/> | |
| 1417 | - </partitioning> | |
| 1418 | - <connection>bus_control_variable</connection> | |
| 1419 | - <cache>N</cache> | |
| 1420 | - <cache_load_all>N</cache_load_all> | |
| 1421 | - <cache_size>0</cache_size> | |
| 1422 | - <lookup> | |
| 1423 | - <schema/> | |
| 1424 | - <table>bsth_c_line</table> | |
| 1425 | - <orderby/> | |
| 1426 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1427 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1428 | - <key> | |
| 1429 | - <name>xlname_</name> | |
| 1430 | - <field>name</field> | |
| 1431 | - <condition>=</condition> | |
| 1432 | - <name2/> | |
| 1433 | - </key> | |
| 1434 | - <value> | |
| 1435 | - <name>id</name> | |
| 1436 | - <rename>xlid</rename> | |
| 1437 | - <default/> | |
| 1438 | - <type>Integer</type> | |
| 1439 | - </value> | |
| 1440 | - </lookup> | |
| 1441 | - <cluster_schema/> | |
| 1442 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1443 | - <xloc>1007</xloc> | |
| 1444 | - <yloc>43</yloc> | |
| 1445 | - <draw>Y</draw> | |
| 1446 | - </GUI> | |
| 1447 | - </step> | |
| 1448 | - | |
| 1449 | - <step> | |
| 1450 | - <name>查找线路出场里程时间</name> | |
| 1451 | - <type>DBLookup</type> | |
| 1452 | - <description/> | |
| 1453 | - <distribute>Y</distribute> | |
| 1454 | - <custom_distribution/> | |
| 1455 | - <copies>1</copies> | |
| 1456 | - <partitioning> | |
| 1457 | - <method>none</method> | |
| 1458 | - <schema_name/> | |
| 1459 | - </partitioning> | |
| 1460 | - <connection>bus_control_variable</connection> | |
| 1461 | - <cache>N</cache> | |
| 1462 | - <cache_load_all>N</cache_load_all> | |
| 1463 | - <cache_size>0</cache_size> | |
| 1464 | - <lookup> | |
| 1465 | - <schema/> | |
| 1466 | - <table>bsth_c_line_information</table> | |
| 1467 | - <orderby/> | |
| 1468 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1469 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1470 | - <key> | |
| 1471 | - <name>xlid</name> | |
| 1472 | - <field>line</field> | |
| 1473 | - <condition>=</condition> | |
| 1474 | - <name2/> | |
| 1475 | - </key> | |
| 1476 | - <value> | |
| 1477 | - <name>up_out_timer</name> | |
| 1478 | - <rename>up_out_timer</rename> | |
| 1479 | - <default/> | |
| 1480 | - <type>Number</type> | |
| 1481 | - </value> | |
| 1482 | - <value> | |
| 1483 | - <name>up_out_mileage</name> | |
| 1484 | - <rename>up_out_mileage</rename> | |
| 1485 | - <default/> | |
| 1486 | - <type>Number</type> | |
| 1487 | - </value> | |
| 1488 | - <value> | |
| 1489 | - <name>down_out_timer</name> | |
| 1490 | - <rename>down_out_timer</rename> | |
| 1491 | - <default/> | |
| 1492 | - <type>Number</type> | |
| 1493 | - </value> | |
| 1494 | - <value> | |
| 1495 | - <name>down_out_mileage</name> | |
| 1496 | - <rename>down_out_mileage</rename> | |
| 1497 | - <default/> | |
| 1498 | - <type>Number</type> | |
| 1499 | - </value> | |
| 1500 | - </lookup> | |
| 1501 | - <cluster_schema/> | |
| 1502 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1503 | - <xloc>335</xloc> | |
| 1504 | - <yloc>763</yloc> | |
| 1505 | - <draw>Y</draw> | |
| 1506 | - </GUI> | |
| 1507 | - </step> | |
| 1508 | - | |
| 1509 | - <step> | |
| 1510 | - <name>查找线路进场里程时间</name> | |
| 1511 | - <type>DBLookup</type> | |
| 1512 | - <description/> | |
| 1513 | - <distribute>Y</distribute> | |
| 1514 | - <custom_distribution/> | |
| 1515 | - <copies>1</copies> | |
| 1516 | - <partitioning> | |
| 1517 | - <method>none</method> | |
| 1518 | - <schema_name/> | |
| 1519 | - </partitioning> | |
| 1520 | - <connection>bus_control_variable</connection> | |
| 1521 | - <cache>N</cache> | |
| 1522 | - <cache_load_all>N</cache_load_all> | |
| 1523 | - <cache_size>0</cache_size> | |
| 1524 | - <lookup> | |
| 1525 | - <schema/> | |
| 1526 | - <table>bsth_c_line_information</table> | |
| 1527 | - <orderby/> | |
| 1528 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1529 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1530 | - <key> | |
| 1531 | - <name>xlid</name> | |
| 1532 | - <field>line</field> | |
| 1533 | - <condition>=</condition> | |
| 1534 | - <name2/> | |
| 1535 | - </key> | |
| 1536 | - <value> | |
| 1537 | - <name>up_in_mileage</name> | |
| 1538 | - <rename>up_in_mileage</rename> | |
| 1539 | - <default/> | |
| 1540 | - <type>Number</type> | |
| 1541 | - </value> | |
| 1542 | - <value> | |
| 1543 | - <name>up_in_timer</name> | |
| 1544 | - <rename>up_in_timer</rename> | |
| 1545 | - <default/> | |
| 1546 | - <type>Number</type> | |
| 1547 | - </value> | |
| 1548 | - <value> | |
| 1549 | - <name>down_in_mileage</name> | |
| 1550 | - <rename>down_in_mileage</rename> | |
| 1551 | - <default/> | |
| 1552 | - <type>Number</type> | |
| 1553 | - </value> | |
| 1554 | - <value> | |
| 1555 | - <name>down_in_timer</name> | |
| 1556 | - <rename>down_in_timer</rename> | |
| 1557 | - <default/> | |
| 1558 | - <type>Number</type> | |
| 1559 | - </value> | |
| 1560 | - </lookup> | |
| 1561 | - <cluster_schema/> | |
| 1562 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1563 | - <xloc>553</xloc> | |
| 1564 | - <yloc>1004</yloc> | |
| 1565 | - <draw>Y</draw> | |
| 1566 | - </GUI> | |
| 1567 | - </step> | |
| 1568 | - | |
| 1569 | - <step> | |
| 1570 | - <name>查找终点站关联</name> | |
| 1571 | - <type>DBLookup</type> | |
| 1572 | - <description/> | |
| 1573 | - <distribute>Y</distribute> | |
| 1574 | - <custom_distribution/> | |
| 1575 | - <copies>1</copies> | |
| 1576 | - <partitioning> | |
| 1577 | - <method>none</method> | |
| 1578 | - <schema_name/> | |
| 1579 | - </partitioning> | |
| 1580 | - <connection>bus_control_variable</connection> | |
| 1581 | - <cache>N</cache> | |
| 1582 | - <cache_load_all>N</cache_load_all> | |
| 1583 | - <cache_size>0</cache_size> | |
| 1584 | - <lookup> | |
| 1585 | - <schema/> | |
| 1586 | - <table>bsth_c_stationroute</table> | |
| 1587 | - <orderby/> | |
| 1588 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1589 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1590 | - <key> | |
| 1591 | - <name>xlid</name> | |
| 1592 | - <field>line</field> | |
| 1593 | - <condition>=</condition> | |
| 1594 | - <name2/> | |
| 1595 | - </key> | |
| 1596 | - <key> | |
| 1597 | - <name>sxx</name> | |
| 1598 | - <field>directions</field> | |
| 1599 | - <condition>=</condition> | |
| 1600 | - <name2/> | |
| 1601 | - </key> | |
| 1602 | - <key> | |
| 1603 | - <name>endZdtype</name> | |
| 1604 | - <field>station_mark</field> | |
| 1605 | - <condition>=</condition> | |
| 1606 | - <name2/> | |
| 1607 | - </key> | |
| 1608 | - <value> | |
| 1609 | - <name>station_name</name> | |
| 1610 | - <rename>zdzname</rename> | |
| 1611 | - <default/> | |
| 1612 | - <type>String</type> | |
| 1613 | - </value> | |
| 1614 | - <value> | |
| 1615 | - <name>station</name> | |
| 1616 | - <rename>zdzid</rename> | |
| 1617 | - <default/> | |
| 1618 | - <type>Integer</type> | |
| 1619 | - </value> | |
| 1620 | - </lookup> | |
| 1621 | - <cluster_schema/> | |
| 1622 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1623 | - <xloc>280</xloc> | |
| 1624 | - <yloc>404</yloc> | |
| 1625 | - <draw>Y</draw> | |
| 1626 | - </GUI> | |
| 1627 | - </step> | |
| 1628 | - | |
| 1629 | - <step> | |
| 1630 | - <name>查找起点站关联并确定上下行</name> | |
| 1631 | - <type>DBLookup</type> | |
| 1632 | - <description/> | |
| 1633 | - <distribute>Y</distribute> | |
| 1634 | - <custom_distribution/> | |
| 1635 | - <copies>1</copies> | |
| 1636 | - <partitioning> | |
| 1637 | - <method>none</method> | |
| 1638 | - <schema_name/> | |
| 1639 | - </partitioning> | |
| 1640 | - <connection>bus_control_variable</connection> | |
| 1641 | - <cache>N</cache> | |
| 1642 | - <cache_load_all>N</cache_load_all> | |
| 1643 | - <cache_size>0</cache_size> | |
| 1644 | - <lookup> | |
| 1645 | - <schema/> | |
| 1646 | - <table>bsth_c_stationroute</table> | |
| 1647 | - <orderby/> | |
| 1648 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1649 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1650 | - <key> | |
| 1651 | - <name>xlid</name> | |
| 1652 | - <field>line</field> | |
| 1653 | - <condition>=</condition> | |
| 1654 | - <name2/> | |
| 1655 | - </key> | |
| 1656 | - <key> | |
| 1657 | - <name>qdzname</name> | |
| 1658 | - <field>station_name</field> | |
| 1659 | - <condition>=</condition> | |
| 1660 | - <name2/> | |
| 1661 | - </key> | |
| 1662 | - <key> | |
| 1663 | - <name>sendZdtype</name> | |
| 1664 | - <field>station_mark</field> | |
| 1665 | - <condition>=</condition> | |
| 1666 | - <name2/> | |
| 1667 | - </key> | |
| 1668 | - <value> | |
| 1669 | - <name>station</name> | |
| 1670 | - <rename>qdzid</rename> | |
| 1671 | - <default/> | |
| 1672 | - <type>Integer</type> | |
| 1673 | - </value> | |
| 1674 | - <value> | |
| 1675 | - <name>directions</name> | |
| 1676 | - <rename>sxx</rename> | |
| 1677 | - <default/> | |
| 1678 | - <type>Integer</type> | |
| 1679 | - </value> | |
| 1680 | - </lookup> | |
| 1681 | - <cluster_schema/> | |
| 1682 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1683 | - <xloc>430</xloc> | |
| 1684 | - <yloc>403</yloc> | |
| 1685 | - <draw>Y</draw> | |
| 1686 | - </GUI> | |
| 1687 | - </step> | |
| 1688 | - | |
| 1689 | - <step> | |
| 1690 | - <name>查找路牌关联</name> | |
| 1691 | - <type>DBLookup</type> | |
| 1692 | - <description/> | |
| 1693 | - <distribute>Y</distribute> | |
| 1694 | - <custom_distribution/> | |
| 1695 | - <copies>1</copies> | |
| 1696 | - <partitioning> | |
| 1697 | - <method>none</method> | |
| 1698 | - <schema_name/> | |
| 1699 | - </partitioning> | |
| 1700 | - <connection>bus_control_variable</connection> | |
| 1701 | - <cache>N</cache> | |
| 1702 | - <cache_load_all>N</cache_load_all> | |
| 1703 | - <cache_size>0</cache_size> | |
| 1704 | - <lookup> | |
| 1705 | - <schema/> | |
| 1706 | - <table>bsth_c_s_gbi</table> | |
| 1707 | - <orderby/> | |
| 1708 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1709 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1710 | - <key> | |
| 1711 | - <name>xlid</name> | |
| 1712 | - <field>xl</field> | |
| 1713 | - <condition>=</condition> | |
| 1714 | - <name2/> | |
| 1715 | - </key> | |
| 1716 | - <key> | |
| 1717 | - <name>lp</name> | |
| 1718 | - <field>lp_name</field> | |
| 1719 | - <condition>=</condition> | |
| 1720 | - <name2/> | |
| 1721 | - </key> | |
| 1722 | - <value> | |
| 1723 | - <name>id</name> | |
| 1724 | - <rename>lpid</rename> | |
| 1725 | - <default/> | |
| 1726 | - <type>Integer</type> | |
| 1727 | - </value> | |
| 1728 | - </lookup> | |
| 1729 | - <cluster_schema/> | |
| 1730 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1731 | - <xloc>1013</xloc> | |
| 1732 | - <yloc>265</yloc> | |
| 1733 | - <draw>Y</draw> | |
| 1734 | - </GUI> | |
| 1735 | - </step> | |
| 1736 | - | |
| 1737 | - <step> | |
| 1738 | - <name>查找进场班次上一个班次的线路方向</name> | |
| 1739 | - <type>DBLookup</type> | |
| 1740 | - <description/> | |
| 1741 | - <distribute>Y</distribute> | |
| 1742 | - <custom_distribution/> | |
| 1743 | - <copies>1</copies> | |
| 1744 | - <partitioning> | |
| 1745 | - <method>none</method> | |
| 1746 | - <schema_name/> | |
| 1747 | - </partitioning> | |
| 1748 | - <connection>bus_control_variable</connection> | |
| 1749 | - <cache>N</cache> | |
| 1750 | - <cache_load_all>N</cache_load_all> | |
| 1751 | - <cache_size>0</cache_size> | |
| 1752 | - <lookup> | |
| 1753 | - <schema/> | |
| 1754 | - <table>bsth_c_stationroute</table> | |
| 1755 | - <orderby/> | |
| 1756 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1757 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1758 | - <key> | |
| 1759 | - <name>xlid</name> | |
| 1760 | - <field>line</field> | |
| 1761 | - <condition>=</condition> | |
| 1762 | - <name2/> | |
| 1763 | - </key> | |
| 1764 | - <key> | |
| 1765 | - <name>startZdtype_calcu</name> | |
| 1766 | - <field>station_mark</field> | |
| 1767 | - <condition>=</condition> | |
| 1768 | - <name2/> | |
| 1769 | - </key> | |
| 1770 | - <key> | |
| 1771 | - <name>qdzname_calcu</name> | |
| 1772 | - <field>station_name</field> | |
| 1773 | - <condition>=</condition> | |
| 1774 | - <name2/> | |
| 1775 | - </key> | |
| 1776 | - <value> | |
| 1777 | - <name>directions</name> | |
| 1778 | - <rename>sxx</rename> | |
| 1779 | - <default/> | |
| 1780 | - <type>String</type> | |
| 1781 | - </value> | |
| 1782 | - </lookup> | |
| 1783 | - <cluster_schema/> | |
| 1784 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1785 | - <xloc>548</xloc> | |
| 1786 | - <yloc>610</yloc> | |
| 1787 | - <draw>Y</draw> | |
| 1788 | - </GUI> | |
| 1789 | - </step> | |
| 1790 | - | |
| 1791 | - <step> | |
| 1792 | - <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 1793 | - <type>DBLookup</type> | |
| 1794 | - <description/> | |
| 1795 | - <distribute>Y</distribute> | |
| 1796 | - <custom_distribution/> | |
| 1797 | - <copies>1</copies> | |
| 1798 | - <partitioning> | |
| 1799 | - <method>none</method> | |
| 1800 | - <schema_name/> | |
| 1801 | - </partitioning> | |
| 1802 | - <connection>bus_control_variable</connection> | |
| 1803 | - <cache>N</cache> | |
| 1804 | - <cache_load_all>N</cache_load_all> | |
| 1805 | - <cache_size>0</cache_size> | |
| 1806 | - <lookup> | |
| 1807 | - <schema/> | |
| 1808 | - <table>bsth_c_stationroute</table> | |
| 1809 | - <orderby/> | |
| 1810 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1811 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1812 | - <key> | |
| 1813 | - <name>xlid</name> | |
| 1814 | - <field>line</field> | |
| 1815 | - <condition>=</condition> | |
| 1816 | - <name2/> | |
| 1817 | - </key> | |
| 1818 | - <key> | |
| 1819 | - <name>endZdtype_calcu</name> | |
| 1820 | - <field>station_mark</field> | |
| 1821 | - <condition>=</condition> | |
| 1822 | - <name2/> | |
| 1823 | - </key> | |
| 1824 | - <key> | |
| 1825 | - <name>sxx</name> | |
| 1826 | - <field>directions</field> | |
| 1827 | - <condition>=</condition> | |
| 1828 | - <name2/> | |
| 1829 | - </key> | |
| 1830 | - <value> | |
| 1831 | - <name>station_name</name> | |
| 1832 | - <rename>zdzname_calcu</rename> | |
| 1833 | - <default/> | |
| 1834 | - <type>Integer</type> | |
| 1835 | - </value> | |
| 1836 | - </lookup> | |
| 1837 | - <cluster_schema/> | |
| 1838 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1839 | - <xloc>550</xloc> | |
| 1840 | - <yloc>701</yloc> | |
| 1841 | - <draw>Y</draw> | |
| 1842 | - </GUI> | |
| 1843 | - </step> | |
| 1844 | - | |
| 1845 | - <step> | |
| 1846 | - <name>正常班次_处理数据</name> | |
| 1847 | - <type>ScriptValueMod</type> | |
| 1848 | - <description/> | |
| 1849 | - <distribute>Y</distribute> | |
| 1850 | - <custom_distribution/> | |
| 1851 | - <copies>1</copies> | |
| 1852 | - <partitioning> | |
| 1853 | - <method>none</method> | |
| 1854 | - <schema_name/> | |
| 1855 | - </partitioning> | |
| 1856 | - <compatible>N</compatible> | |
| 1857 | - <optimizationLevel>9</optimizationLevel> | |
| 1858 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1859 | - <jsScript_name>Script 1</jsScript_name> | |
| 1860 | - <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';
</jsScript_script> | |
| 1861 | - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 1862 | - <rename>sendZdtype</rename> | |
| 1863 | - <type>String</type> | |
| 1864 | - <length>-1</length> | |
| 1865 | - <precision>-1</precision> | |
| 1866 | - <replace>N</replace> | |
| 1867 | - </field> <field> <name>endZdtype</name> | |
| 1868 | - <rename>endZdtype</rename> | |
| 1869 | - <type>String</type> | |
| 1870 | - <length>-1</length> | |
| 1871 | - <precision>-1</precision> | |
| 1872 | - <replace>N</replace> | |
| 1873 | - </field> </fields> <cluster_schema/> | |
| 1874 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1875 | - <xloc>588</xloc> | |
| 1876 | - <yloc>403</yloc> | |
| 1877 | - <draw>Y</draw> | |
| 1878 | - </GUI> | |
| 1879 | - </step> | |
| 1880 | - | |
| 1881 | - <step> | |
| 1882 | - <name>正常班次数据</name> | |
| 1883 | - <type>Dummy</type> | |
| 1884 | - <description/> | |
| 1885 | - <distribute>Y</distribute> | |
| 1886 | - <custom_distribution/> | |
| 1887 | - <copies>1</copies> | |
| 1888 | - <partitioning> | |
| 1889 | - <method>none</method> | |
| 1890 | - <schema_name/> | |
| 1891 | - </partitioning> | |
| 1892 | - <cluster_schema/> | |
| 1893 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1894 | - <xloc>725</xloc> | |
| 1895 | - <yloc>404</yloc> | |
| 1896 | - <draw>Y</draw> | |
| 1897 | - </GUI> | |
| 1898 | - </step> | |
| 1899 | - | |
| 1900 | - <step> | |
| 1901 | - <name>添加发车顺序号</name> | |
| 1902 | - <type>GroupBy</type> | |
| 1903 | - <description/> | |
| 1904 | - <distribute>Y</distribute> | |
| 1905 | - <custom_distribution/> | |
| 1906 | - <copies>1</copies> | |
| 1907 | - <partitioning> | |
| 1908 | - <method>none</method> | |
| 1909 | - <schema_name/> | |
| 1910 | - </partitioning> | |
| 1911 | - <all_rows>Y</all_rows> | |
| 1912 | - <ignore_aggregate>N</ignore_aggregate> | |
| 1913 | - <field_ignore/> | |
| 1914 | - <directory>%%java.io.tmpdir%%</directory> | |
| 1915 | - <prefix>grp</prefix> | |
| 1916 | - <add_linenr>Y</add_linenr> | |
| 1917 | - <linenr_fieldname>fcno</linenr_fieldname> | |
| 1918 | - <give_back_row>N</give_back_row> | |
| 1919 | - <group> | |
| 1920 | - <field> | |
| 1921 | - <name>lp</name> | |
| 1922 | - </field> | |
| 1923 | - </group> | |
| 1924 | - <fields> | |
| 1925 | - </fields> | |
| 1926 | - <cluster_schema/> | |
| 1927 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1928 | - <xloc>442</xloc> | |
| 1929 | - <yloc>44</yloc> | |
| 1930 | - <draw>Y</draw> | |
| 1931 | - </GUI> | |
| 1932 | - </step> | |
| 1933 | - | |
| 1934 | - <step> | |
| 1935 | - <name>添加对应班次数</name> | |
| 1936 | - <type>GroupBy</type> | |
| 1937 | - <description/> | |
| 1938 | - <distribute>Y</distribute> | |
| 1939 | - <custom_distribution/> | |
| 1940 | - <copies>1</copies> | |
| 1941 | - <partitioning> | |
| 1942 | - <method>none</method> | |
| 1943 | - <schema_name/> | |
| 1944 | - </partitioning> | |
| 1945 | - <all_rows>Y</all_rows> | |
| 1946 | - <ignore_aggregate>N</ignore_aggregate> | |
| 1947 | - <field_ignore/> | |
| 1948 | - <directory>%%java.io.tmpdir%%</directory> | |
| 1949 | - <prefix>grp</prefix> | |
| 1950 | - <add_linenr>Y</add_linenr> | |
| 1951 | - <linenr_fieldname>bcs</linenr_fieldname> | |
| 1952 | - <give_back_row>N</give_back_row> | |
| 1953 | - <group> | |
| 1954 | - </group> | |
| 1955 | - <fields> | |
| 1956 | - </fields> | |
| 1957 | - <cluster_schema/> | |
| 1958 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1959 | - <xloc>692</xloc> | |
| 1960 | - <yloc>44</yloc> | |
| 1961 | - <draw>Y</draw> | |
| 1962 | - </GUI> | |
| 1963 | - </step> | |
| 1964 | - | |
| 1965 | - <step> | |
| 1966 | - <name>班次数据范式化</name> | |
| 1967 | - <type>Normaliser</type> | |
| 1968 | - <description/> | |
| 1969 | - <distribute>Y</distribute> | |
| 1970 | - <custom_distribution/> | |
| 1971 | - <copies>1</copies> | |
| 1972 | - <partitioning> | |
| 1973 | - <method>none</method> | |
| 1974 | - <schema_name/> | |
| 1975 | - </partitioning> | |
| 1976 | - <typefield>站点名称</typefield> | |
| 1977 | - <fields> </fields> <cluster_schema/> | |
| 1978 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1979 | - <xloc>248</xloc> | |
| 1980 | - <yloc>44</yloc> | |
| 1981 | - <draw>Y</draw> | |
| 1982 | - </GUI> | |
| 1983 | - </step> | |
| 1984 | - | |
| 1985 | - <step> | |
| 1986 | - <name>班次类型字典</name> | |
| 1987 | - <type>ValueMapper</type> | |
| 1988 | - <description/> | |
| 1989 | - <distribute>Y</distribute> | |
| 1990 | - <custom_distribution/> | |
| 1991 | - <copies>1</copies> | |
| 1992 | - <partitioning> | |
| 1993 | - <method>none</method> | |
| 1994 | - <schema_name/> | |
| 1995 | - </partitioning> | |
| 1996 | - <field_to_use>bctype</field_to_use> | |
| 1997 | - <target_field>bctype_code</target_field> | |
| 1998 | - <non_match_default>未知类型</non_match_default> | |
| 1999 | - <fields> | |
| 2000 | - <field> | |
| 2001 | - <source_value>正常班次</source_value> | |
| 2002 | - <target_value>normal</target_value> | |
| 2003 | - </field> | |
| 2004 | - <field> | |
| 2005 | - <source_value>出场</source_value> | |
| 2006 | - <target_value>out</target_value> | |
| 2007 | - </field> | |
| 2008 | - <field> | |
| 2009 | - <source_value>进场</source_value> | |
| 2010 | - <target_value>in</target_value> | |
| 2011 | - </field> | |
| 2012 | - <field> | |
| 2013 | - <source_value>加油</source_value> | |
| 2014 | - <target_value>oil</target_value> | |
| 2015 | - </field> | |
| 2016 | - <field> | |
| 2017 | - <source_value>临加</source_value> | |
| 2018 | - <target_value>temp</target_value> | |
| 2019 | - </field> | |
| 2020 | - <field> | |
| 2021 | - <source_value>区间</source_value> | |
| 2022 | - <target_value>region</target_value> | |
| 2023 | - </field> | |
| 2024 | - <field> | |
| 2025 | - <source_value>放空</source_value> | |
| 2026 | - <target_value>venting</target_value> | |
| 2027 | - </field> | |
| 2028 | - <field> | |
| 2029 | - <source_value>放大站</source_value> | |
| 2030 | - <target_value>major</target_value> | |
| 2031 | - </field> | |
| 2032 | - </fields> | |
| 2033 | - <cluster_schema/> | |
| 2034 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2035 | - <xloc>149</xloc> | |
| 2036 | - <yloc>491</yloc> | |
| 2037 | - <draw>Y</draw> | |
| 2038 | - </GUI> | |
| 2039 | - </step> | |
| 2040 | - | |
| 2041 | - <step> | |
| 2042 | - <name>班次类型字典 2</name> | |
| 2043 | - <type>ValueMapper</type> | |
| 2044 | - <description/> | |
| 2045 | - <distribute>Y</distribute> | |
| 2046 | - <custom_distribution/> | |
| 2047 | - <copies>1</copies> | |
| 2048 | - <partitioning> | |
| 2049 | - <method>none</method> | |
| 2050 | - <schema_name/> | |
| 2051 | - </partitioning> | |
| 2052 | - <field_to_use>bctype</field_to_use> | |
| 2053 | - <target_field>bctype_code</target_field> | |
| 2054 | - <non_match_default>未知类型</non_match_default> | |
| 2055 | - <fields> | |
| 2056 | - <field> | |
| 2057 | - <source_value>正常班次</source_value> | |
| 2058 | - <target_value>normal</target_value> | |
| 2059 | - </field> | |
| 2060 | - <field> | |
| 2061 | - <source_value>出场</source_value> | |
| 2062 | - <target_value>out</target_value> | |
| 2063 | - </field> | |
| 2064 | - <field> | |
| 2065 | - <source_value>进场</source_value> | |
| 2066 | - <target_value>in</target_value> | |
| 2067 | - </field> | |
| 2068 | - <field> | |
| 2069 | - <source_value>加油</source_value> | |
| 2070 | - <target_value>oil</target_value> | |
| 2071 | - </field> | |
| 2072 | - <field> | |
| 2073 | - <source_value>临加</source_value> | |
| 2074 | - <target_value>temp</target_value> | |
| 2075 | - </field> | |
| 2076 | - <field> | |
| 2077 | - <source_value>区间</source_value> | |
| 2078 | - <target_value>region</target_value> | |
| 2079 | - </field> | |
| 2080 | - <field> | |
| 2081 | - <source_value>放空</source_value> | |
| 2082 | - <target_value>venting</target_value> | |
| 2083 | - </field> | |
| 2084 | - <field> | |
| 2085 | - <source_value>放大站</source_value> | |
| 2086 | - <target_value>major</target_value> | |
| 2087 | - </field> | |
| 2088 | - </fields> | |
| 2089 | - <cluster_schema/> | |
| 2090 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2091 | - <xloc>333</xloc> | |
| 2092 | - <yloc>681</yloc> | |
| 2093 | - <draw>Y</draw> | |
| 2094 | - </GUI> | |
| 2095 | - </step> | |
| 2096 | - | |
| 2097 | - <step> | |
| 2098 | - <name>班次类型字典 3</name> | |
| 2099 | - <type>ValueMapper</type> | |
| 2100 | - <description/> | |
| 2101 | - <distribute>Y</distribute> | |
| 2102 | - <custom_distribution/> | |
| 2103 | - <copies>1</copies> | |
| 2104 | - <partitioning> | |
| 2105 | - <method>none</method> | |
| 2106 | - <schema_name/> | |
| 2107 | - </partitioning> | |
| 2108 | - <field_to_use>bctype</field_to_use> | |
| 2109 | - <target_field>bctype_code</target_field> | |
| 2110 | - <non_match_default>未知类型</non_match_default> | |
| 2111 | - <fields> | |
| 2112 | - <field> | |
| 2113 | - <source_value>正常班次</source_value> | |
| 2114 | - <target_value>normal</target_value> | |
| 2115 | - </field> | |
| 2116 | - <field> | |
| 2117 | - <source_value>出场</source_value> | |
| 2118 | - <target_value>out</target_value> | |
| 2119 | - </field> | |
| 2120 | - <field> | |
| 2121 | - <source_value>进场</source_value> | |
| 2122 | - <target_value>in</target_value> | |
| 2123 | - </field> | |
| 2124 | - <field> | |
| 2125 | - <source_value>加油</source_value> | |
| 2126 | - <target_value>oil</target_value> | |
| 2127 | - </field> | |
| 2128 | - <field> | |
| 2129 | - <source_value>临加</source_value> | |
| 2130 | - <target_value>temp</target_value> | |
| 2131 | - </field> | |
| 2132 | - <field> | |
| 2133 | - <source_value>区间</source_value> | |
| 2134 | - <target_value>region</target_value> | |
| 2135 | - </field> | |
| 2136 | - <field> | |
| 2137 | - <source_value>放空</source_value> | |
| 2138 | - <target_value>venting</target_value> | |
| 2139 | - </field> | |
| 2140 | - <field> | |
| 2141 | - <source_value>放大站</source_value> | |
| 2142 | - <target_value>major</target_value> | |
| 2143 | - </field> | |
| 2144 | - </fields> | |
| 2145 | - <cluster_schema/> | |
| 2146 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2147 | - <xloc>551</xloc> | |
| 2148 | - <yloc>928</yloc> | |
| 2149 | - <draw>Y</draw> | |
| 2150 | - </GUI> | |
| 2151 | - </step> | |
| 2152 | - | |
| 2153 | - <step> | |
| 2154 | - <name>类型修正</name> | |
| 2155 | - <type>SelectValues</type> | |
| 2156 | - <description/> | |
| 2157 | - <distribute>Y</distribute> | |
| 2158 | - <custom_distribution/> | |
| 2159 | - <copies>1</copies> | |
| 2160 | - <partitioning> | |
| 2161 | - <method>none</method> | |
| 2162 | - <schema_name/> | |
| 2163 | - </partitioning> | |
| 2164 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2165 | - <meta> <name>jhlc</name> | |
| 2166 | - <rename>jhlc</rename> | |
| 2167 | - <type>Number</type> | |
| 2168 | - <length>-2</length> | |
| 2169 | - <precision>-2</precision> | |
| 2170 | - <conversion_mask/> | |
| 2171 | - <date_format_lenient>false</date_format_lenient> | |
| 2172 | - <date_format_locale/> | |
| 2173 | - <date_format_timezone/> | |
| 2174 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2175 | - <encoding/> | |
| 2176 | - <decimal_symbol/> | |
| 2177 | - <grouping_symbol/> | |
| 2178 | - <currency_symbol/> | |
| 2179 | - <storage_type/> | |
| 2180 | - </meta> <meta> <name>bcsj</name> | |
| 2181 | - <rename>bcsj</rename> | |
| 2182 | - <type>Integer</type> | |
| 2183 | - <length>-2</length> | |
| 2184 | - <precision>-2</precision> | |
| 2185 | - <conversion_mask/> | |
| 2186 | - <date_format_lenient>false</date_format_lenient> | |
| 2187 | - <date_format_locale/> | |
| 2188 | - <date_format_timezone/> | |
| 2189 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2190 | - <encoding/> | |
| 2191 | - <decimal_symbol/> | |
| 2192 | - <grouping_symbol/> | |
| 2193 | - <currency_symbol/> | |
| 2194 | - <storage_type/> | |
| 2195 | - </meta> </fields> <cluster_schema/> | |
| 2196 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2197 | - <xloc>146</xloc> | |
| 2198 | - <yloc>768</yloc> | |
| 2199 | - <draw>Y</draw> | |
| 2200 | - </GUI> | |
| 2201 | - </step> | |
| 2202 | - | |
| 2203 | - <step> | |
| 2204 | - <name>计算班次类型</name> | |
| 2205 | - <type>ValueMapper</type> | |
| 2206 | - <description/> | |
| 2207 | - <distribute>Y</distribute> | |
| 2208 | - <custom_distribution/> | |
| 2209 | - <copies>1</copies> | |
| 2210 | - <partitioning> | |
| 2211 | - <method>none</method> | |
| 2212 | - <schema_name/> | |
| 2213 | - </partitioning> | |
| 2214 | - <field_to_use>qdzname</field_to_use> | |
| 2215 | - <target_field>bctype</target_field> | |
| 2216 | - <non_match_default>正常班次</non_match_default> | |
| 2217 | - <fields> | |
| 2218 | - <field> | |
| 2219 | - <source_value>出场</source_value> | |
| 2220 | - <target_value>出场</target_value> | |
| 2221 | - </field> | |
| 2222 | - <field> | |
| 2223 | - <source_value>进场</source_value> | |
| 2224 | - <target_value>进场</target_value> | |
| 2225 | - </field> | |
| 2226 | - </fields> | |
| 2227 | - <cluster_schema/> | |
| 2228 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2229 | - <xloc>1014</xloc> | |
| 2230 | - <yloc>401</yloc> | |
| 2231 | - <draw>Y</draw> | |
| 2232 | - </GUI> | |
| 2233 | - </step> | |
| 2234 | - | |
| 2235 | - <step> | |
| 2236 | - <name>记录关联 (笛卡尔输出)</name> | |
| 2237 | - <type>JoinRows</type> | |
| 2238 | - <description/> | |
| 2239 | - <distribute>Y</distribute> | |
| 2240 | - <custom_distribution/> | |
| 2241 | - <copies>1</copies> | |
| 2242 | - <partitioning> | |
| 2243 | - <method>none</method> | |
| 2244 | - <schema_name/> | |
| 2245 | - </partitioning> | |
| 2246 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2247 | - <prefix>out</prefix> | |
| 2248 | - <cache_size>500</cache_size> | |
| 2249 | - <main/> | |
| 2250 | - <compare> | |
| 2251 | -<condition> | |
| 2252 | - <negated>N</negated> | |
| 2253 | - <leftvalue/> | |
| 2254 | - <function>=</function> | |
| 2255 | - <rightvalue/> | |
| 2256 | - </condition> | |
| 2257 | - </compare> | |
| 2258 | - <cluster_schema/> | |
| 2259 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2260 | - <xloc>310</xloc> | |
| 2261 | - <yloc>133</yloc> | |
| 2262 | - <draw>Y</draw> | |
| 2263 | - </GUI> | |
| 2264 | - </step> | |
| 2265 | - | |
| 2266 | - <step> | |
| 2267 | - <name>过滤记录(发车时间为空)</name> | |
| 2268 | - <type>FilterRows</type> | |
| 2269 | - <description/> | |
| 2270 | - <distribute>Y</distribute> | |
| 2271 | - <custom_distribution/> | |
| 2272 | - <copies>1</copies> | |
| 2273 | - <partitioning> | |
| 2274 | - <method>none</method> | |
| 2275 | - <schema_name/> | |
| 2276 | - </partitioning> | |
| 2277 | -<send_true_to/> | |
| 2278 | -<send_false_to/> | |
| 2279 | - <compare> | |
| 2280 | -<condition> | |
| 2281 | - <negated>N</negated> | |
| 2282 | - <leftvalue>sendtime</leftvalue> | |
| 2283 | - <function>IS NOT NULL</function> | |
| 2284 | - <rightvalue/> | |
| 2285 | - </condition> | |
| 2286 | - </compare> | |
| 2287 | - <cluster_schema/> | |
| 2288 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2289 | - <xloc>571</xloc> | |
| 2290 | - <yloc>44</yloc> | |
| 2291 | - <draw>Y</draw> | |
| 2292 | - </GUI> | |
| 2293 | - </step> | |
| 2294 | - | |
| 2295 | - <step> | |
| 2296 | - <name>进场班次_确定起点站名字</name> | |
| 2297 | - <type>ScriptValueMod</type> | |
| 2298 | - <description/> | |
| 2299 | - <distribute>Y</distribute> | |
| 2300 | - <custom_distribution/> | |
| 2301 | - <copies>1</copies> | |
| 2302 | - <partitioning> | |
| 2303 | - <method>none</method> | |
| 2304 | - <schema_name/> | |
| 2305 | - </partitioning> | |
| 2306 | - <compatible>N</compatible> | |
| 2307 | - <optimizationLevel>9</optimizationLevel> | |
| 2308 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2309 | - <jsScript_name>Script 1</jsScript_name> | |
| 2310 | - <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';</jsScript_script> | |
| 2311 | - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 2312 | - <rename>qdzname_calcu</rename> | |
| 2313 | - <type>String</type> | |
| 2314 | - <length>-1</length> | |
| 2315 | - <precision>-1</precision> | |
| 2316 | - <replace>N</replace> | |
| 2317 | - </field> <field> <name>startZdtype_calcu</name> | |
| 2318 | - <rename>startZdtype_calcu</rename> | |
| 2319 | - <type>String</type> | |
| 2320 | - <length>-1</length> | |
| 2321 | - <precision>-1</precision> | |
| 2322 | - <replace>N</replace> | |
| 2323 | - </field> <field> <name>endZdtype_calcu</name> | |
| 2324 | - <rename>endZdtype_calcu</rename> | |
| 2325 | - <type>String</type> | |
| 2326 | - <length>-1</length> | |
| 2327 | - <precision>-1</precision> | |
| 2328 | - <replace>N</replace> | |
| 2329 | - </field> </fields> <cluster_schema/> | |
| 2330 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2331 | - <xloc>754</xloc> | |
| 2332 | - <yloc>610</yloc> | |
| 2333 | - <draw>Y</draw> | |
| 2334 | - </GUI> | |
| 2335 | - </step> | |
| 2336 | - | |
| 2337 | - <step> | |
| 2338 | - <name>进场班次数据</name> | |
| 2339 | - <type>Dummy</type> | |
| 2340 | - <description/> | |
| 2341 | - <distribute>Y</distribute> | |
| 2342 | - <custom_distribution/> | |
| 2343 | - <copies>1</copies> | |
| 2344 | - <partitioning> | |
| 2345 | - <method>none</method> | |
| 2346 | - <schema_name/> | |
| 2347 | - </partitioning> | |
| 2348 | - <cluster_schema/> | |
| 2349 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2350 | - <xloc>997</xloc> | |
| 2351 | - <yloc>606</yloc> | |
| 2352 | - <draw>Y</draw> | |
| 2353 | - </GUI> | |
| 2354 | - </step> | |
| 2355 | - | |
| 2356 | - <step> | |
| 2357 | - <name>查找进场起点站关联确定上下行</name> | |
| 2358 | - <type>DBLookup</type> | |
| 2359 | - <description/> | |
| 2360 | - <distribute>Y</distribute> | |
| 2361 | - <custom_distribution/> | |
| 2362 | - <copies>1</copies> | |
| 2363 | - <partitioning> | |
| 2364 | - <method>none</method> | |
| 2365 | - <schema_name/> | |
| 2366 | - </partitioning> | |
| 2367 | - <connection>bus_control_variable</connection> | |
| 2368 | - <cache>N</cache> | |
| 2369 | - <cache_load_all>N</cache_load_all> | |
| 2370 | - <cache_size>0</cache_size> | |
| 2371 | - <lookup> | |
| 2372 | - <schema/> | |
| 2373 | - <table>bsth_c_stationroute</table> | |
| 2374 | - <orderby/> | |
| 2375 | - <fail_on_multiple>N</fail_on_multiple> | |
| 2376 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 2377 | - <key> | |
| 2378 | - <name>xlid</name> | |
| 2379 | - <field>line</field> | |
| 2380 | - <condition>=</condition> | |
| 2381 | - <name2/> | |
| 2382 | - </key> | |
| 2383 | - <key> | |
| 2384 | - <name>zdzname_calcu</name> | |
| 2385 | - <field>station_name</field> | |
| 2386 | - <condition>=</condition> | |
| 2387 | - <name2/> | |
| 2388 | - </key> | |
| 2389 | - <key> | |
| 2390 | - <name>startZdtype_calcu</name> | |
| 2391 | - <field>station_mark</field> | |
| 2392 | - <condition>=</condition> | |
| 2393 | - <name2/> | |
| 2394 | - </key> | |
| 2395 | - <value> | |
| 2396 | - <name>directions</name> | |
| 2397 | - <rename>sxx2</rename> | |
| 2398 | - <default/> | |
| 2399 | - <type>Integer</type> | |
| 2400 | - </value> | |
| 2401 | - <value> | |
| 2402 | - <name>station</name> | |
| 2403 | - <rename>qdzid</rename> | |
| 2404 | - <default/> | |
| 2405 | - <type>Integer</type> | |
| 2406 | - </value> | |
| 2407 | - </lookup> | |
| 2408 | - <cluster_schema/> | |
| 2409 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2410 | - <xloc>551</xloc> | |
| 2411 | - <yloc>782</yloc> | |
| 2412 | - <draw>Y</draw> | |
| 2413 | - </GUI> | |
| 2414 | - </step> | |
| 2415 | - | |
| 2416 | - <step> | |
| 2417 | - <name>匹配出场班次里程时间</name> | |
| 2418 | - <type>ScriptValueMod</type> | |
| 2419 | - <description/> | |
| 2420 | - <distribute>Y</distribute> | |
| 2421 | - <custom_distribution/> | |
| 2422 | - <copies>1</copies> | |
| 2423 | - <partitioning> | |
| 2424 | - <method>none</method> | |
| 2425 | - <schema_name/> | |
| 2426 | - </partitioning> | |
| 2427 | - <compatible>N</compatible> | |
| 2428 | - <optimizationLevel>9</optimizationLevel> | |
| 2429 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2430 | - <jsScript_name>Script 1</jsScript_name> | |
| 2431 | - <jsScript_script>//Script here

var out_mileage; // 出场计划里程
var out_time; // 出场计划时间

if (sxx == 0) { // 上行
 out_mileage = up_out_mileage;
 out_time = up_out_timer;
} else { // sxx == 1 下行
 out_mileage = down_out_mileage;
 out_time = down_out_timer;
}



</jsScript_script> | |
| 2432 | - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name> | |
| 2433 | - <rename>out_mileage</rename> | |
| 2434 | - <type>String</type> | |
| 2435 | - <length>-1</length> | |
| 2436 | - <precision>-1</precision> | |
| 2437 | - <replace>N</replace> | |
| 2438 | - </field> <field> <name>out_time</name> | |
| 2439 | - <rename>out_time</rename> | |
| 2440 | - <type>String</type> | |
| 2441 | - <length>-1</length> | |
| 2442 | - <precision>-1</precision> | |
| 2443 | - <replace>N</replace> | |
| 2444 | - </field> </fields> <cluster_schema/> | |
| 2445 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2446 | - <xloc>336</xloc> | |
| 2447 | - <yloc>862</yloc> | |
| 2448 | - <draw>Y</draw> | |
| 2449 | - </GUI> | |
| 2450 | - </step> | |
| 2451 | - | |
| 2452 | - <step> | |
| 2453 | - <name>类型修正 2</name> | |
| 2454 | - <type>SelectValues</type> | |
| 2455 | - <description/> | |
| 2456 | - <distribute>Y</distribute> | |
| 2457 | - <custom_distribution/> | |
| 2458 | - <copies>1</copies> | |
| 2459 | - <partitioning> | |
| 2460 | - <method>none</method> | |
| 2461 | - <schema_name/> | |
| 2462 | - </partitioning> | |
| 2463 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2464 | - <meta> <name>out_mileage</name> | |
| 2465 | - <rename>out_mileage</rename> | |
| 2466 | - <type>Number</type> | |
| 2467 | - <length>-2</length> | |
| 2468 | - <precision>-2</precision> | |
| 2469 | - <conversion_mask/> | |
| 2470 | - <date_format_lenient>false</date_format_lenient> | |
| 2471 | - <date_format_locale/> | |
| 2472 | - <date_format_timezone/> | |
| 2473 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2474 | - <encoding/> | |
| 2475 | - <decimal_symbol/> | |
| 2476 | - <grouping_symbol/> | |
| 2477 | - <currency_symbol/> | |
| 2478 | - <storage_type/> | |
| 2479 | - </meta> <meta> <name>out_time</name> | |
| 2480 | - <rename>out_time</rename> | |
| 2481 | - <type>Integer</type> | |
| 2482 | - <length>-2</length> | |
| 2483 | - <precision>-2</precision> | |
| 2484 | - <conversion_mask/> | |
| 2485 | - <date_format_lenient>false</date_format_lenient> | |
| 2486 | - <date_format_locale/> | |
| 2487 | - <date_format_timezone/> | |
| 2488 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2489 | - <encoding/> | |
| 2490 | - <decimal_symbol/> | |
| 2491 | - <grouping_symbol/> | |
| 2492 | - <currency_symbol/> | |
| 2493 | - <storage_type/> | |
| 2494 | - </meta> </fields> <cluster_schema/> | |
| 2495 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2496 | - <xloc>338</xloc> | |
| 2497 | - <yloc>949</yloc> | |
| 2498 | - <draw>Y</draw> | |
| 2499 | - </GUI> | |
| 2500 | - </step> | |
| 2501 | - | |
| 2502 | - <step> | |
| 2503 | - <name>匹配进场班次里程时间</name> | |
| 2504 | - <type>ScriptValueMod</type> | |
| 2505 | - <description/> | |
| 2506 | - <distribute>Y</distribute> | |
| 2507 | - <custom_distribution/> | |
| 2508 | - <copies>1</copies> | |
| 2509 | - <partitioning> | |
| 2510 | - <method>none</method> | |
| 2511 | - <schema_name/> | |
| 2512 | - </partitioning> | |
| 2513 | - <compatible>N</compatible> | |
| 2514 | - <optimizationLevel>9</optimizationLevel> | |
| 2515 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2516 | - <jsScript_name>Script 1</jsScript_name> | |
| 2517 | - <jsScript_script>//Script here

var parade_mileage; // 进场计划里程
var parade_time; // 进场计划时间

if (sxx2 == 0) { // 上行
 parade_mileage = up_in_mileage;
 parade_time = up_in_timer;
} else { // sxx == 1 下行
 parade_mileage = down_in_mileage;
 parade_time = down_in_timer;
}



</jsScript_script> | |
| 2518 | - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name> | |
| 2519 | - <rename>parade_mileage</rename> | |
| 2520 | - <type>String</type> | |
| 2521 | - <length>-1</length> | |
| 2522 | - <precision>-1</precision> | |
| 2523 | - <replace>N</replace> | |
| 2524 | - </field> <field> <name>parade_time</name> | |
| 2525 | - <rename>parade_time</rename> | |
| 2526 | - <type>String</type> | |
| 2527 | - <length>-1</length> | |
| 2528 | - <precision>-1</precision> | |
| 2529 | - <replace>N</replace> | |
| 2530 | - </field> </fields> <cluster_schema/> | |
| 2531 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2532 | - <xloc>726</xloc> | |
| 2533 | - <yloc>1005</yloc> | |
| 2534 | - <draw>Y</draw> | |
| 2535 | - </GUI> | |
| 2536 | - </step> | |
| 2537 | - | |
| 2538 | - <step> | |
| 2539 | - <name>类型修正 3</name> | |
| 2540 | - <type>SelectValues</type> | |
| 2541 | - <description/> | |
| 2542 | - <distribute>Y</distribute> | |
| 2543 | - <custom_distribution/> | |
| 2544 | - <copies>1</copies> | |
| 2545 | - <partitioning> | |
| 2546 | - <method>none</method> | |
| 2547 | - <schema_name/> | |
| 2548 | - </partitioning> | |
| 2549 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2550 | - <meta> <name>parade_mileage</name> | |
| 2551 | - <rename>parade_mileage</rename> | |
| 2552 | - <type>Number</type> | |
| 2553 | - <length>-2</length> | |
| 2554 | - <precision>-2</precision> | |
| 2555 | - <conversion_mask/> | |
| 2556 | - <date_format_lenient>false</date_format_lenient> | |
| 2557 | - <date_format_locale/> | |
| 2558 | - <date_format_timezone/> | |
| 2559 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2560 | - <encoding/> | |
| 2561 | - <decimal_symbol/> | |
| 2562 | - <grouping_symbol/> | |
| 2563 | - <currency_symbol/> | |
| 2564 | - <storage_type/> | |
| 2565 | - </meta> <meta> <name>parade_time</name> | |
| 2566 | - <rename>parade_time</rename> | |
| 2567 | - <type>Integer</type> | |
| 2568 | - <length>-2</length> | |
| 2569 | - <precision>-2</precision> | |
| 2570 | - <conversion_mask/> | |
| 2571 | - <date_format_lenient>false</date_format_lenient> | |
| 2572 | - <date_format_locale/> | |
| 2573 | - <date_format_timezone/> | |
| 2574 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2575 | - <encoding/> | |
| 2576 | - <decimal_symbol/> | |
| 2577 | - <grouping_symbol/> | |
| 2578 | - <currency_symbol/> | |
| 2579 | - <storage_type/> | |
| 2580 | - </meta> </fields> <cluster_schema/> | |
| 2581 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2582 | - <xloc>875</xloc> | |
| 2583 | - <yloc>1001</yloc> | |
| 2584 | - <draw>Y</draw> | |
| 2585 | - </GUI> | |
| 2586 | - </step> | |
| 2587 | - | |
| 2588 | - <step_error_handling> | |
| 2589 | - </step_error_handling> | |
| 2590 | - <slave-step-copy-partition-distribution> | |
| 2591 | -</slave-step-copy-partition-distribution> | |
| 2592 | - <slave_transformation>N</slave_transformation> | |
| 2593 | - | |
| 2594 | -</transformation> | |
| 2595 | 1 | \ No newline at end of file |
| 2 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 3 | +<transformation> | |
| 4 | + <info> | |
| 5 | + <name>ttinfodetailDataInput</name> | |
| 6 | + <description>时刻表明细信息导入</description> | |
| 7 | + <extended_description>时刻表明细信息</extended_description> | |
| 8 | + <trans_version/> | |
| 9 | + <trans_type>Normal</trans_type> | |
| 10 | + <trans_status>0</trans_status> | |
| 11 | + <directory>/</directory> | |
| 12 | + <parameters> | |
| 13 | + </parameters> | |
| 14 | + <log> | |
| 15 | +<trans-log-table><connection/> | |
| 16 | +<schema/> | |
| 17 | +<table/> | |
| 18 | +<size_limit_lines/> | |
| 19 | +<interval/> | |
| 20 | +<timeout_days/> | |
| 21 | +<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> | |
| 22 | +<perf-log-table><connection/> | |
| 23 | +<schema/> | |
| 24 | +<table/> | |
| 25 | +<interval/> | |
| 26 | +<timeout_days/> | |
| 27 | +<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> | |
| 28 | +<channel-log-table><connection/> | |
| 29 | +<schema/> | |
| 30 | +<table/> | |
| 31 | +<timeout_days/> | |
| 32 | +<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> | |
| 33 | +<step-log-table><connection/> | |
| 34 | +<schema/> | |
| 35 | +<table/> | |
| 36 | +<timeout_days/> | |
| 37 | +<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> | |
| 38 | +<metrics-log-table><connection/> | |
| 39 | +<schema/> | |
| 40 | +<table/> | |
| 41 | +<timeout_days/> | |
| 42 | +<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> | |
| 43 | + </log> | |
| 44 | + <maxdate> | |
| 45 | + <connection/> | |
| 46 | + <table/> | |
| 47 | + <field/> | |
| 48 | + <offset>0.0</offset> | |
| 49 | + <maxdiff>0.0</maxdiff> | |
| 50 | + </maxdate> | |
| 51 | + <size_rowset>10000</size_rowset> | |
| 52 | + <sleep_time_empty>50</sleep_time_empty> | |
| 53 | + <sleep_time_full>50</sleep_time_full> | |
| 54 | + <unique_connections>N</unique_connections> | |
| 55 | + <feedback_shown>Y</feedback_shown> | |
| 56 | + <feedback_size>50000</feedback_size> | |
| 57 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 58 | + <shared_objects_file/> | |
| 59 | + <capture_step_performance>N</capture_step_performance> | |
| 60 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 61 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 62 | + <dependencies> | |
| 63 | + </dependencies> | |
| 64 | + <partitionschemas> | |
| 65 | + </partitionschemas> | |
| 66 | + <slaveservers> | |
| 67 | + </slaveservers> | |
| 68 | + <clusterschemas> | |
| 69 | + </clusterschemas> | |
| 70 | + <created_user>-</created_user> | |
| 71 | + <created_date>2016/06/30 12:21:57.536</created_date> | |
| 72 | + <modified_user>-</modified_user> | |
| 73 | + <modified_date>2016/06/30 12:21:57.536</modified_date> | |
| 74 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 75 | + <is_key_private>N</is_key_private> | |
| 76 | + </info> | |
| 77 | + <notepads> | |
| 78 | + <notepad> | |
| 79 | + <note>字典表对应(以后直接查找表 bsth_c_sys_dictionary)
类型 代码 名称
LineTrend 0 上行
LineTrend 1 下行
ScheduleType normal 正常班次
ScheduleType out 出场
ScheduleType in 进场
ScheduleType temp 临加
ScheduleType region 区间
ScheduleType venting 放空
ScheduleType major 放大站</note> | |
| 80 | + <xloc>606</xloc> | |
| 81 | + <yloc>129</yloc> | |
| 82 | + <width>332</width> | |
| 83 | + <heigth>186</heigth> | |
| 84 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 85 | + <fontsize>12</fontsize> | |
| 86 | + <fontbold>N</fontbold> | |
| 87 | + <fontitalic>N</fontitalic> | |
| 88 | + <fontcolorred>0</fontcolorred> | |
| 89 | + <fontcolorgreen>0</fontcolorgreen> | |
| 90 | + <fontcolorblue>0</fontcolorblue> | |
| 91 | + <backgroundcolorred>255</backgroundcolorred> | |
| 92 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 93 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 94 | + <bordercolorred>100</bordercolorred> | |
| 95 | + <bordercolorgreen>100</bordercolorgreen> | |
| 96 | + <bordercolorblue>100</bordercolorblue> | |
| 97 | + <drawshadow>Y</drawshadow> | |
| 98 | + </notepad> | |
| 99 | + <notepad> | |
| 100 | + <note>因为时刻表输入格式不确定性,主要因为表结构是反范式化的,
所以需要外部动态指定愿数据,头三个step动态指定愿数据

</note> | |
| 101 | + <xloc>79</xloc> | |
| 102 | + <yloc>206</yloc> | |
| 103 | + <width>346</width> | |
| 104 | + <heigth>74</heigth> | |
| 105 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 106 | + <fontsize>12</fontsize> | |
| 107 | + <fontbold>N</fontbold> | |
| 108 | + <fontitalic>N</fontitalic> | |
| 109 | + <fontcolorred>0</fontcolorred> | |
| 110 | + <fontcolorgreen>0</fontcolorgreen> | |
| 111 | + <fontcolorblue>0</fontcolorblue> | |
| 112 | + <backgroundcolorred>255</backgroundcolorred> | |
| 113 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 114 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 115 | + <bordercolorred>100</bordercolorred> | |
| 116 | + <bordercolorgreen>100</bordercolorgreen> | |
| 117 | + <bordercolorblue>100</bordercolorblue> | |
| 118 | + <drawshadow>Y</drawshadow> | |
| 119 | + </notepad> | |
| 120 | + </notepads> | |
| 121 | + <connection> | |
| 122 | + <name>bus_control_variable</name> | |
| 123 | + <server>${v_db_ip}</server> | |
| 124 | + <type>MYSQL</type> | |
| 125 | + <access>Native</access> | |
| 126 | + <database>${v_db_dname}</database> | |
| 127 | + <port>3306</port> | |
| 128 | + <username>${v_db_uname}</username> | |
| 129 | + <password>${v_db_pwd}</password> | |
| 130 | + <servername/> | |
| 131 | + <data_tablespace/> | |
| 132 | + <index_tablespace/> | |
| 133 | + <attributes> | |
| 134 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 135 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 136 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 137 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 138 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 139 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 140 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 141 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 142 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 143 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 144 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 145 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 146 | + </attributes> | |
| 147 | + </connection> | |
| 148 | + <connection> | |
| 149 | + <name>bus_control_公司_201</name> | |
| 150 | + <server>localhost</server> | |
| 151 | + <type>MYSQL</type> | |
| 152 | + <access>Native</access> | |
| 153 | + <database>control</database> | |
| 154 | + <port>3306</port> | |
| 155 | + <username>root</username> | |
| 156 | + <password>Encrypted </password> | |
| 157 | + <servername/> | |
| 158 | + <data_tablespace/> | |
| 159 | + <index_tablespace/> | |
| 160 | + <attributes> | |
| 161 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 162 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 163 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 164 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 165 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 166 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 167 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 168 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 169 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 170 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 171 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 172 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 173 | + </attributes> | |
| 174 | + </connection> | |
| 175 | + <connection> | |
| 176 | + <name>bus_control_本机</name> | |
| 177 | + <server>localhost</server> | |
| 178 | + <type>MYSQL</type> | |
| 179 | + <access>Native</access> | |
| 180 | + <database>control</database> | |
| 181 | + <port>3306</port> | |
| 182 | + <username>root</username> | |
| 183 | + <password>Encrypted </password> | |
| 184 | + <servername/> | |
| 185 | + <data_tablespace/> | |
| 186 | + <index_tablespace/> | |
| 187 | + <attributes> | |
| 188 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 189 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 190 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 191 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 192 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 193 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 194 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 195 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 196 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 197 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 198 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 199 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 200 | + </attributes> | |
| 201 | + </connection> | |
| 202 | + <connection> | |
| 203 | + <name>xlab_mysql_youle</name> | |
| 204 | + <server>101.231.124.8</server> | |
| 205 | + <type>MYSQL</type> | |
| 206 | + <access>Native</access> | |
| 207 | + <database>xlab_youle</database> | |
| 208 | + <port>45687</port> | |
| 209 | + <username>xlab-youle</username> | |
| 210 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 211 | + <servername/> | |
| 212 | + <data_tablespace/> | |
| 213 | + <index_tablespace/> | |
| 214 | + <attributes> | |
| 215 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 216 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 217 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 218 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 219 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 220 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 221 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 222 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 223 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 224 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 225 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 226 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 227 | + </attributes> | |
| 228 | + </connection> | |
| 229 | + <connection> | |
| 230 | + <name>xlab_mysql_youle(本机)</name> | |
| 231 | + <server>localhost</server> | |
| 232 | + <type>MYSQL</type> | |
| 233 | + <access>Native</access> | |
| 234 | + <database>xlab_youle</database> | |
| 235 | + <port>3306</port> | |
| 236 | + <username>root</username> | |
| 237 | + <password>Encrypted </password> | |
| 238 | + <servername/> | |
| 239 | + <data_tablespace/> | |
| 240 | + <index_tablespace/> | |
| 241 | + <attributes> | |
| 242 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 243 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 244 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 245 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 246 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 247 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 248 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 249 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 250 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 251 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 252 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 253 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 254 | + </attributes> | |
| 255 | + </connection> | |
| 256 | + <connection> | |
| 257 | + <name>xlab_youle</name> | |
| 258 | + <server/> | |
| 259 | + <type>MYSQL</type> | |
| 260 | + <access>JNDI</access> | |
| 261 | + <database>xlab_youle</database> | |
| 262 | + <port>1521</port> | |
| 263 | + <username/> | |
| 264 | + <password>Encrypted </password> | |
| 265 | + <servername/> | |
| 266 | + <data_tablespace/> | |
| 267 | + <index_tablespace/> | |
| 268 | + <attributes> | |
| 269 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 270 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 271 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 272 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 273 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 274 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 275 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 276 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 277 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 278 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 279 | + </attributes> | |
| 280 | + </connection> | |
| 281 | + <order> | |
| 282 | + <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 283 | + <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 284 | + <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</to><enabled>Y</enabled> </hop> | |
| 285 | + <hop> <from>添加对应班次数</from><to>处理数据</to><enabled>Y</enabled> </hop> | |
| 286 | + <hop> <from>处理数据</from><to>分组各个路牌的站</to><enabled>Y</enabled> </hop> | |
| 287 | + <hop> <from>查找时刻表基础信息关联</from><to>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 288 | + <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 289 | + <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 290 | + <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 291 | + <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 292 | + <hop> <from>匹配上下行正常班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 293 | + <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 294 | + <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 295 | + <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 296 | + <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 297 | + <hop> <from>查找线路上下行里程时间</from><to>匹配上下行正常班次里程时间</to><enabled>Y</enabled> </hop> | |
| 298 | + <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 299 | + <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 300 | + <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 301 | + <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 302 | + <hop> <from>班次类型字典</from><to>查找线路上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 303 | + <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 304 | + <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 305 | + <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 306 | + <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 307 | + <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 308 | + <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 309 | + <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 310 | + <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 311 | + <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 312 | + <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 313 | + <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 314 | + <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 315 | + <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 316 | + <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 317 | + <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 318 | + <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 319 | + <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 320 | + <hop> <from>类型修正</from><to>插入/更新bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop> | |
| 321 | + <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>查找进场起点站关联确定上下行</to><enabled>Y</enabled> </hop> | |
| 322 | + <hop> <from>查找进场起点站关联确定上下行</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 323 | + <hop> <from>查找线路出场里程时间</from><to>匹配出场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 324 | + <hop> <from>匹配出场班次里程时间</from><to>类型修正 2</to><enabled>Y</enabled> </hop> | |
| 325 | + <hop> <from>类型修正 2</from><to>插入/更新bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop> | |
| 326 | + <hop> <from>查找线路进场里程时间</from><to>匹配进场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 327 | + <hop> <from>匹配进场班次里程时间</from><to>类型修正 3</to><enabled>Y</enabled> </hop> | |
| 328 | + <hop> <from>类型修正 3</from><to>插入/更新bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop> | |
| 329 | + </order> | |
| 330 | + <step> | |
| 331 | + <name>上下行字典</name> | |
| 332 | + <type>ValueMapper</type> | |
| 333 | + <description/> | |
| 334 | + <distribute>Y</distribute> | |
| 335 | + <custom_distribution/> | |
| 336 | + <copies>1</copies> | |
| 337 | + <partitioning> | |
| 338 | + <method>none</method> | |
| 339 | + <schema_name/> | |
| 340 | + </partitioning> | |
| 341 | + <field_to_use>sxx</field_to_use> | |
| 342 | + <target_field>sxx_desc</target_field> | |
| 343 | + <non_match_default/> | |
| 344 | + <fields> | |
| 345 | + <field> | |
| 346 | + <source_value>0</source_value> | |
| 347 | + <target_value>上行</target_value> | |
| 348 | + </field> | |
| 349 | + <field> | |
| 350 | + <source_value>1</source_value> | |
| 351 | + <target_value>下行</target_value> | |
| 352 | + </field> | |
| 353 | + </fields> | |
| 354 | + <cluster_schema/> | |
| 355 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 356 | + <xloc>147</xloc> | |
| 357 | + <yloc>403</yloc> | |
| 358 | + <draw>Y</draw> | |
| 359 | + </GUI> | |
| 360 | + </step> | |
| 361 | + | |
| 362 | + <step> | |
| 363 | + <name>上下行字典 2</name> | |
| 364 | + <type>ValueMapper</type> | |
| 365 | + <description/> | |
| 366 | + <distribute>Y</distribute> | |
| 367 | + <custom_distribution/> | |
| 368 | + <copies>1</copies> | |
| 369 | + <partitioning> | |
| 370 | + <method>none</method> | |
| 371 | + <schema_name/> | |
| 372 | + </partitioning> | |
| 373 | + <field_to_use>sxx</field_to_use> | |
| 374 | + <target_field>sxx_desc</target_field> | |
| 375 | + <non_match_default/> | |
| 376 | + <fields> | |
| 377 | + <field> | |
| 378 | + <source_value>0</source_value> | |
| 379 | + <target_value>上行</target_value> | |
| 380 | + </field> | |
| 381 | + <field> | |
| 382 | + <source_value>1</source_value> | |
| 383 | + <target_value>下行</target_value> | |
| 384 | + </field> | |
| 385 | + </fields> | |
| 386 | + <cluster_schema/> | |
| 387 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 388 | + <xloc>331</xloc> | |
| 389 | + <yloc>598</yloc> | |
| 390 | + <draw>Y</draw> | |
| 391 | + </GUI> | |
| 392 | + </step> | |
| 393 | + | |
| 394 | + <step> | |
| 395 | + <name>上下行字典 3</name> | |
| 396 | + <type>ValueMapper</type> | |
| 397 | + <description/> | |
| 398 | + <distribute>Y</distribute> | |
| 399 | + <custom_distribution/> | |
| 400 | + <copies>1</copies> | |
| 401 | + <partitioning> | |
| 402 | + <method>none</method> | |
| 403 | + <schema_name/> | |
| 404 | + </partitioning> | |
| 405 | + <field_to_use>sxx</field_to_use> | |
| 406 | + <target_field>sxx_desc</target_field> | |
| 407 | + <non_match_default/> | |
| 408 | + <fields> | |
| 409 | + <field> | |
| 410 | + <source_value>0</source_value> | |
| 411 | + <target_value>上行</target_value> | |
| 412 | + </field> | |
| 413 | + <field> | |
| 414 | + <source_value>1</source_value> | |
| 415 | + <target_value>下行</target_value> | |
| 416 | + </field> | |
| 417 | + </fields> | |
| 418 | + <cluster_schema/> | |
| 419 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 420 | + <xloc>553</xloc> | |
| 421 | + <yloc>859</yloc> | |
| 422 | + <draw>Y</draw> | |
| 423 | + </GUI> | |
| 424 | + </step> | |
| 425 | + | |
| 426 | + <step> | |
| 427 | + <name>出场班次_确定终点站名字</name> | |
| 428 | + <type>ScriptValueMod</type> | |
| 429 | + <description/> | |
| 430 | + <distribute>Y</distribute> | |
| 431 | + <custom_distribution/> | |
| 432 | + <copies>1</copies> | |
| 433 | + <partitioning> | |
| 434 | + <method>none</method> | |
| 435 | + <schema_name/> | |
| 436 | + </partitioning> | |
| 437 | + <compatible>N</compatible> | |
| 438 | + <optimizationLevel>9</optimizationLevel> | |
| 439 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 440 | + <jsScript_name>Script 1</jsScript_name> | |
| 441 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'E';</jsScript_script> | |
| 442 | + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 443 | + <rename>zdzname</rename> | |
| 444 | + <type>String</type> | |
| 445 | + <length>-1</length> | |
| 446 | + <precision>-1</precision> | |
| 447 | + <replace>N</replace> | |
| 448 | + </field> <field> <name>endZdtype</name> | |
| 449 | + <rename>endZdtype</rename> | |
| 450 | + <type>String</type> | |
| 451 | + <length>-1</length> | |
| 452 | + <precision>-1</precision> | |
| 453 | + <replace>N</replace> | |
| 454 | + </field> </fields> <cluster_schema/> | |
| 455 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 456 | + <xloc>575</xloc> | |
| 457 | + <yloc>502</yloc> | |
| 458 | + <draw>Y</draw> | |
| 459 | + </GUI> | |
| 460 | + </step> | |
| 461 | + | |
| 462 | + <step> | |
| 463 | + <name>出场班次数据</name> | |
| 464 | + <type>Dummy</type> | |
| 465 | + <description/> | |
| 466 | + <distribute>Y</distribute> | |
| 467 | + <custom_distribution/> | |
| 468 | + <copies>1</copies> | |
| 469 | + <partitioning> | |
| 470 | + <method>none</method> | |
| 471 | + <schema_name/> | |
| 472 | + </partitioning> | |
| 473 | + <cluster_schema/> | |
| 474 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 475 | + <xloc>869</xloc> | |
| 476 | + <yloc>504</yloc> | |
| 477 | + <draw>Y</draw> | |
| 478 | + </GUI> | |
| 479 | + </step> | |
| 480 | + | |
| 481 | + <step> | |
| 482 | + <name>分组各个路牌的站</name> | |
| 483 | + <type>GroupBy</type> | |
| 484 | + <description/> | |
| 485 | + <distribute>Y</distribute> | |
| 486 | + <custom_distribution/> | |
| 487 | + <copies>1</copies> | |
| 488 | + <partitioning> | |
| 489 | + <method>none</method> | |
| 490 | + <schema_name/> | |
| 491 | + </partitioning> | |
| 492 | + <all_rows>Y</all_rows> | |
| 493 | + <ignore_aggregate>N</ignore_aggregate> | |
| 494 | + <field_ignore/> | |
| 495 | + <directory>%%java.io.tmpdir%%</directory> | |
| 496 | + <prefix>grp</prefix> | |
| 497 | + <add_linenr>Y</add_linenr> | |
| 498 | + <linenr_fieldname>gno</linenr_fieldname> | |
| 499 | + <give_back_row>N</give_back_row> | |
| 500 | + <group> | |
| 501 | + <field> | |
| 502 | + <name>lp</name> | |
| 503 | + </field> | |
| 504 | + </group> | |
| 505 | + <fields> | |
| 506 | + <field> | |
| 507 | + <aggregate>qdzgroups</aggregate> | |
| 508 | + <subject>qdzname</subject> | |
| 509 | + <type>CONCAT_STRING</type> | |
| 510 | + <valuefield>,</valuefield> | |
| 511 | + </field> | |
| 512 | + </fields> | |
| 513 | + <cluster_schema/> | |
| 514 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 515 | + <xloc>892</xloc> | |
| 516 | + <yloc>44</yloc> | |
| 517 | + <draw>Y</draw> | |
| 518 | + </GUI> | |
| 519 | + </step> | |
| 520 | + | |
| 521 | + <step> | |
| 522 | + <name>匹配上下行正常班次里程时间</name> | |
| 523 | + <type>ScriptValueMod</type> | |
| 524 | + <description/> | |
| 525 | + <distribute>Y</distribute> | |
| 526 | + <custom_distribution/> | |
| 527 | + <copies>1</copies> | |
| 528 | + <partitioning> | |
| 529 | + <method>none</method> | |
| 530 | + <schema_name/> | |
| 531 | + </partitioning> | |
| 532 | + <compatible>N</compatible> | |
| 533 | + <optimizationLevel>9</optimizationLevel> | |
| 534 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 535 | + <jsScript_name>Script 1</jsScript_name> | |
| 536 | + <jsScript_script>//Script here

var jhlc; // 计划里程
var bcsj; // 班次时间

if (sxx == 0) { // 上行
 jhlc = up_mileage;
 bcsj = up_travel_time;
} else { // sxx == 1 下行
 jhlc = down_mileage;
 bcsj = down_travel_time;
}</jsScript_script> | |
| 537 | + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 538 | + <rename>jhlc</rename> | |
| 539 | + <type>String</type> | |
| 540 | + <length>-1</length> | |
| 541 | + <precision>-1</precision> | |
| 542 | + <replace>N</replace> | |
| 543 | + </field> <field> <name>bcsj</name> | |
| 544 | + <rename>bcsj</rename> | |
| 545 | + <type>String</type> | |
| 546 | + <length>-1</length> | |
| 547 | + <precision>-1</precision> | |
| 548 | + <replace>N</replace> | |
| 549 | + </field> </fields> <cluster_schema/> | |
| 550 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 551 | + <xloc>148</xloc> | |
| 552 | + <yloc>674</yloc> | |
| 553 | + <draw>Y</draw> | |
| 554 | + </GUI> | |
| 555 | + </step> | |
| 556 | + | |
| 557 | + <step> | |
| 558 | + <name>匹配出场班次里程时间</name> | |
| 559 | + <type>ScriptValueMod</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 | + <compatible>N</compatible> | |
| 569 | + <optimizationLevel>9</optimizationLevel> | |
| 570 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 571 | + <jsScript_name>Script 1</jsScript_name> | |
| 572 | + <jsScript_script>//Script here

var out_mileage; // 出场计划里程
var out_time; // 出场计划时间

if (sxx == 0) { // 上行
 out_mileage = up_out_mileage;
 out_time = up_out_timer;
} else { // sxx == 1 下行
 out_mileage = down_out_mileage;
 out_time = down_out_timer;
}



</jsScript_script> | |
| 573 | + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name> | |
| 574 | + <rename>out_mileage</rename> | |
| 575 | + <type>String</type> | |
| 576 | + <length>-1</length> | |
| 577 | + <precision>-1</precision> | |
| 578 | + <replace>N</replace> | |
| 579 | + </field> <field> <name>out_time</name> | |
| 580 | + <rename>out_time</rename> | |
| 581 | + <type>String</type> | |
| 582 | + <length>-1</length> | |
| 583 | + <precision>-1</precision> | |
| 584 | + <replace>N</replace> | |
| 585 | + </field> </fields> <cluster_schema/> | |
| 586 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 587 | + <xloc>336</xloc> | |
| 588 | + <yloc>862</yloc> | |
| 589 | + <draw>Y</draw> | |
| 590 | + </GUI> | |
| 591 | + </step> | |
| 592 | + | |
| 593 | + <step> | |
| 594 | + <name>匹配进场班次里程时间</name> | |
| 595 | + <type>ScriptValueMod</type> | |
| 596 | + <description/> | |
| 597 | + <distribute>Y</distribute> | |
| 598 | + <custom_distribution/> | |
| 599 | + <copies>1</copies> | |
| 600 | + <partitioning> | |
| 601 | + <method>none</method> | |
| 602 | + <schema_name/> | |
| 603 | + </partitioning> | |
| 604 | + <compatible>N</compatible> | |
| 605 | + <optimizationLevel>9</optimizationLevel> | |
| 606 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 607 | + <jsScript_name>Script 1</jsScript_name> | |
| 608 | + <jsScript_script>//Script here

var parade_mileage; // 进场计划里程
var parade_time; // 进场计划时间

if (sxx2 == 0) { // 上行
 parade_mileage = up_in_mileage;
 parade_time = up_in_timer;
} else { // sxx == 1 下行
 parade_mileage = down_in_mileage;
 parade_time = down_in_timer;
}



</jsScript_script> | |
| 609 | + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name> | |
| 610 | + <rename>parade_mileage</rename> | |
| 611 | + <type>String</type> | |
| 612 | + <length>-1</length> | |
| 613 | + <precision>-1</precision> | |
| 614 | + <replace>N</replace> | |
| 615 | + </field> <field> <name>parade_time</name> | |
| 616 | + <rename>parade_time</rename> | |
| 617 | + <type>String</type> | |
| 618 | + <length>-1</length> | |
| 619 | + <precision>-1</precision> | |
| 620 | + <replace>N</replace> | |
| 621 | + </field> </fields> <cluster_schema/> | |
| 622 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 623 | + <xloc>726</xloc> | |
| 624 | + <yloc>1005</yloc> | |
| 625 | + <draw>Y</draw> | |
| 626 | + </GUI> | |
| 627 | + </step> | |
| 628 | + | |
| 629 | + <step> | |
| 630 | + <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 631 | + <type>DataGrid</type> | |
| 632 | + <description/> | |
| 633 | + <distribute>Y</distribute> | |
| 634 | + <custom_distribution/> | |
| 635 | + <copies>1</copies> | |
| 636 | + <partitioning> | |
| 637 | + <method>none</method> | |
| 638 | + <schema_name/> | |
| 639 | + </partitioning> | |
| 640 | + <fields> | |
| 641 | + </fields> | |
| 642 | + <data> | |
| 643 | + <line> </line> | |
| 644 | + </data> | |
| 645 | + <cluster_schema/> | |
| 646 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 647 | + <xloc>110</xloc> | |
| 648 | + <yloc>133</yloc> | |
| 649 | + <draw>Y</draw> | |
| 650 | + </GUI> | |
| 651 | + </step> | |
| 652 | + | |
| 653 | + <step> | |
| 654 | + <name>处理数据</name> | |
| 655 | + <type>ScriptValueMod</type> | |
| 656 | + <description/> | |
| 657 | + <distribute>Y</distribute> | |
| 658 | + <custom_distribution/> | |
| 659 | + <copies>1</copies> | |
| 660 | + <partitioning> | |
| 661 | + <method>none</method> | |
| 662 | + <schema_name/> | |
| 663 | + </partitioning> | |
| 664 | + <compatible>N</compatible> | |
| 665 | + <optimizationLevel>9</optimizationLevel> | |
| 666 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 667 | + <jsScript_name>Script 1</jsScript_name> | |
| 668 | + <jsScript_script>//Script here

// 使用正则表达式去除站点名称中的数字
qdzname = qdzname.replace(/\d+/g,'');

// sendtime处理
var sendtime_calcu;
if (sendtime.length != 5) 
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(2, 2);
else 
 sendtime_calcu = sendtime;

// 设置分班
var isfb = 0;

// 设置isCanceled
var iscanceled = 0;</jsScript_script> | |
| 669 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 670 | + <rename>qdzname</rename> | |
| 671 | + <type>String</type> | |
| 672 | + <length>-1</length> | |
| 673 | + <precision>-1</precision> | |
| 674 | + <replace>Y</replace> | |
| 675 | + </field> <field> <name>isfb</name> | |
| 676 | + <rename>isfb</rename> | |
| 677 | + <type>Integer</type> | |
| 678 | + <length>-1</length> | |
| 679 | + <precision>-1</precision> | |
| 680 | + <replace>N</replace> | |
| 681 | + </field> <field> <name>iscanceled</name> | |
| 682 | + <rename>iscanceled</rename> | |
| 683 | + <type>Integer</type> | |
| 684 | + <length>-1</length> | |
| 685 | + <precision>-1</precision> | |
| 686 | + <replace>N</replace> | |
| 687 | + </field> <field> <name>sendtime_calcu</name> | |
| 688 | + <rename>sendtime_calcu</rename> | |
| 689 | + <type>String</type> | |
| 690 | + <length>-1</length> | |
| 691 | + <precision>-1</precision> | |
| 692 | + <replace>N</replace> | |
| 693 | + </field> </fields> <cluster_schema/> | |
| 694 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 695 | + <xloc>788</xloc> | |
| 696 | + <yloc>44</yloc> | |
| 697 | + <draw>Y</draw> | |
| 698 | + </GUI> | |
| 699 | + </step> | |
| 700 | + | |
| 701 | + <step> | |
| 702 | + <name>字段选择</name> | |
| 703 | + <type>SelectValues</type> | |
| 704 | + <description/> | |
| 705 | + <distribute>Y</distribute> | |
| 706 | + <custom_distribution/> | |
| 707 | + <copies>1</copies> | |
| 708 | + <partitioning> | |
| 709 | + <method>none</method> | |
| 710 | + <schema_name/> | |
| 711 | + </partitioning> | |
| 712 | + <fields> <field> <name>路牌</name> | |
| 713 | + <rename>lp</rename> | |
| 714 | + <length>-2</length> | |
| 715 | + <precision>-2</precision> | |
| 716 | + </field> <field> <name>站点名称</name> | |
| 717 | + <rename>qdzname</rename> | |
| 718 | + <length>-2</length> | |
| 719 | + <precision>-2</precision> | |
| 720 | + </field> <field> <name>发车时间</name> | |
| 721 | + <rename>sendtime</rename> | |
| 722 | + <length>-2</length> | |
| 723 | + <precision>-2</precision> | |
| 724 | + </field> <select_unspecified>Y</select_unspecified> | |
| 725 | + </fields> <cluster_schema/> | |
| 726 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 727 | + <xloc>444</xloc> | |
| 728 | + <yloc>131</yloc> | |
| 729 | + <draw>Y</draw> | |
| 730 | + </GUI> | |
| 731 | + </step> | |
| 732 | + | |
| 733 | + <step> | |
| 734 | + <name>按照班次类型过滤数据1</name> | |
| 735 | + <type>FilterRows</type> | |
| 736 | + <description/> | |
| 737 | + <distribute>Y</distribute> | |
| 738 | + <custom_distribution/> | |
| 739 | + <copies>1</copies> | |
| 740 | + <partitioning> | |
| 741 | + <method>none</method> | |
| 742 | + <schema_name/> | |
| 743 | + </partitioning> | |
| 744 | +<send_true_to>正常班次数据</send_true_to> | |
| 745 | +<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 746 | + <compare> | |
| 747 | +<condition> | |
| 748 | + <negated>N</negated> | |
| 749 | + <leftvalue>bctype</leftvalue> | |
| 750 | + <function>=</function> | |
| 751 | + <rightvalue/> | |
| 752 | + <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 753 | + </compare> | |
| 754 | + <cluster_schema/> | |
| 755 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 756 | + <xloc>860</xloc> | |
| 757 | + <yloc>401</yloc> | |
| 758 | + <draw>Y</draw> | |
| 759 | + </GUI> | |
| 760 | + </step> | |
| 761 | + | |
| 762 | + <step> | |
| 763 | + <name>按照班次类型过滤数据2</name> | |
| 764 | + <type>FilterRows</type> | |
| 765 | + <description/> | |
| 766 | + <distribute>Y</distribute> | |
| 767 | + <custom_distribution/> | |
| 768 | + <copies>1</copies> | |
| 769 | + <partitioning> | |
| 770 | + <method>none</method> | |
| 771 | + <schema_name/> | |
| 772 | + </partitioning> | |
| 773 | +<send_true_to>出场班次数据</send_true_to> | |
| 774 | +<send_false_to>进场班次数据</send_false_to> | |
| 775 | + <compare> | |
| 776 | +<condition> | |
| 777 | + <negated>N</negated> | |
| 778 | + <leftvalue>bctype</leftvalue> | |
| 779 | + <function>=</function> | |
| 780 | + <rightvalue/> | |
| 781 | + <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 782 | + </compare> | |
| 783 | + <cluster_schema/> | |
| 784 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 785 | + <xloc>995</xloc> | |
| 786 | + <yloc>503</yloc> | |
| 787 | + <draw>Y</draw> | |
| 788 | + </GUI> | |
| 789 | + </step> | |
| 790 | + | |
| 791 | + <step> | |
| 792 | + <name>插入/更新bsth_c_s_ttinfo_detail</name> | |
| 793 | + <type>InsertUpdate</type> | |
| 794 | + <description/> | |
| 795 | + <distribute>Y</distribute> | |
| 796 | + <custom_distribution/> | |
| 797 | + <copies>1</copies> | |
| 798 | + <partitioning> | |
| 799 | + <method>none</method> | |
| 800 | + <schema_name/> | |
| 801 | + </partitioning> | |
| 802 | + <connection>bus_control_variable</connection> | |
| 803 | + <commit>100</commit> | |
| 804 | + <update_bypassed>N</update_bypassed> | |
| 805 | + <lookup> | |
| 806 | + <schema/> | |
| 807 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 808 | + <key> | |
| 809 | + <name>xlid</name> | |
| 810 | + <field>xl</field> | |
| 811 | + <condition>=</condition> | |
| 812 | + <name2/> | |
| 813 | + </key> | |
| 814 | + <key> | |
| 815 | + <name>ttid</name> | |
| 816 | + <field>ttinfo</field> | |
| 817 | + <condition>=</condition> | |
| 818 | + <name2/> | |
| 819 | + </key> | |
| 820 | + <key> | |
| 821 | + <name>lpid</name> | |
| 822 | + <field>lp</field> | |
| 823 | + <condition>=</condition> | |
| 824 | + <name2/> | |
| 825 | + </key> | |
| 826 | + <key> | |
| 827 | + <name>fcno</name> | |
| 828 | + <field>fcno</field> | |
| 829 | + <condition>=</condition> | |
| 830 | + <name2/> | |
| 831 | + </key> | |
| 832 | + <key> | |
| 833 | + <name>bcs</name> | |
| 834 | + <field>bcs</field> | |
| 835 | + <condition>=</condition> | |
| 836 | + <name2/> | |
| 837 | + </key> | |
| 838 | + <value> | |
| 839 | + <name>lp</name> | |
| 840 | + <rename>lpid</rename> | |
| 841 | + <update>Y</update> | |
| 842 | + </value> | |
| 843 | + <value> | |
| 844 | + <name>bc_type</name> | |
| 845 | + <rename>bctype_code</rename> | |
| 846 | + <update>Y</update> | |
| 847 | + </value> | |
| 848 | + <value> | |
| 849 | + <name>bcs</name> | |
| 850 | + <rename>bcs</rename> | |
| 851 | + <update>Y</update> | |
| 852 | + </value> | |
| 853 | + <value> | |
| 854 | + <name>bcsj</name> | |
| 855 | + <rename>bcsj</rename> | |
| 856 | + <update>Y</update> | |
| 857 | + </value> | |
| 858 | + <value> | |
| 859 | + <name>fcno</name> | |
| 860 | + <rename>fcno</rename> | |
| 861 | + <update>Y</update> | |
| 862 | + </value> | |
| 863 | + <value> | |
| 864 | + <name>jhlc</name> | |
| 865 | + <rename>jhlc</rename> | |
| 866 | + <update>Y</update> | |
| 867 | + </value> | |
| 868 | + <value> | |
| 869 | + <name>fcsj</name> | |
| 870 | + <rename>sendtime_calcu</rename> | |
| 871 | + <update>Y</update> | |
| 872 | + </value> | |
| 873 | + <value> | |
| 874 | + <name>ttinfo</name> | |
| 875 | + <rename>ttid</rename> | |
| 876 | + <update>Y</update> | |
| 877 | + </value> | |
| 878 | + <value> | |
| 879 | + <name>xl</name> | |
| 880 | + <rename>xlid</rename> | |
| 881 | + <update>Y</update> | |
| 882 | + </value> | |
| 883 | + <value> | |
| 884 | + <name>qdz</name> | |
| 885 | + <rename>qdzid</rename> | |
| 886 | + <update>Y</update> | |
| 887 | + </value> | |
| 888 | + <value> | |
| 889 | + <name>zdz</name> | |
| 890 | + <rename>zdzid</rename> | |
| 891 | + <update>Y</update> | |
| 892 | + </value> | |
| 893 | + <value> | |
| 894 | + <name>xl_dir</name> | |
| 895 | + <rename>sxx</rename> | |
| 896 | + <update>Y</update> | |
| 897 | + </value> | |
| 898 | + <value> | |
| 899 | + <name>isfb</name> | |
| 900 | + <rename>isfb</rename> | |
| 901 | + <update>Y</update> | |
| 902 | + </value> | |
| 903 | + </lookup> | |
| 904 | + <cluster_schema/> | |
| 905 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 906 | + <xloc>143</xloc> | |
| 907 | + <yloc>860</yloc> | |
| 908 | + <draw>Y</draw> | |
| 909 | + </GUI> | |
| 910 | + </step> | |
| 911 | + | |
| 912 | + <step> | |
| 913 | + <name>插入/更新bsth_c_s_ttinfo_detail 2</name> | |
| 914 | + <type>InsertUpdate</type> | |
| 915 | + <description/> | |
| 916 | + <distribute>Y</distribute> | |
| 917 | + <custom_distribution/> | |
| 918 | + <copies>1</copies> | |
| 919 | + <partitioning> | |
| 920 | + <method>none</method> | |
| 921 | + <schema_name/> | |
| 922 | + </partitioning> | |
| 923 | + <connection>bus_control_variable</connection> | |
| 924 | + <commit>100</commit> | |
| 925 | + <update_bypassed>N</update_bypassed> | |
| 926 | + <lookup> | |
| 927 | + <schema/> | |
| 928 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 929 | + <key> | |
| 930 | + <name>xlid</name> | |
| 931 | + <field>xl</field> | |
| 932 | + <condition>=</condition> | |
| 933 | + <name2/> | |
| 934 | + </key> | |
| 935 | + <key> | |
| 936 | + <name>ttid</name> | |
| 937 | + <field>ttinfo</field> | |
| 938 | + <condition>=</condition> | |
| 939 | + <name2/> | |
| 940 | + </key> | |
| 941 | + <key> | |
| 942 | + <name>lpid</name> | |
| 943 | + <field>lp</field> | |
| 944 | + <condition>=</condition> | |
| 945 | + <name2/> | |
| 946 | + </key> | |
| 947 | + <key> | |
| 948 | + <name>fcno</name> | |
| 949 | + <field>fcno</field> | |
| 950 | + <condition>=</condition> | |
| 951 | + <name2/> | |
| 952 | + </key> | |
| 953 | + <key> | |
| 954 | + <name>bcs</name> | |
| 955 | + <field>bcs</field> | |
| 956 | + <condition>=</condition> | |
| 957 | + <name2/> | |
| 958 | + </key> | |
| 959 | + <value> | |
| 960 | + <name>tcc</name> | |
| 961 | + <rename>qdzid</rename> | |
| 962 | + <update>Y</update> | |
| 963 | + </value> | |
| 964 | + <value> | |
| 965 | + <name>zdz</name> | |
| 966 | + <rename>zdzid</rename> | |
| 967 | + <update>Y</update> | |
| 968 | + </value> | |
| 969 | + <value> | |
| 970 | + <name>xl</name> | |
| 971 | + <rename>xlid</rename> | |
| 972 | + <update>Y</update> | |
| 973 | + </value> | |
| 974 | + <value> | |
| 975 | + <name>ttinfo</name> | |
| 976 | + <rename>ttid</rename> | |
| 977 | + <update>Y</update> | |
| 978 | + </value> | |
| 979 | + <value> | |
| 980 | + <name>xl_dir</name> | |
| 981 | + <rename>sxx</rename> | |
| 982 | + <update>Y</update> | |
| 983 | + </value> | |
| 984 | + <value> | |
| 985 | + <name>lp</name> | |
| 986 | + <rename>lpid</rename> | |
| 987 | + <update>Y</update> | |
| 988 | + </value> | |
| 989 | + <value> | |
| 990 | + <name>jhlc</name> | |
| 991 | + <rename>out_mileage</rename> | |
| 992 | + <update>Y</update> | |
| 993 | + </value> | |
| 994 | + <value> | |
| 995 | + <name>fcsj</name> | |
| 996 | + <rename>sendtime_calcu</rename> | |
| 997 | + <update>Y</update> | |
| 998 | + </value> | |
| 999 | + <value> | |
| 1000 | + <name>bcsj</name> | |
| 1001 | + <rename>out_time</rename> | |
| 1002 | + <update>Y</update> | |
| 1003 | + </value> | |
| 1004 | + <value> | |
| 1005 | + <name>bcs</name> | |
| 1006 | + <rename>bcs</rename> | |
| 1007 | + <update>Y</update> | |
| 1008 | + </value> | |
| 1009 | + <value> | |
| 1010 | + <name>fcno</name> | |
| 1011 | + <rename>fcno</rename> | |
| 1012 | + <update>Y</update> | |
| 1013 | + </value> | |
| 1014 | + <value> | |
| 1015 | + <name>bc_type</name> | |
| 1016 | + <rename>bctype_code</rename> | |
| 1017 | + <update>Y</update> | |
| 1018 | + </value> | |
| 1019 | + <value> | |
| 1020 | + <name>isfb</name> | |
| 1021 | + <rename>isfb</rename> | |
| 1022 | + <update>Y</update> | |
| 1023 | + </value> | |
| 1024 | + </lookup> | |
| 1025 | + <cluster_schema/> | |
| 1026 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1027 | + <xloc>342</xloc> | |
| 1028 | + <yloc>1031</yloc> | |
| 1029 | + <draw>Y</draw> | |
| 1030 | + </GUI> | |
| 1031 | + </step> | |
| 1032 | + | |
| 1033 | + <step> | |
| 1034 | + <name>插入/更新bsth_c_s_ttinfo_detail 3</name> | |
| 1035 | + <type>InsertUpdate</type> | |
| 1036 | + <description/> | |
| 1037 | + <distribute>Y</distribute> | |
| 1038 | + <custom_distribution/> | |
| 1039 | + <copies>1</copies> | |
| 1040 | + <partitioning> | |
| 1041 | + <method>none</method> | |
| 1042 | + <schema_name/> | |
| 1043 | + </partitioning> | |
| 1044 | + <connection>bus_control_variable</connection> | |
| 1045 | + <commit>100</commit> | |
| 1046 | + <update_bypassed>N</update_bypassed> | |
| 1047 | + <lookup> | |
| 1048 | + <schema/> | |
| 1049 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 1050 | + <key> | |
| 1051 | + <name>xlid</name> | |
| 1052 | + <field>xl</field> | |
| 1053 | + <condition>=</condition> | |
| 1054 | + <name2/> | |
| 1055 | + </key> | |
| 1056 | + <key> | |
| 1057 | + <name>ttid</name> | |
| 1058 | + <field>ttinfo</field> | |
| 1059 | + <condition>=</condition> | |
| 1060 | + <name2/> | |
| 1061 | + </key> | |
| 1062 | + <key> | |
| 1063 | + <name>lpid</name> | |
| 1064 | + <field>lp</field> | |
| 1065 | + <condition>=</condition> | |
| 1066 | + <name2/> | |
| 1067 | + </key> | |
| 1068 | + <key> | |
| 1069 | + <name>fcno</name> | |
| 1070 | + <field>fcno</field> | |
| 1071 | + <condition>=</condition> | |
| 1072 | + <name2/> | |
| 1073 | + </key> | |
| 1074 | + <key> | |
| 1075 | + <name>bcs</name> | |
| 1076 | + <field>bcs</field> | |
| 1077 | + <condition>=</condition> | |
| 1078 | + <name2/> | |
| 1079 | + </key> | |
| 1080 | + <value> | |
| 1081 | + <name>fcno</name> | |
| 1082 | + <rename>fcno</rename> | |
| 1083 | + <update>Y</update> | |
| 1084 | + </value> | |
| 1085 | + <value> | |
| 1086 | + <name>bcs</name> | |
| 1087 | + <rename>bcs</rename> | |
| 1088 | + <update>Y</update> | |
| 1089 | + </value> | |
| 1090 | + <value> | |
| 1091 | + <name>xl</name> | |
| 1092 | + <rename>xlid</rename> | |
| 1093 | + <update>Y</update> | |
| 1094 | + </value> | |
| 1095 | + <value> | |
| 1096 | + <name>ttinfo</name> | |
| 1097 | + <rename>ttid</rename> | |
| 1098 | + <update>Y</update> | |
| 1099 | + </value> | |
| 1100 | + <value> | |
| 1101 | + <name>lp</name> | |
| 1102 | + <rename>lpid</rename> | |
| 1103 | + <update>Y</update> | |
| 1104 | + </value> | |
| 1105 | + <value> | |
| 1106 | + <name>bc_type</name> | |
| 1107 | + <rename>bctype_code</rename> | |
| 1108 | + <update>Y</update> | |
| 1109 | + </value> | |
| 1110 | + <value> | |
| 1111 | + <name>bcsj</name> | |
| 1112 | + <rename>parade_time</rename> | |
| 1113 | + <update>Y</update> | |
| 1114 | + </value> | |
| 1115 | + <value> | |
| 1116 | + <name>jhlc</name> | |
| 1117 | + <rename>parade_mileage</rename> | |
| 1118 | + <update>Y</update> | |
| 1119 | + </value> | |
| 1120 | + <value> | |
| 1121 | + <name>fcsj</name> | |
| 1122 | + <rename>sendtime_calcu</rename> | |
| 1123 | + <update>Y</update> | |
| 1124 | + </value> | |
| 1125 | + <value> | |
| 1126 | + <name>xl_dir</name> | |
| 1127 | + <rename>sxx2</rename> | |
| 1128 | + <update>Y</update> | |
| 1129 | + </value> | |
| 1130 | + <value> | |
| 1131 | + <name>qdz</name> | |
| 1132 | + <rename>qdzid</rename> | |
| 1133 | + <update>Y</update> | |
| 1134 | + </value> | |
| 1135 | + <value> | |
| 1136 | + <name>tcc</name> | |
| 1137 | + <rename>zdzid</rename> | |
| 1138 | + <update>Y</update> | |
| 1139 | + </value> | |
| 1140 | + <value> | |
| 1141 | + <name>isfb</name> | |
| 1142 | + <rename>isfb</rename> | |
| 1143 | + <update>Y</update> | |
| 1144 | + </value> | |
| 1145 | + </lookup> | |
| 1146 | + <cluster_schema/> | |
| 1147 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1148 | + <xloc>875</xloc> | |
| 1149 | + <yloc>887</yloc> | |
| 1150 | + <draw>Y</draw> | |
| 1151 | + </GUI> | |
| 1152 | + </step> | |
| 1153 | + | |
| 1154 | + <step> | |
| 1155 | + <name>时刻表明细信息Excel输入</name> | |
| 1156 | + <type>ExcelInput</type> | |
| 1157 | + <description/> | |
| 1158 | + <distribute>Y</distribute> | |
| 1159 | + <custom_distribution/> | |
| 1160 | + <copies>1</copies> | |
| 1161 | + <partitioning> | |
| 1162 | + <method>none</method> | |
| 1163 | + <schema_name/> | |
| 1164 | + </partitioning> | |
| 1165 | + <header>Y</header> | |
| 1166 | + <noempty>Y</noempty> | |
| 1167 | + <stoponempty>N</stoponempty> | |
| 1168 | + <filefield/> | |
| 1169 | + <sheetfield/> | |
| 1170 | + <sheetrownumfield/> | |
| 1171 | + <rownumfield/> | |
| 1172 | + <sheetfield/> | |
| 1173 | + <filefield/> | |
| 1174 | + <limit>0</limit> | |
| 1175 | + <encoding/> | |
| 1176 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1177 | + <accept_filenames>N</accept_filenames> | |
| 1178 | + <accept_field/> | |
| 1179 | + <accept_stepname/> | |
| 1180 | + <file> | |
| 1181 | + <name/> | |
| 1182 | + <filemask/> | |
| 1183 | + <exclude_filemask/> | |
| 1184 | + <file_required>N</file_required> | |
| 1185 | + <include_subfolders>N</include_subfolders> | |
| 1186 | + </file> | |
| 1187 | + <fields> | |
| 1188 | + </fields> | |
| 1189 | + <sheets> | |
| 1190 | + <sheet> | |
| 1191 | + <name/> | |
| 1192 | + <startrow>0</startrow> | |
| 1193 | + <startcol>0</startcol> | |
| 1194 | + </sheet> | |
| 1195 | + </sheets> | |
| 1196 | + <strict_types>N</strict_types> | |
| 1197 | + <error_ignored>N</error_ignored> | |
| 1198 | + <error_line_skipped>N</error_line_skipped> | |
| 1199 | + <bad_line_files_destination_directory/> | |
| 1200 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 1201 | + <error_line_files_destination_directory/> | |
| 1202 | + <error_line_files_extension>error</error_line_files_extension> | |
| 1203 | + <line_number_files_destination_directory/> | |
| 1204 | + <line_number_files_extension>line</line_number_files_extension> | |
| 1205 | + <shortFileFieldName/> | |
| 1206 | + <pathFieldName/> | |
| 1207 | + <hiddenFieldName/> | |
| 1208 | + <lastModificationTimeFieldName/> | |
| 1209 | + <uriNameFieldName/> | |
| 1210 | + <rootUriNameFieldName/> | |
| 1211 | + <extensionFieldName/> | |
| 1212 | + <sizeFieldName/> | |
| 1213 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 1214 | + <cluster_schema/> | |
| 1215 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1216 | + <xloc>112</xloc> | |
| 1217 | + <yloc>44</yloc> | |
| 1218 | + <draw>Y</draw> | |
| 1219 | + </GUI> | |
| 1220 | + </step> | |
| 1221 | + | |
| 1222 | + <step> | |
| 1223 | + <name>查找停车场1</name> | |
| 1224 | + <type>DBLookup</type> | |
| 1225 | + <description/> | |
| 1226 | + <distribute>Y</distribute> | |
| 1227 | + <custom_distribution/> | |
| 1228 | + <copies>1</copies> | |
| 1229 | + <partitioning> | |
| 1230 | + <method>none</method> | |
| 1231 | + <schema_name/> | |
| 1232 | + </partitioning> | |
| 1233 | + <connection>bus_control_variable</connection> | |
| 1234 | + <cache>N</cache> | |
| 1235 | + <cache_load_all>N</cache_load_all> | |
| 1236 | + <cache_size>0</cache_size> | |
| 1237 | + <lookup> | |
| 1238 | + <schema/> | |
| 1239 | + <table>bsth_c_car_park</table> | |
| 1240 | + <orderby/> | |
| 1241 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1242 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1243 | + <key> | |
| 1244 | + <name>tccname_</name> | |
| 1245 | + <field>park_name</field> | |
| 1246 | + <condition>=</condition> | |
| 1247 | + <name2/> | |
| 1248 | + </key> | |
| 1249 | + <value> | |
| 1250 | + <name>id</name> | |
| 1251 | + <rename>qdzid</rename> | |
| 1252 | + <default/> | |
| 1253 | + <type>Integer</type> | |
| 1254 | + </value> | |
| 1255 | + </lookup> | |
| 1256 | + <cluster_schema/> | |
| 1257 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1258 | + <xloc>755</xloc> | |
| 1259 | + <yloc>504</yloc> | |
| 1260 | + <draw>Y</draw> | |
| 1261 | + </GUI> | |
| 1262 | + </step> | |
| 1263 | + | |
| 1264 | + <step> | |
| 1265 | + <name>查找停车场2</name> | |
| 1266 | + <type>DBLookup</type> | |
| 1267 | + <description/> | |
| 1268 | + <distribute>Y</distribute> | |
| 1269 | + <custom_distribution/> | |
| 1270 | + <copies>1</copies> | |
| 1271 | + <partitioning> | |
| 1272 | + <method>none</method> | |
| 1273 | + <schema_name/> | |
| 1274 | + </partitioning> | |
| 1275 | + <connection>bus_control_variable</connection> | |
| 1276 | + <cache>N</cache> | |
| 1277 | + <cache_load_all>N</cache_load_all> | |
| 1278 | + <cache_size>0</cache_size> | |
| 1279 | + <lookup> | |
| 1280 | + <schema/> | |
| 1281 | + <table>bsth_c_car_park</table> | |
| 1282 | + <orderby/> | |
| 1283 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1284 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1285 | + <key> | |
| 1286 | + <name>tccname_</name> | |
| 1287 | + <field>park_name</field> | |
| 1288 | + <condition>=</condition> | |
| 1289 | + <name2/> | |
| 1290 | + </key> | |
| 1291 | + <value> | |
| 1292 | + <name>id</name> | |
| 1293 | + <rename>zdzid</rename> | |
| 1294 | + <default/> | |
| 1295 | + <type>Integer</type> | |
| 1296 | + </value> | |
| 1297 | + </lookup> | |
| 1298 | + <cluster_schema/> | |
| 1299 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1300 | + <xloc>887</xloc> | |
| 1301 | + <yloc>608</yloc> | |
| 1302 | + <draw>Y</draw> | |
| 1303 | + </GUI> | |
| 1304 | + </step> | |
| 1305 | + | |
| 1306 | + <step> | |
| 1307 | + <name>查找出场终点站关联并确定上下行</name> | |
| 1308 | + <type>DBLookup</type> | |
| 1309 | + <description/> | |
| 1310 | + <distribute>Y</distribute> | |
| 1311 | + <custom_distribution/> | |
| 1312 | + <copies>1</copies> | |
| 1313 | + <partitioning> | |
| 1314 | + <method>none</method> | |
| 1315 | + <schema_name/> | |
| 1316 | + </partitioning> | |
| 1317 | + <connection>bus_control_variable</connection> | |
| 1318 | + <cache>N</cache> | |
| 1319 | + <cache_load_all>N</cache_load_all> | |
| 1320 | + <cache_size>0</cache_size> | |
| 1321 | + <lookup> | |
| 1322 | + <schema/> | |
| 1323 | + <table>bsth_c_stationroute</table> | |
| 1324 | + <orderby/> | |
| 1325 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1326 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1327 | + <key> | |
| 1328 | + <name>xlid</name> | |
| 1329 | + <field>line</field> | |
| 1330 | + <condition>=</condition> | |
| 1331 | + <name2/> | |
| 1332 | + </key> | |
| 1333 | + <key> | |
| 1334 | + <name>zdzname</name> | |
| 1335 | + <field>station_name</field> | |
| 1336 | + <condition>=</condition> | |
| 1337 | + <name2/> | |
| 1338 | + </key> | |
| 1339 | + <key> | |
| 1340 | + <name>endZdtype</name> | |
| 1341 | + <field>station_mark</field> | |
| 1342 | + <condition>=</condition> | |
| 1343 | + <name2/> | |
| 1344 | + </key> | |
| 1345 | + <value> | |
| 1346 | + <name>station</name> | |
| 1347 | + <rename>zdzid</rename> | |
| 1348 | + <default/> | |
| 1349 | + <type>Integer</type> | |
| 1350 | + </value> | |
| 1351 | + <value> | |
| 1352 | + <name>directions</name> | |
| 1353 | + <rename>sxx</rename> | |
| 1354 | + <default/> | |
| 1355 | + <type>Integer</type> | |
| 1356 | + </value> | |
| 1357 | + </lookup> | |
| 1358 | + <cluster_schema/> | |
| 1359 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1360 | + <xloc>329</xloc> | |
| 1361 | + <yloc>505</yloc> | |
| 1362 | + <draw>Y</draw> | |
| 1363 | + </GUI> | |
| 1364 | + </step> | |
| 1365 | + | |
| 1366 | + <step> | |
| 1367 | + <name>查找时刻表基础信息关联</name> | |
| 1368 | + <type>DBLookup</type> | |
| 1369 | + <description/> | |
| 1370 | + <distribute>Y</distribute> | |
| 1371 | + <custom_distribution/> | |
| 1372 | + <copies>1</copies> | |
| 1373 | + <partitioning> | |
| 1374 | + <method>none</method> | |
| 1375 | + <schema_name/> | |
| 1376 | + </partitioning> | |
| 1377 | + <connection>bus_control_variable</connection> | |
| 1378 | + <cache>N</cache> | |
| 1379 | + <cache_load_all>N</cache_load_all> | |
| 1380 | + <cache_size>0</cache_size> | |
| 1381 | + <lookup> | |
| 1382 | + <schema/> | |
| 1383 | + <table>bsth_c_s_ttinfo</table> | |
| 1384 | + <orderby/> | |
| 1385 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1386 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1387 | + <key> | |
| 1388 | + <name>xlid</name> | |
| 1389 | + <field>xl</field> | |
| 1390 | + <condition>=</condition> | |
| 1391 | + <name2/> | |
| 1392 | + </key> | |
| 1393 | + <key> | |
| 1394 | + <name>ttinfoname_</name> | |
| 1395 | + <field>name</field> | |
| 1396 | + <condition>=</condition> | |
| 1397 | + <name2/> | |
| 1398 | + </key> | |
| 1399 | + <key> | |
| 1400 | + <name>iscanceled</name> | |
| 1401 | + <field>is_cancel</field> | |
| 1402 | + <condition>=</condition> | |
| 1403 | + <name2/> | |
| 1404 | + </key> | |
| 1405 | + <value> | |
| 1406 | + <name>id</name> | |
| 1407 | + <rename>ttid</rename> | |
| 1408 | + <default/> | |
| 1409 | + <type>Integer</type> | |
| 1410 | + </value> | |
| 1411 | + </lookup> | |
| 1412 | + <cluster_schema/> | |
| 1413 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1414 | + <xloc>1011</xloc> | |
| 1415 | + <yloc>134</yloc> | |
| 1416 | + <draw>Y</draw> | |
| 1417 | + </GUI> | |
| 1418 | + </step> | |
| 1419 | + | |
| 1420 | + <step> | |
| 1421 | + <name>查找线路上下行里程时间</name> | |
| 1422 | + <type>DBLookup</type> | |
| 1423 | + <description/> | |
| 1424 | + <distribute>Y</distribute> | |
| 1425 | + <custom_distribution/> | |
| 1426 | + <copies>1</copies> | |
| 1427 | + <partitioning> | |
| 1428 | + <method>none</method> | |
| 1429 | + <schema_name/> | |
| 1430 | + </partitioning> | |
| 1431 | + <connection>bus_control_variable</connection> | |
| 1432 | + <cache>N</cache> | |
| 1433 | + <cache_load_all>N</cache_load_all> | |
| 1434 | + <cache_size>0</cache_size> | |
| 1435 | + <lookup> | |
| 1436 | + <schema/> | |
| 1437 | + <table>bsth_c_line_information</table> | |
| 1438 | + <orderby/> | |
| 1439 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1440 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1441 | + <key> | |
| 1442 | + <name>xlid</name> | |
| 1443 | + <field>line</field> | |
| 1444 | + <condition>=</condition> | |
| 1445 | + <name2/> | |
| 1446 | + </key> | |
| 1447 | + <value> | |
| 1448 | + <name>up_mileage</name> | |
| 1449 | + <rename>up_mileage</rename> | |
| 1450 | + <default/> | |
| 1451 | + <type>Number</type> | |
| 1452 | + </value> | |
| 1453 | + <value> | |
| 1454 | + <name>down_mileage</name> | |
| 1455 | + <rename>down_mileage</rename> | |
| 1456 | + <default/> | |
| 1457 | + <type>Number</type> | |
| 1458 | + </value> | |
| 1459 | + <value> | |
| 1460 | + <name>up_travel_time</name> | |
| 1461 | + <rename>up_travel_time</rename> | |
| 1462 | + <default/> | |
| 1463 | + <type>Number</type> | |
| 1464 | + </value> | |
| 1465 | + <value> | |
| 1466 | + <name>down_travel_time</name> | |
| 1467 | + <rename>down_travel_time</rename> | |
| 1468 | + <default/> | |
| 1469 | + <type>Number</type> | |
| 1470 | + </value> | |
| 1471 | + </lookup> | |
| 1472 | + <cluster_schema/> | |
| 1473 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1474 | + <xloc>149</xloc> | |
| 1475 | + <yloc>581</yloc> | |
| 1476 | + <draw>Y</draw> | |
| 1477 | + </GUI> | |
| 1478 | + </step> | |
| 1479 | + | |
| 1480 | + <step> | |
| 1481 | + <name>查找线路关联</name> | |
| 1482 | + <type>DBLookup</type> | |
| 1483 | + <description/> | |
| 1484 | + <distribute>Y</distribute> | |
| 1485 | + <custom_distribution/> | |
| 1486 | + <copies>1</copies> | |
| 1487 | + <partitioning> | |
| 1488 | + <method>none</method> | |
| 1489 | + <schema_name/> | |
| 1490 | + </partitioning> | |
| 1491 | + <connection>bus_control_variable</connection> | |
| 1492 | + <cache>N</cache> | |
| 1493 | + <cache_load_all>N</cache_load_all> | |
| 1494 | + <cache_size>0</cache_size> | |
| 1495 | + <lookup> | |
| 1496 | + <schema/> | |
| 1497 | + <table>bsth_c_line</table> | |
| 1498 | + <orderby/> | |
| 1499 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1500 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1501 | + <key> | |
| 1502 | + <name>xlname_</name> | |
| 1503 | + <field>name</field> | |
| 1504 | + <condition>=</condition> | |
| 1505 | + <name2/> | |
| 1506 | + </key> | |
| 1507 | + <value> | |
| 1508 | + <name>id</name> | |
| 1509 | + <rename>xlid</rename> | |
| 1510 | + <default/> | |
| 1511 | + <type>Integer</type> | |
| 1512 | + </value> | |
| 1513 | + </lookup> | |
| 1514 | + <cluster_schema/> | |
| 1515 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1516 | + <xloc>1007</xloc> | |
| 1517 | + <yloc>43</yloc> | |
| 1518 | + <draw>Y</draw> | |
| 1519 | + </GUI> | |
| 1520 | + </step> | |
| 1521 | + | |
| 1522 | + <step> | |
| 1523 | + <name>查找线路出场里程时间</name> | |
| 1524 | + <type>DBLookup</type> | |
| 1525 | + <description/> | |
| 1526 | + <distribute>Y</distribute> | |
| 1527 | + <custom_distribution/> | |
| 1528 | + <copies>1</copies> | |
| 1529 | + <partitioning> | |
| 1530 | + <method>none</method> | |
| 1531 | + <schema_name/> | |
| 1532 | + </partitioning> | |
| 1533 | + <connection>bus_control_variable</connection> | |
| 1534 | + <cache>N</cache> | |
| 1535 | + <cache_load_all>N</cache_load_all> | |
| 1536 | + <cache_size>0</cache_size> | |
| 1537 | + <lookup> | |
| 1538 | + <schema/> | |
| 1539 | + <table>bsth_c_line_information</table> | |
| 1540 | + <orderby/> | |
| 1541 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1542 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1543 | + <key> | |
| 1544 | + <name>xlid</name> | |
| 1545 | + <field>line</field> | |
| 1546 | + <condition>=</condition> | |
| 1547 | + <name2/> | |
| 1548 | + </key> | |
| 1549 | + <value> | |
| 1550 | + <name>up_out_timer</name> | |
| 1551 | + <rename>up_out_timer</rename> | |
| 1552 | + <default/> | |
| 1553 | + <type>Number</type> | |
| 1554 | + </value> | |
| 1555 | + <value> | |
| 1556 | + <name>up_out_mileage</name> | |
| 1557 | + <rename>up_out_mileage</rename> | |
| 1558 | + <default/> | |
| 1559 | + <type>Number</type> | |
| 1560 | + </value> | |
| 1561 | + <value> | |
| 1562 | + <name>down_out_timer</name> | |
| 1563 | + <rename>down_out_timer</rename> | |
| 1564 | + <default/> | |
| 1565 | + <type>Number</type> | |
| 1566 | + </value> | |
| 1567 | + <value> | |
| 1568 | + <name>down_out_mileage</name> | |
| 1569 | + <rename>down_out_mileage</rename> | |
| 1570 | + <default/> | |
| 1571 | + <type>Number</type> | |
| 1572 | + </value> | |
| 1573 | + </lookup> | |
| 1574 | + <cluster_schema/> | |
| 1575 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1576 | + <xloc>335</xloc> | |
| 1577 | + <yloc>763</yloc> | |
| 1578 | + <draw>Y</draw> | |
| 1579 | + </GUI> | |
| 1580 | + </step> | |
| 1581 | + | |
| 1582 | + <step> | |
| 1583 | + <name>查找线路进场里程时间</name> | |
| 1584 | + <type>DBLookup</type> | |
| 1585 | + <description/> | |
| 1586 | + <distribute>Y</distribute> | |
| 1587 | + <custom_distribution/> | |
| 1588 | + <copies>1</copies> | |
| 1589 | + <partitioning> | |
| 1590 | + <method>none</method> | |
| 1591 | + <schema_name/> | |
| 1592 | + </partitioning> | |
| 1593 | + <connection>bus_control_variable</connection> | |
| 1594 | + <cache>N</cache> | |
| 1595 | + <cache_load_all>N</cache_load_all> | |
| 1596 | + <cache_size>0</cache_size> | |
| 1597 | + <lookup> | |
| 1598 | + <schema/> | |
| 1599 | + <table>bsth_c_line_information</table> | |
| 1600 | + <orderby/> | |
| 1601 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1602 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1603 | + <key> | |
| 1604 | + <name>xlid</name> | |
| 1605 | + <field>line</field> | |
| 1606 | + <condition>=</condition> | |
| 1607 | + <name2/> | |
| 1608 | + </key> | |
| 1609 | + <value> | |
| 1610 | + <name>up_in_mileage</name> | |
| 1611 | + <rename>up_in_mileage</rename> | |
| 1612 | + <default/> | |
| 1613 | + <type>Number</type> | |
| 1614 | + </value> | |
| 1615 | + <value> | |
| 1616 | + <name>up_in_timer</name> | |
| 1617 | + <rename>up_in_timer</rename> | |
| 1618 | + <default/> | |
| 1619 | + <type>Number</type> | |
| 1620 | + </value> | |
| 1621 | + <value> | |
| 1622 | + <name>down_in_mileage</name> | |
| 1623 | + <rename>down_in_mileage</rename> | |
| 1624 | + <default/> | |
| 1625 | + <type>Number</type> | |
| 1626 | + </value> | |
| 1627 | + <value> | |
| 1628 | + <name>down_in_timer</name> | |
| 1629 | + <rename>down_in_timer</rename> | |
| 1630 | + <default/> | |
| 1631 | + <type>Number</type> | |
| 1632 | + </value> | |
| 1633 | + </lookup> | |
| 1634 | + <cluster_schema/> | |
| 1635 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1636 | + <xloc>553</xloc> | |
| 1637 | + <yloc>1004</yloc> | |
| 1638 | + <draw>Y</draw> | |
| 1639 | + </GUI> | |
| 1640 | + </step> | |
| 1641 | + | |
| 1642 | + <step> | |
| 1643 | + <name>查找终点站关联</name> | |
| 1644 | + <type>DBLookup</type> | |
| 1645 | + <description/> | |
| 1646 | + <distribute>Y</distribute> | |
| 1647 | + <custom_distribution/> | |
| 1648 | + <copies>1</copies> | |
| 1649 | + <partitioning> | |
| 1650 | + <method>none</method> | |
| 1651 | + <schema_name/> | |
| 1652 | + </partitioning> | |
| 1653 | + <connection>bus_control_variable</connection> | |
| 1654 | + <cache>N</cache> | |
| 1655 | + <cache_load_all>N</cache_load_all> | |
| 1656 | + <cache_size>0</cache_size> | |
| 1657 | + <lookup> | |
| 1658 | + <schema/> | |
| 1659 | + <table>bsth_c_stationroute</table> | |
| 1660 | + <orderby/> | |
| 1661 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1662 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1663 | + <key> | |
| 1664 | + <name>xlid</name> | |
| 1665 | + <field>line</field> | |
| 1666 | + <condition>=</condition> | |
| 1667 | + <name2/> | |
| 1668 | + </key> | |
| 1669 | + <key> | |
| 1670 | + <name>sxx</name> | |
| 1671 | + <field>directions</field> | |
| 1672 | + <condition>=</condition> | |
| 1673 | + <name2/> | |
| 1674 | + </key> | |
| 1675 | + <key> | |
| 1676 | + <name>endZdtype</name> | |
| 1677 | + <field>station_mark</field> | |
| 1678 | + <condition>=</condition> | |
| 1679 | + <name2/> | |
| 1680 | + </key> | |
| 1681 | + <value> | |
| 1682 | + <name>station_name</name> | |
| 1683 | + <rename>zdzname</rename> | |
| 1684 | + <default/> | |
| 1685 | + <type>String</type> | |
| 1686 | + </value> | |
| 1687 | + <value> | |
| 1688 | + <name>station</name> | |
| 1689 | + <rename>zdzid</rename> | |
| 1690 | + <default/> | |
| 1691 | + <type>Integer</type> | |
| 1692 | + </value> | |
| 1693 | + </lookup> | |
| 1694 | + <cluster_schema/> | |
| 1695 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1696 | + <xloc>280</xloc> | |
| 1697 | + <yloc>404</yloc> | |
| 1698 | + <draw>Y</draw> | |
| 1699 | + </GUI> | |
| 1700 | + </step> | |
| 1701 | + | |
| 1702 | + <step> | |
| 1703 | + <name>查找起点站关联并确定上下行</name> | |
| 1704 | + <type>DBLookup</type> | |
| 1705 | + <description/> | |
| 1706 | + <distribute>Y</distribute> | |
| 1707 | + <custom_distribution/> | |
| 1708 | + <copies>1</copies> | |
| 1709 | + <partitioning> | |
| 1710 | + <method>none</method> | |
| 1711 | + <schema_name/> | |
| 1712 | + </partitioning> | |
| 1713 | + <connection>bus_control_variable</connection> | |
| 1714 | + <cache>N</cache> | |
| 1715 | + <cache_load_all>N</cache_load_all> | |
| 1716 | + <cache_size>0</cache_size> | |
| 1717 | + <lookup> | |
| 1718 | + <schema/> | |
| 1719 | + <table>bsth_c_stationroute</table> | |
| 1720 | + <orderby/> | |
| 1721 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1722 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1723 | + <key> | |
| 1724 | + <name>xlid</name> | |
| 1725 | + <field>line</field> | |
| 1726 | + <condition>=</condition> | |
| 1727 | + <name2/> | |
| 1728 | + </key> | |
| 1729 | + <key> | |
| 1730 | + <name>qdzname</name> | |
| 1731 | + <field>station_name</field> | |
| 1732 | + <condition>=</condition> | |
| 1733 | + <name2/> | |
| 1734 | + </key> | |
| 1735 | + <key> | |
| 1736 | + <name>sendZdtype</name> | |
| 1737 | + <field>station_mark</field> | |
| 1738 | + <condition>=</condition> | |
| 1739 | + <name2/> | |
| 1740 | + </key> | |
| 1741 | + <value> | |
| 1742 | + <name>station</name> | |
| 1743 | + <rename>qdzid</rename> | |
| 1744 | + <default/> | |
| 1745 | + <type>Integer</type> | |
| 1746 | + </value> | |
| 1747 | + <value> | |
| 1748 | + <name>directions</name> | |
| 1749 | + <rename>sxx</rename> | |
| 1750 | + <default/> | |
| 1751 | + <type>Integer</type> | |
| 1752 | + </value> | |
| 1753 | + </lookup> | |
| 1754 | + <cluster_schema/> | |
| 1755 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1756 | + <xloc>430</xloc> | |
| 1757 | + <yloc>403</yloc> | |
| 1758 | + <draw>Y</draw> | |
| 1759 | + </GUI> | |
| 1760 | + </step> | |
| 1761 | + | |
| 1762 | + <step> | |
| 1763 | + <name>查找路牌关联</name> | |
| 1764 | + <type>DBLookup</type> | |
| 1765 | + <description/> | |
| 1766 | + <distribute>Y</distribute> | |
| 1767 | + <custom_distribution/> | |
| 1768 | + <copies>1</copies> | |
| 1769 | + <partitioning> | |
| 1770 | + <method>none</method> | |
| 1771 | + <schema_name/> | |
| 1772 | + </partitioning> | |
| 1773 | + <connection>bus_control_variable</connection> | |
| 1774 | + <cache>N</cache> | |
| 1775 | + <cache_load_all>N</cache_load_all> | |
| 1776 | + <cache_size>0</cache_size> | |
| 1777 | + <lookup> | |
| 1778 | + <schema/> | |
| 1779 | + <table>bsth_c_s_gbi</table> | |
| 1780 | + <orderby/> | |
| 1781 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1782 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1783 | + <key> | |
| 1784 | + <name>xlid</name> | |
| 1785 | + <field>xl</field> | |
| 1786 | + <condition>=</condition> | |
| 1787 | + <name2/> | |
| 1788 | + </key> | |
| 1789 | + <key> | |
| 1790 | + <name>lp</name> | |
| 1791 | + <field>lp_name</field> | |
| 1792 | + <condition>=</condition> | |
| 1793 | + <name2/> | |
| 1794 | + </key> | |
| 1795 | + <value> | |
| 1796 | + <name>id</name> | |
| 1797 | + <rename>lpid</rename> | |
| 1798 | + <default/> | |
| 1799 | + <type>Integer</type> | |
| 1800 | + </value> | |
| 1801 | + </lookup> | |
| 1802 | + <cluster_schema/> | |
| 1803 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1804 | + <xloc>1013</xloc> | |
| 1805 | + <yloc>265</yloc> | |
| 1806 | + <draw>Y</draw> | |
| 1807 | + </GUI> | |
| 1808 | + </step> | |
| 1809 | + | |
| 1810 | + <step> | |
| 1811 | + <name>查找进场班次上一个班次的线路方向</name> | |
| 1812 | + <type>DBLookup</type> | |
| 1813 | + <description/> | |
| 1814 | + <distribute>Y</distribute> | |
| 1815 | + <custom_distribution/> | |
| 1816 | + <copies>1</copies> | |
| 1817 | + <partitioning> | |
| 1818 | + <method>none</method> | |
| 1819 | + <schema_name/> | |
| 1820 | + </partitioning> | |
| 1821 | + <connection>bus_control_variable</connection> | |
| 1822 | + <cache>N</cache> | |
| 1823 | + <cache_load_all>N</cache_load_all> | |
| 1824 | + <cache_size>0</cache_size> | |
| 1825 | + <lookup> | |
| 1826 | + <schema/> | |
| 1827 | + <table>bsth_c_stationroute</table> | |
| 1828 | + <orderby/> | |
| 1829 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1830 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1831 | + <key> | |
| 1832 | + <name>xlid</name> | |
| 1833 | + <field>line</field> | |
| 1834 | + <condition>=</condition> | |
| 1835 | + <name2/> | |
| 1836 | + </key> | |
| 1837 | + <key> | |
| 1838 | + <name>startZdtype_calcu</name> | |
| 1839 | + <field>station_mark</field> | |
| 1840 | + <condition>=</condition> | |
| 1841 | + <name2/> | |
| 1842 | + </key> | |
| 1843 | + <key> | |
| 1844 | + <name>qdzname_calcu</name> | |
| 1845 | + <field>station_name</field> | |
| 1846 | + <condition>=</condition> | |
| 1847 | + <name2/> | |
| 1848 | + </key> | |
| 1849 | + <value> | |
| 1850 | + <name>directions</name> | |
| 1851 | + <rename>sxx</rename> | |
| 1852 | + <default/> | |
| 1853 | + <type>String</type> | |
| 1854 | + </value> | |
| 1855 | + </lookup> | |
| 1856 | + <cluster_schema/> | |
| 1857 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1858 | + <xloc>548</xloc> | |
| 1859 | + <yloc>610</yloc> | |
| 1860 | + <draw>Y</draw> | |
| 1861 | + </GUI> | |
| 1862 | + </step> | |
| 1863 | + | |
| 1864 | + <step> | |
| 1865 | + <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 1866 | + <type>DBLookup</type> | |
| 1867 | + <description/> | |
| 1868 | + <distribute>Y</distribute> | |
| 1869 | + <custom_distribution/> | |
| 1870 | + <copies>1</copies> | |
| 1871 | + <partitioning> | |
| 1872 | + <method>none</method> | |
| 1873 | + <schema_name/> | |
| 1874 | + </partitioning> | |
| 1875 | + <connection>bus_control_variable</connection> | |
| 1876 | + <cache>N</cache> | |
| 1877 | + <cache_load_all>N</cache_load_all> | |
| 1878 | + <cache_size>0</cache_size> | |
| 1879 | + <lookup> | |
| 1880 | + <schema/> | |
| 1881 | + <table>bsth_c_stationroute</table> | |
| 1882 | + <orderby/> | |
| 1883 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1884 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1885 | + <key> | |
| 1886 | + <name>xlid</name> | |
| 1887 | + <field>line</field> | |
| 1888 | + <condition>=</condition> | |
| 1889 | + <name2/> | |
| 1890 | + </key> | |
| 1891 | + <key> | |
| 1892 | + <name>endZdtype_calcu</name> | |
| 1893 | + <field>station_mark</field> | |
| 1894 | + <condition>=</condition> | |
| 1895 | + <name2/> | |
| 1896 | + </key> | |
| 1897 | + <key> | |
| 1898 | + <name>sxx</name> | |
| 1899 | + <field>directions</field> | |
| 1900 | + <condition>=</condition> | |
| 1901 | + <name2/> | |
| 1902 | + </key> | |
| 1903 | + <value> | |
| 1904 | + <name>station_name</name> | |
| 1905 | + <rename>zdzname_calcu</rename> | |
| 1906 | + <default/> | |
| 1907 | + <type>Integer</type> | |
| 1908 | + </value> | |
| 1909 | + </lookup> | |
| 1910 | + <cluster_schema/> | |
| 1911 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1912 | + <xloc>550</xloc> | |
| 1913 | + <yloc>701</yloc> | |
| 1914 | + <draw>Y</draw> | |
| 1915 | + </GUI> | |
| 1916 | + </step> | |
| 1917 | + | |
| 1918 | + <step> | |
| 1919 | + <name>查找进场起点站关联确定上下行</name> | |
| 1920 | + <type>DBLookup</type> | |
| 1921 | + <description/> | |
| 1922 | + <distribute>Y</distribute> | |
| 1923 | + <custom_distribution/> | |
| 1924 | + <copies>1</copies> | |
| 1925 | + <partitioning> | |
| 1926 | + <method>none</method> | |
| 1927 | + <schema_name/> | |
| 1928 | + </partitioning> | |
| 1929 | + <connection>bus_control_variable</connection> | |
| 1930 | + <cache>N</cache> | |
| 1931 | + <cache_load_all>N</cache_load_all> | |
| 1932 | + <cache_size>0</cache_size> | |
| 1933 | + <lookup> | |
| 1934 | + <schema/> | |
| 1935 | + <table>bsth_c_stationroute</table> | |
| 1936 | + <orderby/> | |
| 1937 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1938 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1939 | + <key> | |
| 1940 | + <name>xlid</name> | |
| 1941 | + <field>line</field> | |
| 1942 | + <condition>=</condition> | |
| 1943 | + <name2/> | |
| 1944 | + </key> | |
| 1945 | + <key> | |
| 1946 | + <name>zdzname_calcu</name> | |
| 1947 | + <field>station_name</field> | |
| 1948 | + <condition>=</condition> | |
| 1949 | + <name2/> | |
| 1950 | + </key> | |
| 1951 | + <key> | |
| 1952 | + <name>startZdtype_calcu</name> | |
| 1953 | + <field>station_mark</field> | |
| 1954 | + <condition>=</condition> | |
| 1955 | + <name2/> | |
| 1956 | + </key> | |
| 1957 | + <value> | |
| 1958 | + <name>directions</name> | |
| 1959 | + <rename>sxx2</rename> | |
| 1960 | + <default/> | |
| 1961 | + <type>Integer</type> | |
| 1962 | + </value> | |
| 1963 | + <value> | |
| 1964 | + <name>station</name> | |
| 1965 | + <rename>qdzid</rename> | |
| 1966 | + <default/> | |
| 1967 | + <type>Integer</type> | |
| 1968 | + </value> | |
| 1969 | + </lookup> | |
| 1970 | + <cluster_schema/> | |
| 1971 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1972 | + <xloc>551</xloc> | |
| 1973 | + <yloc>782</yloc> | |
| 1974 | + <draw>Y</draw> | |
| 1975 | + </GUI> | |
| 1976 | + </step> | |
| 1977 | + | |
| 1978 | + <step> | |
| 1979 | + <name>正常班次_处理数据</name> | |
| 1980 | + <type>ScriptValueMod</type> | |
| 1981 | + <description/> | |
| 1982 | + <distribute>Y</distribute> | |
| 1983 | + <custom_distribution/> | |
| 1984 | + <copies>1</copies> | |
| 1985 | + <partitioning> | |
| 1986 | + <method>none</method> | |
| 1987 | + <schema_name/> | |
| 1988 | + </partitioning> | |
| 1989 | + <compatible>N</compatible> | |
| 1990 | + <optimizationLevel>9</optimizationLevel> | |
| 1991 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1992 | + <jsScript_name>Script 1</jsScript_name> | |
| 1993 | + <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';
</jsScript_script> | |
| 1994 | + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 1995 | + <rename>sendZdtype</rename> | |
| 1996 | + <type>String</type> | |
| 1997 | + <length>-1</length> | |
| 1998 | + <precision>-1</precision> | |
| 1999 | + <replace>N</replace> | |
| 2000 | + </field> <field> <name>endZdtype</name> | |
| 2001 | + <rename>endZdtype</rename> | |
| 2002 | + <type>String</type> | |
| 2003 | + <length>-1</length> | |
| 2004 | + <precision>-1</precision> | |
| 2005 | + <replace>N</replace> | |
| 2006 | + </field> </fields> <cluster_schema/> | |
| 2007 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2008 | + <xloc>588</xloc> | |
| 2009 | + <yloc>403</yloc> | |
| 2010 | + <draw>Y</draw> | |
| 2011 | + </GUI> | |
| 2012 | + </step> | |
| 2013 | + | |
| 2014 | + <step> | |
| 2015 | + <name>正常班次数据</name> | |
| 2016 | + <type>Dummy</type> | |
| 2017 | + <description/> | |
| 2018 | + <distribute>Y</distribute> | |
| 2019 | + <custom_distribution/> | |
| 2020 | + <copies>1</copies> | |
| 2021 | + <partitioning> | |
| 2022 | + <method>none</method> | |
| 2023 | + <schema_name/> | |
| 2024 | + </partitioning> | |
| 2025 | + <cluster_schema/> | |
| 2026 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2027 | + <xloc>725</xloc> | |
| 2028 | + <yloc>404</yloc> | |
| 2029 | + <draw>Y</draw> | |
| 2030 | + </GUI> | |
| 2031 | + </step> | |
| 2032 | + | |
| 2033 | + <step> | |
| 2034 | + <name>添加发车顺序号</name> | |
| 2035 | + <type>GroupBy</type> | |
| 2036 | + <description/> | |
| 2037 | + <distribute>Y</distribute> | |
| 2038 | + <custom_distribution/> | |
| 2039 | + <copies>1</copies> | |
| 2040 | + <partitioning> | |
| 2041 | + <method>none</method> | |
| 2042 | + <schema_name/> | |
| 2043 | + </partitioning> | |
| 2044 | + <all_rows>Y</all_rows> | |
| 2045 | + <ignore_aggregate>N</ignore_aggregate> | |
| 2046 | + <field_ignore/> | |
| 2047 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2048 | + <prefix>grp</prefix> | |
| 2049 | + <add_linenr>Y</add_linenr> | |
| 2050 | + <linenr_fieldname>fcno</linenr_fieldname> | |
| 2051 | + <give_back_row>N</give_back_row> | |
| 2052 | + <group> | |
| 2053 | + <field> | |
| 2054 | + <name>lp</name> | |
| 2055 | + </field> | |
| 2056 | + </group> | |
| 2057 | + <fields> | |
| 2058 | + </fields> | |
| 2059 | + <cluster_schema/> | |
| 2060 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2061 | + <xloc>442</xloc> | |
| 2062 | + <yloc>44</yloc> | |
| 2063 | + <draw>Y</draw> | |
| 2064 | + </GUI> | |
| 2065 | + </step> | |
| 2066 | + | |
| 2067 | + <step> | |
| 2068 | + <name>添加对应班次数</name> | |
| 2069 | + <type>GroupBy</type> | |
| 2070 | + <description/> | |
| 2071 | + <distribute>Y</distribute> | |
| 2072 | + <custom_distribution/> | |
| 2073 | + <copies>1</copies> | |
| 2074 | + <partitioning> | |
| 2075 | + <method>none</method> | |
| 2076 | + <schema_name/> | |
| 2077 | + </partitioning> | |
| 2078 | + <all_rows>Y</all_rows> | |
| 2079 | + <ignore_aggregate>N</ignore_aggregate> | |
| 2080 | + <field_ignore/> | |
| 2081 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2082 | + <prefix>grp</prefix> | |
| 2083 | + <add_linenr>Y</add_linenr> | |
| 2084 | + <linenr_fieldname>bcs</linenr_fieldname> | |
| 2085 | + <give_back_row>N</give_back_row> | |
| 2086 | + <group> | |
| 2087 | + </group> | |
| 2088 | + <fields> | |
| 2089 | + </fields> | |
| 2090 | + <cluster_schema/> | |
| 2091 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2092 | + <xloc>692</xloc> | |
| 2093 | + <yloc>44</yloc> | |
| 2094 | + <draw>Y</draw> | |
| 2095 | + </GUI> | |
| 2096 | + </step> | |
| 2097 | + | |
| 2098 | + <step> | |
| 2099 | + <name>班次数据范式化</name> | |
| 2100 | + <type>Normaliser</type> | |
| 2101 | + <description/> | |
| 2102 | + <distribute>Y</distribute> | |
| 2103 | + <custom_distribution/> | |
| 2104 | + <copies>1</copies> | |
| 2105 | + <partitioning> | |
| 2106 | + <method>none</method> | |
| 2107 | + <schema_name/> | |
| 2108 | + </partitioning> | |
| 2109 | + <typefield>站点名称</typefield> | |
| 2110 | + <fields> </fields> <cluster_schema/> | |
| 2111 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2112 | + <xloc>248</xloc> | |
| 2113 | + <yloc>44</yloc> | |
| 2114 | + <draw>Y</draw> | |
| 2115 | + </GUI> | |
| 2116 | + </step> | |
| 2117 | + | |
| 2118 | + <step> | |
| 2119 | + <name>班次类型字典</name> | |
| 2120 | + <type>ValueMapper</type> | |
| 2121 | + <description/> | |
| 2122 | + <distribute>Y</distribute> | |
| 2123 | + <custom_distribution/> | |
| 2124 | + <copies>1</copies> | |
| 2125 | + <partitioning> | |
| 2126 | + <method>none</method> | |
| 2127 | + <schema_name/> | |
| 2128 | + </partitioning> | |
| 2129 | + <field_to_use>bctype</field_to_use> | |
| 2130 | + <target_field>bctype_code</target_field> | |
| 2131 | + <non_match_default>未知类型</non_match_default> | |
| 2132 | + <fields> | |
| 2133 | + <field> | |
| 2134 | + <source_value>正常班次</source_value> | |
| 2135 | + <target_value>normal</target_value> | |
| 2136 | + </field> | |
| 2137 | + <field> | |
| 2138 | + <source_value>出场</source_value> | |
| 2139 | + <target_value>out</target_value> | |
| 2140 | + </field> | |
| 2141 | + <field> | |
| 2142 | + <source_value>进场</source_value> | |
| 2143 | + <target_value>in</target_value> | |
| 2144 | + </field> | |
| 2145 | + <field> | |
| 2146 | + <source_value>加油</source_value> | |
| 2147 | + <target_value>oil</target_value> | |
| 2148 | + </field> | |
| 2149 | + <field> | |
| 2150 | + <source_value>临加</source_value> | |
| 2151 | + <target_value>temp</target_value> | |
| 2152 | + </field> | |
| 2153 | + <field> | |
| 2154 | + <source_value>区间</source_value> | |
| 2155 | + <target_value>region</target_value> | |
| 2156 | + </field> | |
| 2157 | + <field> | |
| 2158 | + <source_value>放空</source_value> | |
| 2159 | + <target_value>venting</target_value> | |
| 2160 | + </field> | |
| 2161 | + <field> | |
| 2162 | + <source_value>放大站</source_value> | |
| 2163 | + <target_value>major</target_value> | |
| 2164 | + </field> | |
| 2165 | + </fields> | |
| 2166 | + <cluster_schema/> | |
| 2167 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2168 | + <xloc>149</xloc> | |
| 2169 | + <yloc>491</yloc> | |
| 2170 | + <draw>Y</draw> | |
| 2171 | + </GUI> | |
| 2172 | + </step> | |
| 2173 | + | |
| 2174 | + <step> | |
| 2175 | + <name>班次类型字典 2</name> | |
| 2176 | + <type>ValueMapper</type> | |
| 2177 | + <description/> | |
| 2178 | + <distribute>Y</distribute> | |
| 2179 | + <custom_distribution/> | |
| 2180 | + <copies>1</copies> | |
| 2181 | + <partitioning> | |
| 2182 | + <method>none</method> | |
| 2183 | + <schema_name/> | |
| 2184 | + </partitioning> | |
| 2185 | + <field_to_use>bctype</field_to_use> | |
| 2186 | + <target_field>bctype_code</target_field> | |
| 2187 | + <non_match_default>未知类型</non_match_default> | |
| 2188 | + <fields> | |
| 2189 | + <field> | |
| 2190 | + <source_value>正常班次</source_value> | |
| 2191 | + <target_value>normal</target_value> | |
| 2192 | + </field> | |
| 2193 | + <field> | |
| 2194 | + <source_value>出场</source_value> | |
| 2195 | + <target_value>out</target_value> | |
| 2196 | + </field> | |
| 2197 | + <field> | |
| 2198 | + <source_value>进场</source_value> | |
| 2199 | + <target_value>in</target_value> | |
| 2200 | + </field> | |
| 2201 | + <field> | |
| 2202 | + <source_value>加油</source_value> | |
| 2203 | + <target_value>oil</target_value> | |
| 2204 | + </field> | |
| 2205 | + <field> | |
| 2206 | + <source_value>临加</source_value> | |
| 2207 | + <target_value>temp</target_value> | |
| 2208 | + </field> | |
| 2209 | + <field> | |
| 2210 | + <source_value>区间</source_value> | |
| 2211 | + <target_value>region</target_value> | |
| 2212 | + </field> | |
| 2213 | + <field> | |
| 2214 | + <source_value>放空</source_value> | |
| 2215 | + <target_value>venting</target_value> | |
| 2216 | + </field> | |
| 2217 | + <field> | |
| 2218 | + <source_value>放大站</source_value> | |
| 2219 | + <target_value>major</target_value> | |
| 2220 | + </field> | |
| 2221 | + </fields> | |
| 2222 | + <cluster_schema/> | |
| 2223 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2224 | + <xloc>333</xloc> | |
| 2225 | + <yloc>681</yloc> | |
| 2226 | + <draw>Y</draw> | |
| 2227 | + </GUI> | |
| 2228 | + </step> | |
| 2229 | + | |
| 2230 | + <step> | |
| 2231 | + <name>班次类型字典 3</name> | |
| 2232 | + <type>ValueMapper</type> | |
| 2233 | + <description/> | |
| 2234 | + <distribute>Y</distribute> | |
| 2235 | + <custom_distribution/> | |
| 2236 | + <copies>1</copies> | |
| 2237 | + <partitioning> | |
| 2238 | + <method>none</method> | |
| 2239 | + <schema_name/> | |
| 2240 | + </partitioning> | |
| 2241 | + <field_to_use>bctype</field_to_use> | |
| 2242 | + <target_field>bctype_code</target_field> | |
| 2243 | + <non_match_default>未知类型</non_match_default> | |
| 2244 | + <fields> | |
| 2245 | + <field> | |
| 2246 | + <source_value>正常班次</source_value> | |
| 2247 | + <target_value>normal</target_value> | |
| 2248 | + </field> | |
| 2249 | + <field> | |
| 2250 | + <source_value>出场</source_value> | |
| 2251 | + <target_value>out</target_value> | |
| 2252 | + </field> | |
| 2253 | + <field> | |
| 2254 | + <source_value>进场</source_value> | |
| 2255 | + <target_value>in</target_value> | |
| 2256 | + </field> | |
| 2257 | + <field> | |
| 2258 | + <source_value>加油</source_value> | |
| 2259 | + <target_value>oil</target_value> | |
| 2260 | + </field> | |
| 2261 | + <field> | |
| 2262 | + <source_value>临加</source_value> | |
| 2263 | + <target_value>temp</target_value> | |
| 2264 | + </field> | |
| 2265 | + <field> | |
| 2266 | + <source_value>区间</source_value> | |
| 2267 | + <target_value>region</target_value> | |
| 2268 | + </field> | |
| 2269 | + <field> | |
| 2270 | + <source_value>放空</source_value> | |
| 2271 | + <target_value>venting</target_value> | |
| 2272 | + </field> | |
| 2273 | + <field> | |
| 2274 | + <source_value>放大站</source_value> | |
| 2275 | + <target_value>major</target_value> | |
| 2276 | + </field> | |
| 2277 | + </fields> | |
| 2278 | + <cluster_schema/> | |
| 2279 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2280 | + <xloc>551</xloc> | |
| 2281 | + <yloc>928</yloc> | |
| 2282 | + <draw>Y</draw> | |
| 2283 | + </GUI> | |
| 2284 | + </step> | |
| 2285 | + | |
| 2286 | + <step> | |
| 2287 | + <name>类型修正</name> | |
| 2288 | + <type>SelectValues</type> | |
| 2289 | + <description/> | |
| 2290 | + <distribute>Y</distribute> | |
| 2291 | + <custom_distribution/> | |
| 2292 | + <copies>1</copies> | |
| 2293 | + <partitioning> | |
| 2294 | + <method>none</method> | |
| 2295 | + <schema_name/> | |
| 2296 | + </partitioning> | |
| 2297 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2298 | + <meta> <name>jhlc</name> | |
| 2299 | + <rename>jhlc</rename> | |
| 2300 | + <type>Number</type> | |
| 2301 | + <length>-2</length> | |
| 2302 | + <precision>-2</precision> | |
| 2303 | + <conversion_mask/> | |
| 2304 | + <date_format_lenient>false</date_format_lenient> | |
| 2305 | + <date_format_locale/> | |
| 2306 | + <date_format_timezone/> | |
| 2307 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2308 | + <encoding/> | |
| 2309 | + <decimal_symbol/> | |
| 2310 | + <grouping_symbol/> | |
| 2311 | + <currency_symbol/> | |
| 2312 | + <storage_type/> | |
| 2313 | + </meta> <meta> <name>bcsj</name> | |
| 2314 | + <rename>bcsj</rename> | |
| 2315 | + <type>Integer</type> | |
| 2316 | + <length>-2</length> | |
| 2317 | + <precision>-2</precision> | |
| 2318 | + <conversion_mask/> | |
| 2319 | + <date_format_lenient>false</date_format_lenient> | |
| 2320 | + <date_format_locale/> | |
| 2321 | + <date_format_timezone/> | |
| 2322 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2323 | + <encoding/> | |
| 2324 | + <decimal_symbol/> | |
| 2325 | + <grouping_symbol/> | |
| 2326 | + <currency_symbol/> | |
| 2327 | + <storage_type/> | |
| 2328 | + </meta> </fields> <cluster_schema/> | |
| 2329 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2330 | + <xloc>146</xloc> | |
| 2331 | + <yloc>768</yloc> | |
| 2332 | + <draw>Y</draw> | |
| 2333 | + </GUI> | |
| 2334 | + </step> | |
| 2335 | + | |
| 2336 | + <step> | |
| 2337 | + <name>类型修正 2</name> | |
| 2338 | + <type>SelectValues</type> | |
| 2339 | + <description/> | |
| 2340 | + <distribute>Y</distribute> | |
| 2341 | + <custom_distribution/> | |
| 2342 | + <copies>1</copies> | |
| 2343 | + <partitioning> | |
| 2344 | + <method>none</method> | |
| 2345 | + <schema_name/> | |
| 2346 | + </partitioning> | |
| 2347 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2348 | + <meta> <name>out_mileage</name> | |
| 2349 | + <rename>out_mileage</rename> | |
| 2350 | + <type>Number</type> | |
| 2351 | + <length>-2</length> | |
| 2352 | + <precision>-2</precision> | |
| 2353 | + <conversion_mask/> | |
| 2354 | + <date_format_lenient>false</date_format_lenient> | |
| 2355 | + <date_format_locale/> | |
| 2356 | + <date_format_timezone/> | |
| 2357 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2358 | + <encoding/> | |
| 2359 | + <decimal_symbol/> | |
| 2360 | + <grouping_symbol/> | |
| 2361 | + <currency_symbol/> | |
| 2362 | + <storage_type/> | |
| 2363 | + </meta> <meta> <name>out_time</name> | |
| 2364 | + <rename>out_time</rename> | |
| 2365 | + <type>Integer</type> | |
| 2366 | + <length>-2</length> | |
| 2367 | + <precision>-2</precision> | |
| 2368 | + <conversion_mask/> | |
| 2369 | + <date_format_lenient>false</date_format_lenient> | |
| 2370 | + <date_format_locale/> | |
| 2371 | + <date_format_timezone/> | |
| 2372 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2373 | + <encoding/> | |
| 2374 | + <decimal_symbol/> | |
| 2375 | + <grouping_symbol/> | |
| 2376 | + <currency_symbol/> | |
| 2377 | + <storage_type/> | |
| 2378 | + </meta> </fields> <cluster_schema/> | |
| 2379 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2380 | + <xloc>338</xloc> | |
| 2381 | + <yloc>949</yloc> | |
| 2382 | + <draw>Y</draw> | |
| 2383 | + </GUI> | |
| 2384 | + </step> | |
| 2385 | + | |
| 2386 | + <step> | |
| 2387 | + <name>类型修正 3</name> | |
| 2388 | + <type>SelectValues</type> | |
| 2389 | + <description/> | |
| 2390 | + <distribute>Y</distribute> | |
| 2391 | + <custom_distribution/> | |
| 2392 | + <copies>1</copies> | |
| 2393 | + <partitioning> | |
| 2394 | + <method>none</method> | |
| 2395 | + <schema_name/> | |
| 2396 | + </partitioning> | |
| 2397 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2398 | + <meta> <name>parade_mileage</name> | |
| 2399 | + <rename>parade_mileage</rename> | |
| 2400 | + <type>Number</type> | |
| 2401 | + <length>-2</length> | |
| 2402 | + <precision>-2</precision> | |
| 2403 | + <conversion_mask/> | |
| 2404 | + <date_format_lenient>false</date_format_lenient> | |
| 2405 | + <date_format_locale/> | |
| 2406 | + <date_format_timezone/> | |
| 2407 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2408 | + <encoding/> | |
| 2409 | + <decimal_symbol/> | |
| 2410 | + <grouping_symbol/> | |
| 2411 | + <currency_symbol/> | |
| 2412 | + <storage_type/> | |
| 2413 | + </meta> <meta> <name>parade_time</name> | |
| 2414 | + <rename>parade_time</rename> | |
| 2415 | + <type>Integer</type> | |
| 2416 | + <length>-2</length> | |
| 2417 | + <precision>-2</precision> | |
| 2418 | + <conversion_mask/> | |
| 2419 | + <date_format_lenient>false</date_format_lenient> | |
| 2420 | + <date_format_locale/> | |
| 2421 | + <date_format_timezone/> | |
| 2422 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2423 | + <encoding/> | |
| 2424 | + <decimal_symbol/> | |
| 2425 | + <grouping_symbol/> | |
| 2426 | + <currency_symbol/> | |
| 2427 | + <storage_type/> | |
| 2428 | + </meta> </fields> <cluster_schema/> | |
| 2429 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2430 | + <xloc>875</xloc> | |
| 2431 | + <yloc>1001</yloc> | |
| 2432 | + <draw>Y</draw> | |
| 2433 | + </GUI> | |
| 2434 | + </step> | |
| 2435 | + | |
| 2436 | + <step> | |
| 2437 | + <name>计算班次类型</name> | |
| 2438 | + <type>ValueMapper</type> | |
| 2439 | + <description/> | |
| 2440 | + <distribute>Y</distribute> | |
| 2441 | + <custom_distribution/> | |
| 2442 | + <copies>1</copies> | |
| 2443 | + <partitioning> | |
| 2444 | + <method>none</method> | |
| 2445 | + <schema_name/> | |
| 2446 | + </partitioning> | |
| 2447 | + <field_to_use>qdzname</field_to_use> | |
| 2448 | + <target_field>bctype</target_field> | |
| 2449 | + <non_match_default>正常班次</non_match_default> | |
| 2450 | + <fields> | |
| 2451 | + <field> | |
| 2452 | + <source_value>出场</source_value> | |
| 2453 | + <target_value>出场</target_value> | |
| 2454 | + </field> | |
| 2455 | + <field> | |
| 2456 | + <source_value>进场</source_value> | |
| 2457 | + <target_value>进场</target_value> | |
| 2458 | + </field> | |
| 2459 | + </fields> | |
| 2460 | + <cluster_schema/> | |
| 2461 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2462 | + <xloc>1014</xloc> | |
| 2463 | + <yloc>401</yloc> | |
| 2464 | + <draw>Y</draw> | |
| 2465 | + </GUI> | |
| 2466 | + </step> | |
| 2467 | + | |
| 2468 | + <step> | |
| 2469 | + <name>记录关联 (笛卡尔输出)</name> | |
| 2470 | + <type>JoinRows</type> | |
| 2471 | + <description/> | |
| 2472 | + <distribute>Y</distribute> | |
| 2473 | + <custom_distribution/> | |
| 2474 | + <copies>1</copies> | |
| 2475 | + <partitioning> | |
| 2476 | + <method>none</method> | |
| 2477 | + <schema_name/> | |
| 2478 | + </partitioning> | |
| 2479 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2480 | + <prefix>out</prefix> | |
| 2481 | + <cache_size>500</cache_size> | |
| 2482 | + <main/> | |
| 2483 | + <compare> | |
| 2484 | +<condition> | |
| 2485 | + <negated>N</negated> | |
| 2486 | + <leftvalue/> | |
| 2487 | + <function>=</function> | |
| 2488 | + <rightvalue/> | |
| 2489 | + </condition> | |
| 2490 | + </compare> | |
| 2491 | + <cluster_schema/> | |
| 2492 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2493 | + <xloc>310</xloc> | |
| 2494 | + <yloc>133</yloc> | |
| 2495 | + <draw>Y</draw> | |
| 2496 | + </GUI> | |
| 2497 | + </step> | |
| 2498 | + | |
| 2499 | + <step> | |
| 2500 | + <name>过滤记录(发车时间为空)</name> | |
| 2501 | + <type>FilterRows</type> | |
| 2502 | + <description/> | |
| 2503 | + <distribute>Y</distribute> | |
| 2504 | + <custom_distribution/> | |
| 2505 | + <copies>1</copies> | |
| 2506 | + <partitioning> | |
| 2507 | + <method>none</method> | |
| 2508 | + <schema_name/> | |
| 2509 | + </partitioning> | |
| 2510 | +<send_true_to/> | |
| 2511 | +<send_false_to/> | |
| 2512 | + <compare> | |
| 2513 | +<condition> | |
| 2514 | + <negated>N</negated> | |
| 2515 | + <leftvalue>sendtime</leftvalue> | |
| 2516 | + <function>IS NOT NULL</function> | |
| 2517 | + <rightvalue/> | |
| 2518 | + </condition> | |
| 2519 | + </compare> | |
| 2520 | + <cluster_schema/> | |
| 2521 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2522 | + <xloc>571</xloc> | |
| 2523 | + <yloc>44</yloc> | |
| 2524 | + <draw>Y</draw> | |
| 2525 | + </GUI> | |
| 2526 | + </step> | |
| 2527 | + | |
| 2528 | + <step> | |
| 2529 | + <name>进场班次_确定起点站名字</name> | |
| 2530 | + <type>ScriptValueMod</type> | |
| 2531 | + <description/> | |
| 2532 | + <distribute>Y</distribute> | |
| 2533 | + <custom_distribution/> | |
| 2534 | + <copies>1</copies> | |
| 2535 | + <partitioning> | |
| 2536 | + <method>none</method> | |
| 2537 | + <schema_name/> | |
| 2538 | + </partitioning> | |
| 2539 | + <compatible>N</compatible> | |
| 2540 | + <optimizationLevel>9</optimizationLevel> | |
| 2541 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2542 | + <jsScript_name>Script 1</jsScript_name> | |
| 2543 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';</jsScript_script> | |
| 2544 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 2545 | + <rename>qdzname_calcu</rename> | |
| 2546 | + <type>String</type> | |
| 2547 | + <length>-1</length> | |
| 2548 | + <precision>-1</precision> | |
| 2549 | + <replace>N</replace> | |
| 2550 | + </field> <field> <name>startZdtype_calcu</name> | |
| 2551 | + <rename>startZdtype_calcu</rename> | |
| 2552 | + <type>String</type> | |
| 2553 | + <length>-1</length> | |
| 2554 | + <precision>-1</precision> | |
| 2555 | + <replace>N</replace> | |
| 2556 | + </field> <field> <name>endZdtype_calcu</name> | |
| 2557 | + <rename>endZdtype_calcu</rename> | |
| 2558 | + <type>String</type> | |
| 2559 | + <length>-1</length> | |
| 2560 | + <precision>-1</precision> | |
| 2561 | + <replace>N</replace> | |
| 2562 | + </field> </fields> <cluster_schema/> | |
| 2563 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2564 | + <xloc>754</xloc> | |
| 2565 | + <yloc>610</yloc> | |
| 2566 | + <draw>Y</draw> | |
| 2567 | + </GUI> | |
| 2568 | + </step> | |
| 2569 | + | |
| 2570 | + <step> | |
| 2571 | + <name>进场班次数据</name> | |
| 2572 | + <type>Dummy</type> | |
| 2573 | + <description/> | |
| 2574 | + <distribute>Y</distribute> | |
| 2575 | + <custom_distribution/> | |
| 2576 | + <copies>1</copies> | |
| 2577 | + <partitioning> | |
| 2578 | + <method>none</method> | |
| 2579 | + <schema_name/> | |
| 2580 | + </partitioning> | |
| 2581 | + <cluster_schema/> | |
| 2582 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2583 | + <xloc>997</xloc> | |
| 2584 | + <yloc>606</yloc> | |
| 2585 | + <draw>Y</draw> | |
| 2586 | + </GUI> | |
| 2587 | + </step> | |
| 2588 | + | |
| 2589 | + <step_error_handling> | |
| 2590 | + </step_error_handling> | |
| 2591 | + <slave-step-copy-partition-distribution> | |
| 2592 | +</slave-step-copy-partition-distribution> | |
| 2593 | + <slave_transformation>N</slave_transformation> | |
| 2594 | + | |
| 2595 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailMetaData.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>ttinfodetailMetaData</name> | |
| 5 | - <description/> | |
| 6 | - <extended_description/> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>erroroutputdir</name> | |
| 14 | - <default_value>/Users/xu/resource/project/bsth_control_u_d_files/erroroutput</default_value> | |
| 15 | - <description>ktr step配置的错误输出目录</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>excelfieldnames</name> | |
| 19 | - <default_value>路牌,出场,东川路地铁站1,塘泾路尚义路1,东川路地铁站2,塘泾路尚义路2,东川路地铁站3,塘泾路尚义路3,东川路地铁站4,塘泾路尚义路4,东川路地铁站5,塘泾路尚义路5,东川路地铁站6,塘泾路尚义路6,东川路地铁站7,塘泾路尚义路7,东川路地铁站8,塘泾路尚义路8,东川路地铁站9,塘泾路尚义路9,东川路地铁站10,塘泾路尚义路10,进场</default_value> | |
| 20 | - <description>时刻表excel输入字段名,以逗号连接</description> | |
| 21 | - </parameter> | |
| 22 | - <parameter> | |
| 23 | - <name>filepath</name> | |
| 24 | - <default_value>/Users/xu/resource/project/bsth_control_etl/闵行公交/闵行26路时刻表160630时刻表.xls</default_value> | |
| 25 | - <description>待处理导入的excel文件</description> | |
| 26 | - </parameter> | |
| 27 | - <parameter> | |
| 28 | - <name>injectktrfile</name> | |
| 29 | - <default_value>/Users/xu/resource/project/bsth_control/src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr</default_value> | |
| 30 | - <description>注入元数据的ktr文件</description> | |
| 31 | - </parameter> | |
| 32 | - <parameter> | |
| 33 | - <name>normalizefieldnames</name> | |
| 34 | - <default_value>出场,东川路地铁站1,塘泾路尚义路1,东川路地铁站2,塘泾路尚义路2,东川路地铁站3,塘泾路尚义路3,东川路地铁站4,塘泾路尚义路4,东川路地铁站5,塘泾路尚义路5,东川路地铁站6,塘泾路尚义路6,东川路地铁站7,塘泾路尚义路7,东川路地铁站8,塘泾路尚义路8,东川路地铁站9,塘泾路尚义路9,东川路地铁站10,塘泾路尚义路10,进场</default_value> | |
| 35 | - <description>数据范式化字段名,以逗号连接</description> | |
| 36 | - </parameter> | |
| 37 | - <parameter> | |
| 38 | - <name>tccname</name> | |
| 39 | - <default_value>东川路地铁站停车场</default_value> | |
| 40 | - <description>停车场名字</description> | |
| 41 | - </parameter> | |
| 42 | - <parameter> | |
| 43 | - <name>ttinfoname</name> | |
| 44 | - <default_value>表2</default_value> | |
| 45 | - <description>时刻表名称</description> | |
| 46 | - </parameter> | |
| 47 | - <parameter> | |
| 48 | - <name>xlname</name> | |
| 49 | - <default_value>闵行26路</default_value> | |
| 50 | - <description>线路名称</description> | |
| 51 | - </parameter> | |
| 52 | - </parameters> | |
| 53 | - <log> | |
| 54 | -<trans-log-table><connection/> | |
| 55 | -<schema/> | |
| 56 | -<table/> | |
| 57 | -<size_limit_lines/> | |
| 58 | -<interval/> | |
| 59 | -<timeout_days/> | |
| 60 | -<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> | |
| 61 | -<perf-log-table><connection/> | |
| 62 | -<schema/> | |
| 63 | -<table/> | |
| 64 | -<interval/> | |
| 65 | -<timeout_days/> | |
| 66 | -<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> | |
| 67 | -<channel-log-table><connection/> | |
| 68 | -<schema/> | |
| 69 | -<table/> | |
| 70 | -<timeout_days/> | |
| 71 | -<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> | |
| 72 | -<step-log-table><connection/> | |
| 73 | -<schema/> | |
| 74 | -<table/> | |
| 75 | -<timeout_days/> | |
| 76 | -<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> | |
| 77 | -<metrics-log-table><connection/> | |
| 78 | -<schema/> | |
| 79 | -<table/> | |
| 80 | -<timeout_days/> | |
| 81 | -<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> | |
| 82 | - </log> | |
| 83 | - <maxdate> | |
| 84 | - <connection/> | |
| 85 | - <table/> | |
| 86 | - <field/> | |
| 87 | - <offset>0.0</offset> | |
| 88 | - <maxdiff>0.0</maxdiff> | |
| 89 | - </maxdate> | |
| 90 | - <size_rowset>10000</size_rowset> | |
| 91 | - <sleep_time_empty>50</sleep_time_empty> | |
| 92 | - <sleep_time_full>50</sleep_time_full> | |
| 93 | - <unique_connections>N</unique_connections> | |
| 94 | - <feedback_shown>Y</feedback_shown> | |
| 95 | - <feedback_size>50000</feedback_size> | |
| 96 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 97 | - <shared_objects_file/> | |
| 98 | - <capture_step_performance>N</capture_step_performance> | |
| 99 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 100 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 101 | - <dependencies> | |
| 102 | - </dependencies> | |
| 103 | - <partitionschemas> | |
| 104 | - </partitionschemas> | |
| 105 | - <slaveservers> | |
| 106 | - </slaveservers> | |
| 107 | - <clusterschemas> | |
| 108 | - </clusterschemas> | |
| 109 | - <created_user>-</created_user> | |
| 110 | - <created_date>2016/07/01 09:55:32.649</created_date> | |
| 111 | - <modified_user>-</modified_user> | |
| 112 | - <modified_date>2016/07/01 09:55:32.649</modified_date> | |
| 113 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 114 | - <is_key_private>N</is_key_private> | |
| 115 | - </info> | |
| 116 | - <notepads> | |
| 117 | - </notepads> | |
| 118 | - <connection> | |
| 119 | - <name>bus_control_variable</name> | |
| 120 | - <server>${v_db_ip}</server> | |
| 121 | - <type>MYSQL</type> | |
| 122 | - <access>Native</access> | |
| 123 | - <database>${v_db_dname}</database> | |
| 124 | - <port>3306</port> | |
| 125 | - <username>${v_db_uname}</username> | |
| 126 | - <password>${v_db_pwd}</password> | |
| 127 | - <servername/> | |
| 128 | - <data_tablespace/> | |
| 129 | - <index_tablespace/> | |
| 130 | - <attributes> | |
| 131 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 132 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 133 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 134 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 135 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 136 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 137 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 138 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 139 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 140 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 141 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 142 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 143 | - </attributes> | |
| 144 | - </connection> | |
| 145 | - <connection> | |
| 146 | - <name>bus_control_公司_201</name> | |
| 147 | - <server>localhost</server> | |
| 148 | - <type>MYSQL</type> | |
| 149 | - <access>Native</access> | |
| 150 | - <database>control</database> | |
| 151 | - <port>3306</port> | |
| 152 | - <username>root</username> | |
| 153 | - <password>Encrypted </password> | |
| 154 | - <servername/> | |
| 155 | - <data_tablespace/> | |
| 156 | - <index_tablespace/> | |
| 157 | - <attributes> | |
| 158 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 159 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 160 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 161 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 162 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 163 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 164 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 165 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 166 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 167 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 168 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 169 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 170 | - </attributes> | |
| 171 | - </connection> | |
| 172 | - <connection> | |
| 173 | - <name>bus_control_本机</name> | |
| 174 | - <server>localhost</server> | |
| 175 | - <type>MYSQL</type> | |
| 176 | - <access>Native</access> | |
| 177 | - <database>control</database> | |
| 178 | - <port>3306</port> | |
| 179 | - <username>root</username> | |
| 180 | - <password>Encrypted </password> | |
| 181 | - <servername/> | |
| 182 | - <data_tablespace/> | |
| 183 | - <index_tablespace/> | |
| 184 | - <attributes> | |
| 185 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 186 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 187 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 188 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 189 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 190 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 191 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 192 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 193 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 194 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 195 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 196 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 197 | - </attributes> | |
| 198 | - </connection> | |
| 199 | - <connection> | |
| 200 | - <name>xlab_mysql_youle</name> | |
| 201 | - <server>101.231.124.8</server> | |
| 202 | - <type>MYSQL</type> | |
| 203 | - <access>Native</access> | |
| 204 | - <database>xlab_youle</database> | |
| 205 | - <port>45687</port> | |
| 206 | - <username>xlab-youle</username> | |
| 207 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 208 | - <servername/> | |
| 209 | - <data_tablespace/> | |
| 210 | - <index_tablespace/> | |
| 211 | - <attributes> | |
| 212 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 213 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 214 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 215 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 216 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 217 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 218 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 219 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 220 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 221 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 222 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 223 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 224 | - </attributes> | |
| 225 | - </connection> | |
| 226 | - <connection> | |
| 227 | - <name>xlab_mysql_youle(本机)</name> | |
| 228 | - <server>localhost</server> | |
| 229 | - <type>MYSQL</type> | |
| 230 | - <access>Native</access> | |
| 231 | - <database>xlab_youle</database> | |
| 232 | - <port>3306</port> | |
| 233 | - <username>root</username> | |
| 234 | - <password>Encrypted </password> | |
| 235 | - <servername/> | |
| 236 | - <data_tablespace/> | |
| 237 | - <index_tablespace/> | |
| 238 | - <attributes> | |
| 239 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 240 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 241 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 242 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 243 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 244 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 245 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 246 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 247 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 248 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 249 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 250 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 251 | - </attributes> | |
| 252 | - </connection> | |
| 253 | - <connection> | |
| 254 | - <name>xlab_youle</name> | |
| 255 | - <server/> | |
| 256 | - <type>MYSQL</type> | |
| 257 | - <access>JNDI</access> | |
| 258 | - <database>xlab_youle</database> | |
| 259 | - <port>1521</port> | |
| 260 | - <username/> | |
| 261 | - <password>Encrypted </password> | |
| 262 | - <servername/> | |
| 263 | - <data_tablespace/> | |
| 264 | - <index_tablespace/> | |
| 265 | - <attributes> | |
| 266 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 267 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 268 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 269 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 270 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 271 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 272 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 273 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 274 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 275 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 276 | - </attributes> | |
| 277 | - </connection> | |
| 278 | - <order> | |
| 279 | - <hop> <from>获取excel文件名</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 280 | - <hop> <from>获取excel字段名字符串</from><to>逗号切分成字段名</to><enabled>Y</enabled> </hop> | |
| 281 | - <hop> <from>逗号切分成字段名</from><to>增加excel字段其他元数据</to><enabled>Y</enabled> </hop> | |
| 282 | - <hop> <from>增加excel字段其他元数据</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 283 | - <hop> <from>获取normalize字段名字符串</from><to>逗号切分成字段名 2</to><enabled>Y</enabled> </hop> | |
| 284 | - <hop> <from>逗号切分成字段名 2</from><to>增加normalize元数据</to><enabled>Y</enabled> </hop> | |
| 285 | - <hop> <from>增加normalize元数据</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 286 | - <hop> <from>获取线路名称</from><to>增加线路名称metadata</to><enabled>Y</enabled> </hop> | |
| 287 | - <hop> <from>增加线路名称metadata</from><to>替换线路名称</to><enabled>Y</enabled> </hop> | |
| 288 | - <hop> <from>替换线路名称</from><to>线路名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 289 | - <hop> <from>获取停车场名称</from><to>增加停车场名称metadata</to><enabled>Y</enabled> </hop> | |
| 290 | - <hop> <from>增加停车场名称metadata</from><to>替换停车厂名字 </to><enabled>Y</enabled> </hop> | |
| 291 | - <hop> <from>替换停车厂名字 </from><to>停车场名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 292 | - <hop> <from>获取时刻表名称名称</from><to>增加时刻表名称metadata</to><enabled>Y</enabled> </hop> | |
| 293 | - <hop> <from>增加时刻表名称metadata</from><to>替换时刻表名字</to><enabled>Y</enabled> </hop> | |
| 294 | - <hop> <from>替换时刻表名字</from><to>时刻表名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 295 | - <hop> <from>线路名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 296 | - <hop> <from>停车场名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 297 | - <hop> <from>时刻表名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 298 | - <hop> <from>合并增加常量数据metadata</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 299 | - </order> | |
| 300 | - <step> | |
| 301 | - <name>ETL元数据注入</name> | |
| 302 | - <type>MetaInject</type> | |
| 303 | - <description/> | |
| 304 | - <distribute>Y</distribute> | |
| 305 | - <custom_distribution/> | |
| 306 | - <copies>1</copies> | |
| 307 | - <partitioning> | |
| 308 | - <method>none</method> | |
| 309 | - <schema_name/> | |
| 310 | - </partitioning> | |
| 311 | - <specification_method>filename</specification_method> | |
| 312 | - <trans_object_id/> | |
| 313 | - <trans_name/> | |
| 314 | - <filename>${injectktrfile}</filename> | |
| 315 | - <directory_path/> | |
| 316 | - <source_step/> | |
| 317 | - <source_output_fields> </source_output_fields> <target_file/> | |
| 318 | - <no_execution>N</no_execution> | |
| 319 | - <stream_source_step/> | |
| 320 | - <stream_target_step/> | |
| 321 | - <mappings> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 322 | - <target_attribute_key>FORMAT</target_attribute_key> | |
| 323 | - <target_detail>Y</target_detail> | |
| 324 | - <source_step>列拆分为多行</source_step> | |
| 325 | - <source_field>format</source_field> | |
| 326 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 327 | - <target_attribute_key>REPEAT</target_attribute_key> | |
| 328 | - <target_detail>Y</target_detail> | |
| 329 | - <source_step>列拆分为多行</source_step> | |
| 330 | - <source_field>repeat</source_field> | |
| 331 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 332 | - <target_attribute_key>TRIM_TYPE</target_attribute_key> | |
| 333 | - <target_detail>Y</target_detail> | |
| 334 | - <source_step>增加excel字段其他元数据</source_step> | |
| 335 | - <source_field>trim_type</source_field> | |
| 336 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 337 | - <target_attribute_key>FILENAME</target_attribute_key> | |
| 338 | - <target_detail>Y</target_detail> | |
| 339 | - <source_step>获取excel文件名</source_step> | |
| 340 | - <source_field>filepath_</source_field> | |
| 341 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 342 | - <target_attribute_key>PRECISION</target_attribute_key> | |
| 343 | - <target_detail>Y</target_detail> | |
| 344 | - <source_step>增加excel字段其他元数据</source_step> | |
| 345 | - <source_field>precision</source_field> | |
| 346 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 347 | - <target_attribute_key>TYPE</target_attribute_key> | |
| 348 | - <target_detail>Y</target_detail> | |
| 349 | - <source_step>列拆分为多行</source_step> | |
| 350 | - <source_field>type</source_field> | |
| 351 | - </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 352 | - <target_attribute_key>DATA_VALUE</target_attribute_key> | |
| 353 | - <target_detail>Y</target_detail> | |
| 354 | - <source_step>合并增加常量数据metadata</source_step> | |
| 355 | - <source_field>col_value</source_field> | |
| 356 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 357 | - <target_attribute_key>LENGTH</target_attribute_key> | |
| 358 | - <target_detail>Y</target_detail> | |
| 359 | - <source_step>列拆分为多行</source_step> | |
| 360 | - <source_field>length</source_field> | |
| 361 | - </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 362 | - <target_attribute_key>TYPE</target_attribute_key> | |
| 363 | - <target_detail>Y</target_detail> | |
| 364 | - <source_step>合并增加常量数据metadata</source_step> | |
| 365 | - <source_field>col_type</source_field> | |
| 366 | - </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 367 | - <target_attribute_key>NAME</target_attribute_key> | |
| 368 | - <target_detail>Y</target_detail> | |
| 369 | - <source_step>列拆分为多行 2</source_step> | |
| 370 | - <source_field>fieldName</source_field> | |
| 371 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 372 | - <target_attribute_key>NAME</target_attribute_key> | |
| 373 | - <target_detail>Y</target_detail> | |
| 374 | - <source_step>增加excel字段其他元数据</source_step> | |
| 375 | - <source_field>fieldname</source_field> | |
| 376 | - </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 377 | - <target_attribute_key>NAME</target_attribute_key> | |
| 378 | - <target_detail>Y</target_detail> | |
| 379 | - <source_step>增加normalize元数据</source_step> | |
| 380 | - <source_field>nfieldname</source_field> | |
| 381 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 382 | - <target_attribute_key>LENGTH</target_attribute_key> | |
| 383 | - <target_detail>Y</target_detail> | |
| 384 | - <source_step>增加excel字段其他元数据</source_step> | |
| 385 | - <source_field>length</source_field> | |
| 386 | - </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 387 | - <target_attribute_key>NAME</target_attribute_key> | |
| 388 | - <target_detail>Y</target_detail> | |
| 389 | - <source_step>合并增加常量数据metadata</source_step> | |
| 390 | - <source_field>col_name</source_field> | |
| 391 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 392 | - <target_attribute_key>TYPE</target_attribute_key> | |
| 393 | - <target_detail>Y</target_detail> | |
| 394 | - <source_step>增加excel字段其他元数据</source_step> | |
| 395 | - <source_field>fieldtype</source_field> | |
| 396 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 397 | - <target_attribute_key>NAME</target_attribute_key> | |
| 398 | - <target_detail>Y</target_detail> | |
| 399 | - <source_step>列拆分为多行</source_step> | |
| 400 | - <source_field>fieldName</source_field> | |
| 401 | - </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 402 | - <target_attribute_key>VALUE</target_attribute_key> | |
| 403 | - <target_detail>Y</target_detail> | |
| 404 | - <source_step>列拆分为多行 2</source_step> | |
| 405 | - <source_field>fieldName</source_field> | |
| 406 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 407 | - <target_attribute_key>TRIM_TYPE</target_attribute_key> | |
| 408 | - <target_detail>Y</target_detail> | |
| 409 | - <source_step>列拆分为多行</source_step> | |
| 410 | - <source_field>trim_type</source_field> | |
| 411 | - </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 412 | - <target_attribute_key>NORMALISED</target_attribute_key> | |
| 413 | - <target_detail>Y</target_detail> | |
| 414 | - <source_step>列拆分为多行 2</source_step> | |
| 415 | - <source_field>value</source_field> | |
| 416 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 417 | - <target_attribute_key>REPEAT</target_attribute_key> | |
| 418 | - <target_detail>Y</target_detail> | |
| 419 | - <source_step>增加excel字段其他元数据</source_step> | |
| 420 | - <source_field>repeat</source_field> | |
| 421 | - </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 422 | - <target_attribute_key>NORMALISED</target_attribute_key> | |
| 423 | - <target_detail>Y</target_detail> | |
| 424 | - <source_step>增加normalize元数据</source_step> | |
| 425 | - <source_field>valuefield</source_field> | |
| 426 | - </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 427 | - <target_attribute_key>VALUE</target_attribute_key> | |
| 428 | - <target_detail>Y</target_detail> | |
| 429 | - <source_step>增加normalize元数据</source_step> | |
| 430 | - <source_field>nfieldname</source_field> | |
| 431 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 432 | - <target_attribute_key>FORMAT</target_attribute_key> | |
| 433 | - <target_detail>Y</target_detail> | |
| 434 | - <source_step>增加excel字段其他元数据</source_step> | |
| 435 | - <source_field>format</source_field> | |
| 436 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 437 | - <target_attribute_key>PRECISION</target_attribute_key> | |
| 438 | - <target_detail>Y</target_detail> | |
| 439 | - <source_step>列拆分为多行</source_step> | |
| 440 | - <source_field>precision</source_field> | |
| 441 | - </mapping> </mappings> <cluster_schema/> | |
| 442 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 443 | - <xloc>695</xloc> | |
| 444 | - <yloc>177</yloc> | |
| 445 | - <draw>Y</draw> | |
| 446 | - </GUI> | |
| 447 | - </step> | |
| 448 | - | |
| 449 | - <step> | |
| 450 | - <name>停车场名称metadata字段</name> | |
| 451 | - <type>SelectValues</type> | |
| 452 | - <description/> | |
| 453 | - <distribute>Y</distribute> | |
| 454 | - <custom_distribution/> | |
| 455 | - <copies>1</copies> | |
| 456 | - <partitioning> | |
| 457 | - <method>none</method> | |
| 458 | - <schema_name/> | |
| 459 | - </partitioning> | |
| 460 | - <fields> <field> <name>col_name</name> | |
| 461 | - <rename/> | |
| 462 | - <length>-2</length> | |
| 463 | - <precision>-2</precision> | |
| 464 | - </field> <field> <name>col_type</name> | |
| 465 | - <rename/> | |
| 466 | - <length>-2</length> | |
| 467 | - <precision>-2</precision> | |
| 468 | - </field> <field> <name>col_value</name> | |
| 469 | - <rename/> | |
| 470 | - <length>-2</length> | |
| 471 | - <precision>-2</precision> | |
| 472 | - </field> <select_unspecified>N</select_unspecified> | |
| 473 | - </fields> <cluster_schema/> | |
| 474 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 475 | - <xloc>490</xloc> | |
| 476 | - <yloc>429</yloc> | |
| 477 | - <draw>Y</draw> | |
| 478 | - </GUI> | |
| 479 | - </step> | |
| 480 | - | |
| 481 | - <step> | |
| 482 | - <name>合并增加常量数据metadata</name> | |
| 483 | - <type>Dummy</type> | |
| 484 | - <description/> | |
| 485 | - <distribute>Y</distribute> | |
| 486 | - <custom_distribution/> | |
| 487 | - <copies>1</copies> | |
| 488 | - <partitioning> | |
| 489 | - <method>none</method> | |
| 490 | - <schema_name/> | |
| 491 | - </partitioning> | |
| 492 | - <cluster_schema/> | |
| 493 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 494 | - <xloc>702</xloc> | |
| 495 | - <yloc>383</yloc> | |
| 496 | - <draw>Y</draw> | |
| 497 | - </GUI> | |
| 498 | - </step> | |
| 499 | - | |
| 500 | - <step> | |
| 501 | - <name>增加excel字段其他元数据</name> | |
| 502 | - <type>Constant</type> | |
| 503 | - <description/> | |
| 504 | - <distribute>Y</distribute> | |
| 505 | - <custom_distribution/> | |
| 506 | - <copies>1</copies> | |
| 507 | - <partitioning> | |
| 508 | - <method>none</method> | |
| 509 | - <schema_name/> | |
| 510 | - </partitioning> | |
| 511 | - <fields> | |
| 512 | - <field> | |
| 513 | - <name>fieldtype</name> | |
| 514 | - <type>String</type> | |
| 515 | - <format/> | |
| 516 | - <currency/> | |
| 517 | - <decimal/> | |
| 518 | - <group/> | |
| 519 | - <nullif>String</nullif> | |
| 520 | - <length>-1</length> | |
| 521 | - <precision>-1</precision> | |
| 522 | - <set_empty_string>N</set_empty_string> | |
| 523 | - </field> | |
| 524 | - <field> | |
| 525 | - <name>length</name> | |
| 526 | - <type>String</type> | |
| 527 | - <format/> | |
| 528 | - <currency/> | |
| 529 | - <decimal/> | |
| 530 | - <group/> | |
| 531 | - <nullif>-1</nullif> | |
| 532 | - <length>-1</length> | |
| 533 | - <precision>-1</precision> | |
| 534 | - <set_empty_string>N</set_empty_string> | |
| 535 | - </field> | |
| 536 | - <field> | |
| 537 | - <name>precision</name> | |
| 538 | - <type>String</type> | |
| 539 | - <format/> | |
| 540 | - <currency/> | |
| 541 | - <decimal/> | |
| 542 | - <group/> | |
| 543 | - <nullif>-1</nullif> | |
| 544 | - <length>-1</length> | |
| 545 | - <precision>-1</precision> | |
| 546 | - <set_empty_string>N</set_empty_string> | |
| 547 | - </field> | |
| 548 | - <field> | |
| 549 | - <name>trim_type</name> | |
| 550 | - <type>String</type> | |
| 551 | - <format/> | |
| 552 | - <currency/> | |
| 553 | - <decimal/> | |
| 554 | - <group/> | |
| 555 | - <nullif>none</nullif> | |
| 556 | - <length>-1</length> | |
| 557 | - <precision>-1</precision> | |
| 558 | - <set_empty_string>N</set_empty_string> | |
| 559 | - </field> | |
| 560 | - <field> | |
| 561 | - <name>repeat</name> | |
| 562 | - <type>String</type> | |
| 563 | - <format/> | |
| 564 | - <currency/> | |
| 565 | - <decimal/> | |
| 566 | - <group/> | |
| 567 | - <nullif>N</nullif> | |
| 568 | - <length>-1</length> | |
| 569 | - <precision>-1</precision> | |
| 570 | - <set_empty_string>N</set_empty_string> | |
| 571 | - </field> | |
| 572 | - <field> | |
| 573 | - <name>format</name> | |
| 574 | - <type>String</type> | |
| 575 | - <format/> | |
| 576 | - <currency/> | |
| 577 | - <decimal/> | |
| 578 | - <group/> | |
| 579 | - <nullif>#</nullif> | |
| 580 | - <length>-1</length> | |
| 581 | - <precision>-1</precision> | |
| 582 | - <set_empty_string>N</set_empty_string> | |
| 583 | - </field> | |
| 584 | - </fields> | |
| 585 | - <cluster_schema/> | |
| 586 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 587 | - <xloc>441</xloc> | |
| 588 | - <yloc>172</yloc> | |
| 589 | - <draw>Y</draw> | |
| 590 | - </GUI> | |
| 591 | - </step> | |
| 592 | - | |
| 593 | - <step> | |
| 594 | - <name>增加normalize元数据</name> | |
| 595 | - <type>Constant</type> | |
| 596 | - <description/> | |
| 597 | - <distribute>Y</distribute> | |
| 598 | - <custom_distribution/> | |
| 599 | - <copies>1</copies> | |
| 600 | - <partitioning> | |
| 601 | - <method>none</method> | |
| 602 | - <schema_name/> | |
| 603 | - </partitioning> | |
| 604 | - <fields> | |
| 605 | - <field> | |
| 606 | - <name>valuefield</name> | |
| 607 | - <type>String</type> | |
| 608 | - <format/> | |
| 609 | - <currency/> | |
| 610 | - <decimal/> | |
| 611 | - <group/> | |
| 612 | - <nullif>发车时间</nullif> | |
| 613 | - <length>-1</length> | |
| 614 | - <precision>-1</precision> | |
| 615 | - <set_empty_string>N</set_empty_string> | |
| 616 | - </field> | |
| 617 | - </fields> | |
| 618 | - <cluster_schema/> | |
| 619 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 620 | - <xloc>447</xloc> | |
| 621 | - <yloc>257</yloc> | |
| 622 | - <draw>Y</draw> | |
| 623 | - </GUI> | |
| 624 | - </step> | |
| 625 | - | |
| 626 | - <step> | |
| 627 | - <name>增加停车场名称metadata</name> | |
| 628 | - <type>Constant</type> | |
| 629 | - <description/> | |
| 630 | - <distribute>Y</distribute> | |
| 631 | - <custom_distribution/> | |
| 632 | - <copies>1</copies> | |
| 633 | - <partitioning> | |
| 634 | - <method>none</method> | |
| 635 | - <schema_name/> | |
| 636 | - </partitioning> | |
| 637 | - <fields> | |
| 638 | - <field> | |
| 639 | - <name>col_name</name> | |
| 640 | - <type>String</type> | |
| 641 | - <format/> | |
| 642 | - <currency/> | |
| 643 | - <decimal/> | |
| 644 | - <group/> | |
| 645 | - <nullif>tccname_</nullif> | |
| 646 | - <length>-1</length> | |
| 647 | - <precision>-1</precision> | |
| 648 | - <set_empty_string>N</set_empty_string> | |
| 649 | - </field> | |
| 650 | - <field> | |
| 651 | - <name>col_type</name> | |
| 652 | - <type>String</type> | |
| 653 | - <format/> | |
| 654 | - <currency/> | |
| 655 | - <decimal/> | |
| 656 | - <group/> | |
| 657 | - <nullif>String</nullif> | |
| 658 | - <length>-1</length> | |
| 659 | - <precision>-1</precision> | |
| 660 | - <set_empty_string>N</set_empty_string> | |
| 661 | - </field> | |
| 662 | - <field> | |
| 663 | - <name>col_value</name> | |
| 664 | - <type>String</type> | |
| 665 | - <format/> | |
| 666 | - <currency/> | |
| 667 | - <decimal/> | |
| 668 | - <group/> | |
| 669 | - <nullif>replace</nullif> | |
| 670 | - <length>-1</length> | |
| 671 | - <precision>-1</precision> | |
| 672 | - <set_empty_string>N</set_empty_string> | |
| 673 | - </field> | |
| 674 | - </fields> | |
| 675 | - <cluster_schema/> | |
| 676 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 677 | - <xloc>208</xloc> | |
| 678 | - <yloc>428</yloc> | |
| 679 | - <draw>Y</draw> | |
| 680 | - </GUI> | |
| 681 | - </step> | |
| 682 | - | |
| 683 | - <step> | |
| 684 | - <name>增加时刻表名称metadata</name> | |
| 685 | - <type>Constant</type> | |
| 686 | - <description/> | |
| 687 | - <distribute>Y</distribute> | |
| 688 | - <custom_distribution/> | |
| 689 | - <copies>1</copies> | |
| 690 | - <partitioning> | |
| 691 | - <method>none</method> | |
| 692 | - <schema_name/> | |
| 693 | - </partitioning> | |
| 694 | - <fields> | |
| 695 | - <field> | |
| 696 | - <name>col_name</name> | |
| 697 | - <type>String</type> | |
| 698 | - <format/> | |
| 699 | - <currency/> | |
| 700 | - <decimal/> | |
| 701 | - <group/> | |
| 702 | - <nullif>ttinfoname_</nullif> | |
| 703 | - <length>-1</length> | |
| 704 | - <precision>-1</precision> | |
| 705 | - <set_empty_string>N</set_empty_string> | |
| 706 | - </field> | |
| 707 | - <field> | |
| 708 | - <name>col_type</name> | |
| 709 | - <type>String</type> | |
| 710 | - <format/> | |
| 711 | - <currency/> | |
| 712 | - <decimal/> | |
| 713 | - <group/> | |
| 714 | - <nullif>String</nullif> | |
| 715 | - <length>-1</length> | |
| 716 | - <precision>-1</precision> | |
| 717 | - <set_empty_string>N</set_empty_string> | |
| 718 | - </field> | |
| 719 | - <field> | |
| 720 | - <name>col_value</name> | |
| 721 | - <type>String</type> | |
| 722 | - <format/> | |
| 723 | - <currency/> | |
| 724 | - <decimal/> | |
| 725 | - <group/> | |
| 726 | - <nullif>replace</nullif> | |
| 727 | - <length>-1</length> | |
| 728 | - <precision>-1</precision> | |
| 729 | - <set_empty_string>N</set_empty_string> | |
| 730 | - </field> | |
| 731 | - </fields> | |
| 732 | - <cluster_schema/> | |
| 733 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 734 | - <xloc>216</xloc> | |
| 735 | - <yloc>508</yloc> | |
| 736 | - <draw>Y</draw> | |
| 737 | - </GUI> | |
| 738 | - </step> | |
| 739 | - | |
| 740 | - <step> | |
| 741 | - <name>增加线路名称metadata</name> | |
| 742 | - <type>Constant</type> | |
| 743 | - <description/> | |
| 744 | - <distribute>Y</distribute> | |
| 745 | - <custom_distribution/> | |
| 746 | - <copies>1</copies> | |
| 747 | - <partitioning> | |
| 748 | - <method>none</method> | |
| 749 | - <schema_name/> | |
| 750 | - </partitioning> | |
| 751 | - <fields> | |
| 752 | - <field> | |
| 753 | - <name>col_name</name> | |
| 754 | - <type>String</type> | |
| 755 | - <format/> | |
| 756 | - <currency/> | |
| 757 | - <decimal/> | |
| 758 | - <group/> | |
| 759 | - <nullif>xlname_</nullif> | |
| 760 | - <length>-1</length> | |
| 761 | - <precision>-1</precision> | |
| 762 | - <set_empty_string>N</set_empty_string> | |
| 763 | - </field> | |
| 764 | - <field> | |
| 765 | - <name>col_type</name> | |
| 766 | - <type>String</type> | |
| 767 | - <format/> | |
| 768 | - <currency/> | |
| 769 | - <decimal/> | |
| 770 | - <group/> | |
| 771 | - <nullif>String</nullif> | |
| 772 | - <length>-1</length> | |
| 773 | - <precision>-1</precision> | |
| 774 | - <set_empty_string>N</set_empty_string> | |
| 775 | - </field> | |
| 776 | - <field> | |
| 777 | - <name>col_value</name> | |
| 778 | - <type>String</type> | |
| 779 | - <format/> | |
| 780 | - <currency/> | |
| 781 | - <decimal/> | |
| 782 | - <group/> | |
| 783 | - <nullif>replace</nullif> | |
| 784 | - <length>-1</length> | |
| 785 | - <precision>-1</precision> | |
| 786 | - <set_empty_string>N</set_empty_string> | |
| 787 | - </field> | |
| 788 | - </fields> | |
| 789 | - <cluster_schema/> | |
| 790 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 791 | - <xloc>202</xloc> | |
| 792 | - <yloc>351</yloc> | |
| 793 | - <draw>Y</draw> | |
| 794 | - </GUI> | |
| 795 | - </step> | |
| 796 | - | |
| 797 | - <step> | |
| 798 | - <name>时刻表名称metadata字段</name> | |
| 799 | - <type>SelectValues</type> | |
| 800 | - <description/> | |
| 801 | - <distribute>Y</distribute> | |
| 802 | - <custom_distribution/> | |
| 803 | - <copies>1</copies> | |
| 804 | - <partitioning> | |
| 805 | - <method>none</method> | |
| 806 | - <schema_name/> | |
| 807 | - </partitioning> | |
| 808 | - <fields> <field> <name>col_name</name> | |
| 809 | - <rename/> | |
| 810 | - <length>-2</length> | |
| 811 | - <precision>-2</precision> | |
| 812 | - </field> <field> <name>col_type</name> | |
| 813 | - <rename/> | |
| 814 | - <length>-2</length> | |
| 815 | - <precision>-2</precision> | |
| 816 | - </field> <field> <name>col_value</name> | |
| 817 | - <rename/> | |
| 818 | - <length>-2</length> | |
| 819 | - <precision>-2</precision> | |
| 820 | - </field> <select_unspecified>N</select_unspecified> | |
| 821 | - </fields> <cluster_schema/> | |
| 822 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 823 | - <xloc>496</xloc> | |
| 824 | - <yloc>508</yloc> | |
| 825 | - <draw>Y</draw> | |
| 826 | - </GUI> | |
| 827 | - </step> | |
| 828 | - | |
| 829 | - <step> | |
| 830 | - <name>替换停车厂名字 </name> | |
| 831 | - <type>SetValueField</type> | |
| 832 | - <description/> | |
| 833 | - <distribute>Y</distribute> | |
| 834 | - <custom_distribution/> | |
| 835 | - <copies>1</copies> | |
| 836 | - <partitioning> | |
| 837 | - <method>none</method> | |
| 838 | - <schema_name/> | |
| 839 | - </partitioning> | |
| 840 | - <fields> | |
| 841 | - <field> | |
| 842 | - <name>col_value</name> | |
| 843 | - <replaceby>tccname_</replaceby> | |
| 844 | - </field> | |
| 845 | - </fields> | |
| 846 | - <cluster_schema/> | |
| 847 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 848 | - <xloc>345</xloc> | |
| 849 | - <yloc>430</yloc> | |
| 850 | - <draw>Y</draw> | |
| 851 | - </GUI> | |
| 852 | - </step> | |
| 853 | - | |
| 854 | - <step> | |
| 855 | - <name>替换时刻表名字</name> | |
| 856 | - <type>SetValueField</type> | |
| 857 | - <description/> | |
| 858 | - <distribute>Y</distribute> | |
| 859 | - <custom_distribution/> | |
| 860 | - <copies>1</copies> | |
| 861 | - <partitioning> | |
| 862 | - <method>none</method> | |
| 863 | - <schema_name/> | |
| 864 | - </partitioning> | |
| 865 | - <fields> | |
| 866 | - <field> | |
| 867 | - <name>col_value</name> | |
| 868 | - <replaceby>ttinfoname_</replaceby> | |
| 869 | - </field> | |
| 870 | - </fields> | |
| 871 | - <cluster_schema/> | |
| 872 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 873 | - <xloc>354</xloc> | |
| 874 | - <yloc>509</yloc> | |
| 875 | - <draw>Y</draw> | |
| 876 | - </GUI> | |
| 877 | - </step> | |
| 878 | - | |
| 879 | - <step> | |
| 880 | - <name>替换线路名称</name> | |
| 881 | - <type>SetValueField</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 | - <fields> | |
| 891 | - <field> | |
| 892 | - <name>col_value</name> | |
| 893 | - <replaceby>xlname_</replaceby> | |
| 894 | - </field> | |
| 895 | - </fields> | |
| 896 | - <cluster_schema/> | |
| 897 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 898 | - <xloc>340</xloc> | |
| 899 | - <yloc>352</yloc> | |
| 900 | - <draw>Y</draw> | |
| 901 | - </GUI> | |
| 902 | - </step> | |
| 903 | - | |
| 904 | - <step> | |
| 905 | - <name>线路名称metadata字段</name> | |
| 906 | - <type>SelectValues</type> | |
| 907 | - <description/> | |
| 908 | - <distribute>Y</distribute> | |
| 909 | - <custom_distribution/> | |
| 910 | - <copies>1</copies> | |
| 911 | - <partitioning> | |
| 912 | - <method>none</method> | |
| 913 | - <schema_name/> | |
| 914 | - </partitioning> | |
| 915 | - <fields> <field> <name>col_name</name> | |
| 916 | - <rename/> | |
| 917 | - <length>-2</length> | |
| 918 | - <precision>-2</precision> | |
| 919 | - </field> <field> <name>col_type</name> | |
| 920 | - <rename/> | |
| 921 | - <length>-2</length> | |
| 922 | - <precision>-2</precision> | |
| 923 | - </field> <field> <name>col_value</name> | |
| 924 | - <rename/> | |
| 925 | - <length>-2</length> | |
| 926 | - <precision>-2</precision> | |
| 927 | - </field> <select_unspecified>N</select_unspecified> | |
| 928 | - </fields> <cluster_schema/> | |
| 929 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 930 | - <xloc>487</xloc> | |
| 931 | - <yloc>353</yloc> | |
| 932 | - <draw>Y</draw> | |
| 933 | - </GUI> | |
| 934 | - </step> | |
| 935 | - | |
| 936 | - <step> | |
| 937 | - <name>获取excel字段名字符串</name> | |
| 938 | - <type>GetVariable</type> | |
| 939 | - <description/> | |
| 940 | - <distribute>Y</distribute> | |
| 941 | - <custom_distribution/> | |
| 942 | - <copies>1</copies> | |
| 943 | - <partitioning> | |
| 944 | - <method>none</method> | |
| 945 | - <schema_name/> | |
| 946 | - </partitioning> | |
| 947 | - <fields> | |
| 948 | - <field> | |
| 949 | - <name>fieldnames</name> | |
| 950 | - <variable>${excelfieldnames}</variable> | |
| 951 | - <type>String</type> | |
| 952 | - <format/> | |
| 953 | - <currency/> | |
| 954 | - <decimal/> | |
| 955 | - <group/> | |
| 956 | - <length>-1</length> | |
| 957 | - <precision>-1</precision> | |
| 958 | - <trim_type>none</trim_type> | |
| 959 | - </field> | |
| 960 | - </fields> | |
| 961 | - <cluster_schema/> | |
| 962 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 963 | - <xloc>71</xloc> | |
| 964 | - <yloc>163</yloc> | |
| 965 | - <draw>Y</draw> | |
| 966 | - </GUI> | |
| 967 | - </step> | |
| 968 | - | |
| 969 | - <step> | |
| 970 | - <name>获取excel文件名</name> | |
| 971 | - <type>GetVariable</type> | |
| 972 | - <description/> | |
| 973 | - <distribute>Y</distribute> | |
| 974 | - <custom_distribution/> | |
| 975 | - <copies>1</copies> | |
| 976 | - <partitioning> | |
| 977 | - <method>none</method> | |
| 978 | - <schema_name/> | |
| 979 | - </partitioning> | |
| 980 | - <fields> | |
| 981 | - <field> | |
| 982 | - <name>filepath_</name> | |
| 983 | - <variable>${filepath}</variable> | |
| 984 | - <type>String</type> | |
| 985 | - <format/> | |
| 986 | - <currency/> | |
| 987 | - <decimal/> | |
| 988 | - <group/> | |
| 989 | - <length>-1</length> | |
| 990 | - <precision>-1</precision> | |
| 991 | - <trim_type>none</trim_type> | |
| 992 | - </field> | |
| 993 | - <field> | |
| 994 | - <name>erroroutputdir_</name> | |
| 995 | - <variable>${erroroutputdir}</variable> | |
| 996 | - <type>String</type> | |
| 997 | - <format/> | |
| 998 | - <currency/> | |
| 999 | - <decimal/> | |
| 1000 | - <group/> | |
| 1001 | - <length>-1</length> | |
| 1002 | - <precision>-1</precision> | |
| 1003 | - <trim_type>none</trim_type> | |
| 1004 | - </field> | |
| 1005 | - </fields> | |
| 1006 | - <cluster_schema/> | |
| 1007 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1008 | - <xloc>73</xloc> | |
| 1009 | - <yloc>62</yloc> | |
| 1010 | - <draw>Y</draw> | |
| 1011 | - </GUI> | |
| 1012 | - </step> | |
| 1013 | - | |
| 1014 | - <step> | |
| 1015 | - <name>获取normalize字段名字符串</name> | |
| 1016 | - <type>GetVariable</type> | |
| 1017 | - <description/> | |
| 1018 | - <distribute>Y</distribute> | |
| 1019 | - <custom_distribution/> | |
| 1020 | - <copies>1</copies> | |
| 1021 | - <partitioning> | |
| 1022 | - <method>none</method> | |
| 1023 | - <schema_name/> | |
| 1024 | - </partitioning> | |
| 1025 | - <fields> | |
| 1026 | - <field> | |
| 1027 | - <name>normalizefieldnames_</name> | |
| 1028 | - <variable>${normalizefieldnames}</variable> | |
| 1029 | - <type>String</type> | |
| 1030 | - <format/> | |
| 1031 | - <currency/> | |
| 1032 | - <decimal/> | |
| 1033 | - <group/> | |
| 1034 | - <length>-1</length> | |
| 1035 | - <precision>-1</precision> | |
| 1036 | - <trim_type>none</trim_type> | |
| 1037 | - </field> | |
| 1038 | - </fields> | |
| 1039 | - <cluster_schema/> | |
| 1040 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1041 | - <xloc>80</xloc> | |
| 1042 | - <yloc>261</yloc> | |
| 1043 | - <draw>Y</draw> | |
| 1044 | - </GUI> | |
| 1045 | - </step> | |
| 1046 | - | |
| 1047 | - <step> | |
| 1048 | - <name>获取停车场名称</name> | |
| 1049 | - <type>GetVariable</type> | |
| 1050 | - <description/> | |
| 1051 | - <distribute>Y</distribute> | |
| 1052 | - <custom_distribution/> | |
| 1053 | - <copies>1</copies> | |
| 1054 | - <partitioning> | |
| 1055 | - <method>none</method> | |
| 1056 | - <schema_name/> | |
| 1057 | - </partitioning> | |
| 1058 | - <fields> | |
| 1059 | - <field> | |
| 1060 | - <name>tccname_</name> | |
| 1061 | - <variable>${tccname}</variable> | |
| 1062 | - <type>String</type> | |
| 1063 | - <format/> | |
| 1064 | - <currency/> | |
| 1065 | - <decimal/> | |
| 1066 | - <group/> | |
| 1067 | - <length>-1</length> | |
| 1068 | - <precision>-1</precision> | |
| 1069 | - <trim_type>none</trim_type> | |
| 1070 | - </field> | |
| 1071 | - </fields> | |
| 1072 | - <cluster_schema/> | |
| 1073 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1074 | - <xloc>80</xloc> | |
| 1075 | - <yloc>430</yloc> | |
| 1076 | - <draw>Y</draw> | |
| 1077 | - </GUI> | |
| 1078 | - </step> | |
| 1079 | - | |
| 1080 | - <step> | |
| 1081 | - <name>获取时刻表名称名称</name> | |
| 1082 | - <type>GetVariable</type> | |
| 1083 | - <description/> | |
| 1084 | - <distribute>Y</distribute> | |
| 1085 | - <custom_distribution/> | |
| 1086 | - <copies>1</copies> | |
| 1087 | - <partitioning> | |
| 1088 | - <method>none</method> | |
| 1089 | - <schema_name/> | |
| 1090 | - </partitioning> | |
| 1091 | - <fields> | |
| 1092 | - <field> | |
| 1093 | - <name>ttinfoname_</name> | |
| 1094 | - <variable>${ttinfoname}</variable> | |
| 1095 | - <type>String</type> | |
| 1096 | - <format/> | |
| 1097 | - <currency/> | |
| 1098 | - <decimal/> | |
| 1099 | - <group/> | |
| 1100 | - <length>-1</length> | |
| 1101 | - <precision>-1</precision> | |
| 1102 | - <trim_type>none</trim_type> | |
| 1103 | - </field> | |
| 1104 | - </fields> | |
| 1105 | - <cluster_schema/> | |
| 1106 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1107 | - <xloc>82</xloc> | |
| 1108 | - <yloc>508</yloc> | |
| 1109 | - <draw>Y</draw> | |
| 1110 | - </GUI> | |
| 1111 | - </step> | |
| 1112 | - | |
| 1113 | - <step> | |
| 1114 | - <name>获取线路名称</name> | |
| 1115 | - <type>GetVariable</type> | |
| 1116 | - <description/> | |
| 1117 | - <distribute>Y</distribute> | |
| 1118 | - <custom_distribution/> | |
| 1119 | - <copies>1</copies> | |
| 1120 | - <partitioning> | |
| 1121 | - <method>none</method> | |
| 1122 | - <schema_name/> | |
| 1123 | - </partitioning> | |
| 1124 | - <fields> | |
| 1125 | - <field> | |
| 1126 | - <name>xlname_</name> | |
| 1127 | - <variable>${xlname}</variable> | |
| 1128 | - <type>String</type> | |
| 1129 | - <format/> | |
| 1130 | - <currency/> | |
| 1131 | - <decimal/> | |
| 1132 | - <group/> | |
| 1133 | - <length>-1</length> | |
| 1134 | - <precision>-1</precision> | |
| 1135 | - <trim_type>none</trim_type> | |
| 1136 | - </field> | |
| 1137 | - </fields> | |
| 1138 | - <cluster_schema/> | |
| 1139 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1140 | - <xloc>78</xloc> | |
| 1141 | - <yloc>351</yloc> | |
| 1142 | - <draw>Y</draw> | |
| 1143 | - </GUI> | |
| 1144 | - </step> | |
| 1145 | - | |
| 1146 | - <step> | |
| 1147 | - <name>逗号切分成字段名</name> | |
| 1148 | - <type>SplitFieldToRows3</type> | |
| 1149 | - <description/> | |
| 1150 | - <distribute>Y</distribute> | |
| 1151 | - <custom_distribution/> | |
| 1152 | - <copies>1</copies> | |
| 1153 | - <partitioning> | |
| 1154 | - <method>none</method> | |
| 1155 | - <schema_name/> | |
| 1156 | - </partitioning> | |
| 1157 | - <splitfield>fieldnames</splitfield> | |
| 1158 | - <delimiter>,</delimiter> | |
| 1159 | - <newfield>fieldname</newfield> | |
| 1160 | - <rownum>N</rownum> | |
| 1161 | - <rownum_field/> | |
| 1162 | - <resetrownumber>Y</resetrownumber> | |
| 1163 | - <delimiter_is_regex>N</delimiter_is_regex> | |
| 1164 | - <cluster_schema/> | |
| 1165 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1166 | - <xloc>261</xloc> | |
| 1167 | - <yloc>163</yloc> | |
| 1168 | - <draw>Y</draw> | |
| 1169 | - </GUI> | |
| 1170 | - </step> | |
| 1171 | - | |
| 1172 | - <step> | |
| 1173 | - <name>逗号切分成字段名 2</name> | |
| 1174 | - <type>SplitFieldToRows3</type> | |
| 1175 | - <description/> | |
| 1176 | - <distribute>Y</distribute> | |
| 1177 | - <custom_distribution/> | |
| 1178 | - <copies>1</copies> | |
| 1179 | - <partitioning> | |
| 1180 | - <method>none</method> | |
| 1181 | - <schema_name/> | |
| 1182 | - </partitioning> | |
| 1183 | - <splitfield>normalizefieldnames_</splitfield> | |
| 1184 | - <delimiter>,</delimiter> | |
| 1185 | - <newfield>nfieldname</newfield> | |
| 1186 | - <rownum>N</rownum> | |
| 1187 | - <rownum_field/> | |
| 1188 | - <resetrownumber>Y</resetrownumber> | |
| 1189 | - <delimiter_is_regex>N</delimiter_is_regex> | |
| 1190 | - <cluster_schema/> | |
| 1191 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1192 | - <xloc>263</xloc> | |
| 1193 | - <yloc>257</yloc> | |
| 1194 | - <draw>Y</draw> | |
| 1195 | - </GUI> | |
| 1196 | - </step> | |
| 1197 | - | |
| 1198 | - <step_error_handling> | |
| 1199 | - </step_error_handling> | |
| 1200 | - <slave-step-copy-partition-distribution> | |
| 1201 | -</slave-step-copy-partition-distribution> | |
| 1202 | - <slave_transformation>N</slave_transformation> | |
| 1203 | - | |
| 1204 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>ttinfodetailMetaData</name> | |
| 5 | + <description/> | |
| 6 | + <extended_description/> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>erroroutputdir</name> | |
| 14 | + <default_value>/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/erroroutput</default_value> | |
| 15 | + <description>ktr step配置的错误输出目录</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>excelfieldnames</name> | |
| 19 | + <default_value>路牌,出场,东川路地铁站1,塘泾路尚义路1,东川路地铁站2,塘泾路尚义路2,东川路地铁站3,塘泾路尚义路3,东川路地铁站4,塘泾路尚义路4,东川路地铁站5,塘泾路尚义路5,东川路地铁站6,塘泾路尚义路6,东川路地铁站7,塘泾路尚义路7,东川路地铁站8,塘泾路尚义路8,东川路地铁站9,塘泾路尚义路9,东川路地铁站10,塘泾路尚义路10,进场</default_value> | |
| 20 | + <description>时刻表excel输入字段名,以逗号连接</description> | |
| 21 | + </parameter> | |
| 22 | + <parameter> | |
| 23 | + <name>filepath</name> | |
| 24 | + <default_value>/Users/xu/resource/project_code/bsth_project/bsth_control_etl/闵行公交/闵行26路时刻表160630时刻表.xls</default_value> | |
| 25 | + <description>待处理导入的excel文件</description> | |
| 26 | + </parameter> | |
| 27 | + <parameter> | |
| 28 | + <name>injectktrfile</name> | |
| 29 | + <default_value>/Users/xu/resource/project_code/bsth_project/bsth_control/src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr</default_value> | |
| 30 | + <description>注入元数据的ktr文件</description> | |
| 31 | + </parameter> | |
| 32 | + <parameter> | |
| 33 | + <name>normalizefieldnames</name> | |
| 34 | + <default_value>出场,东川路地铁站1,塘泾路尚义路1,东川路地铁站2,塘泾路尚义路2,东川路地铁站3,塘泾路尚义路3,东川路地铁站4,塘泾路尚义路4,东川路地铁站5,塘泾路尚义路5,东川路地铁站6,塘泾路尚义路6,东川路地铁站7,塘泾路尚义路7,东川路地铁站8,塘泾路尚义路8,东川路地铁站9,塘泾路尚义路9,东川路地铁站10,塘泾路尚义路10,进场</default_value> | |
| 35 | + <description>数据范式化字段名,以逗号连接</description> | |
| 36 | + </parameter> | |
| 37 | + <parameter> | |
| 38 | + <name>sheetname</name> | |
| 39 | + <default_value>工作表1</default_value> | |
| 40 | + <description/> | |
| 41 | + </parameter> | |
| 42 | + <parameter> | |
| 43 | + <name>tccname</name> | |
| 44 | + <default_value>东川路地铁站停车场</default_value> | |
| 45 | + <description>停车场名字</description> | |
| 46 | + </parameter> | |
| 47 | + <parameter> | |
| 48 | + <name>ttinfoname</name> | |
| 49 | + <default_value>表2</default_value> | |
| 50 | + <description>时刻表名称</description> | |
| 51 | + </parameter> | |
| 52 | + <parameter> | |
| 53 | + <name>xlname</name> | |
| 54 | + <default_value>闵行26路</default_value> | |
| 55 | + <description>线路名称</description> | |
| 56 | + </parameter> | |
| 57 | + </parameters> | |
| 58 | + <log> | |
| 59 | +<trans-log-table><connection/> | |
| 60 | +<schema/> | |
| 61 | +<table/> | |
| 62 | +<size_limit_lines/> | |
| 63 | +<interval/> | |
| 64 | +<timeout_days/> | |
| 65 | +<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> | |
| 66 | +<perf-log-table><connection/> | |
| 67 | +<schema/> | |
| 68 | +<table/> | |
| 69 | +<interval/> | |
| 70 | +<timeout_days/> | |
| 71 | +<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> | |
| 72 | +<channel-log-table><connection/> | |
| 73 | +<schema/> | |
| 74 | +<table/> | |
| 75 | +<timeout_days/> | |
| 76 | +<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> | |
| 77 | +<step-log-table><connection/> | |
| 78 | +<schema/> | |
| 79 | +<table/> | |
| 80 | +<timeout_days/> | |
| 81 | +<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> | |
| 82 | +<metrics-log-table><connection/> | |
| 83 | +<schema/> | |
| 84 | +<table/> | |
| 85 | +<timeout_days/> | |
| 86 | +<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> | |
| 87 | + </log> | |
| 88 | + <maxdate> | |
| 89 | + <connection/> | |
| 90 | + <table/> | |
| 91 | + <field/> | |
| 92 | + <offset>0.0</offset> | |
| 93 | + <maxdiff>0.0</maxdiff> | |
| 94 | + </maxdate> | |
| 95 | + <size_rowset>10000</size_rowset> | |
| 96 | + <sleep_time_empty>50</sleep_time_empty> | |
| 97 | + <sleep_time_full>50</sleep_time_full> | |
| 98 | + <unique_connections>N</unique_connections> | |
| 99 | + <feedback_shown>Y</feedback_shown> | |
| 100 | + <feedback_size>50000</feedback_size> | |
| 101 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 102 | + <shared_objects_file/> | |
| 103 | + <capture_step_performance>N</capture_step_performance> | |
| 104 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 105 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 106 | + <dependencies> | |
| 107 | + </dependencies> | |
| 108 | + <partitionschemas> | |
| 109 | + </partitionschemas> | |
| 110 | + <slaveservers> | |
| 111 | + </slaveservers> | |
| 112 | + <clusterschemas> | |
| 113 | + </clusterschemas> | |
| 114 | + <created_user>-</created_user> | |
| 115 | + <created_date>2016/07/01 09:55:32.649</created_date> | |
| 116 | + <modified_user>-</modified_user> | |
| 117 | + <modified_date>2016/07/01 09:55:32.649</modified_date> | |
| 118 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 119 | + <is_key_private>N</is_key_private> | |
| 120 | + </info> | |
| 121 | + <notepads> | |
| 122 | + </notepads> | |
| 123 | + <connection> | |
| 124 | + <name>bus_control_variable</name> | |
| 125 | + <server>${v_db_ip}</server> | |
| 126 | + <type>MYSQL</type> | |
| 127 | + <access>Native</access> | |
| 128 | + <database>${v_db_dname}</database> | |
| 129 | + <port>3306</port> | |
| 130 | + <username>${v_db_uname}</username> | |
| 131 | + <password>${v_db_pwd}</password> | |
| 132 | + <servername/> | |
| 133 | + <data_tablespace/> | |
| 134 | + <index_tablespace/> | |
| 135 | + <attributes> | |
| 136 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 137 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 138 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 139 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 140 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 141 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 142 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 143 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 144 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 145 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 146 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 147 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 148 | + </attributes> | |
| 149 | + </connection> | |
| 150 | + <connection> | |
| 151 | + <name>bus_control_公司_201</name> | |
| 152 | + <server>localhost</server> | |
| 153 | + <type>MYSQL</type> | |
| 154 | + <access>Native</access> | |
| 155 | + <database>control</database> | |
| 156 | + <port>3306</port> | |
| 157 | + <username>root</username> | |
| 158 | + <password>Encrypted </password> | |
| 159 | + <servername/> | |
| 160 | + <data_tablespace/> | |
| 161 | + <index_tablespace/> | |
| 162 | + <attributes> | |
| 163 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 164 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 165 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 166 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 167 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 168 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 169 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 170 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 171 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 172 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 173 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 174 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 175 | + </attributes> | |
| 176 | + </connection> | |
| 177 | + <connection> | |
| 178 | + <name>bus_control_本机</name> | |
| 179 | + <server>localhost</server> | |
| 180 | + <type>MYSQL</type> | |
| 181 | + <access>Native</access> | |
| 182 | + <database>control</database> | |
| 183 | + <port>3306</port> | |
| 184 | + <username>root</username> | |
| 185 | + <password>Encrypted </password> | |
| 186 | + <servername/> | |
| 187 | + <data_tablespace/> | |
| 188 | + <index_tablespace/> | |
| 189 | + <attributes> | |
| 190 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 191 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 192 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 193 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 194 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 195 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 196 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 197 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 198 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 199 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 200 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 201 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 202 | + </attributes> | |
| 203 | + </connection> | |
| 204 | + <connection> | |
| 205 | + <name>xlab_mysql_youle</name> | |
| 206 | + <server>101.231.124.8</server> | |
| 207 | + <type>MYSQL</type> | |
| 208 | + <access>Native</access> | |
| 209 | + <database>xlab_youle</database> | |
| 210 | + <port>45687</port> | |
| 211 | + <username>xlab-youle</username> | |
| 212 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 213 | + <servername/> | |
| 214 | + <data_tablespace/> | |
| 215 | + <index_tablespace/> | |
| 216 | + <attributes> | |
| 217 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 218 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 219 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 220 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 221 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 222 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 223 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 224 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 225 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 226 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 227 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 228 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 229 | + </attributes> | |
| 230 | + </connection> | |
| 231 | + <connection> | |
| 232 | + <name>xlab_mysql_youle(本机)</name> | |
| 233 | + <server>localhost</server> | |
| 234 | + <type>MYSQL</type> | |
| 235 | + <access>Native</access> | |
| 236 | + <database>xlab_youle</database> | |
| 237 | + <port>3306</port> | |
| 238 | + <username>root</username> | |
| 239 | + <password>Encrypted </password> | |
| 240 | + <servername/> | |
| 241 | + <data_tablespace/> | |
| 242 | + <index_tablespace/> | |
| 243 | + <attributes> | |
| 244 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 245 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 246 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 247 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 248 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 249 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 250 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 251 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 252 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 253 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 254 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 255 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 256 | + </attributes> | |
| 257 | + </connection> | |
| 258 | + <connection> | |
| 259 | + <name>xlab_youle</name> | |
| 260 | + <server/> | |
| 261 | + <type>MYSQL</type> | |
| 262 | + <access>JNDI</access> | |
| 263 | + <database>xlab_youle</database> | |
| 264 | + <port>1521</port> | |
| 265 | + <username/> | |
| 266 | + <password>Encrypted </password> | |
| 267 | + <servername/> | |
| 268 | + <data_tablespace/> | |
| 269 | + <index_tablespace/> | |
| 270 | + <attributes> | |
| 271 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 272 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 273 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 274 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 275 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 276 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 277 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 278 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 279 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 280 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 281 | + </attributes> | |
| 282 | + </connection> | |
| 283 | + <order> | |
| 284 | + <hop> <from>获取excel文件名</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 285 | + <hop> <from>获取excel字段名字符串</from><to>逗号切分成字段名</to><enabled>Y</enabled> </hop> | |
| 286 | + <hop> <from>逗号切分成字段名</from><to>增加excel字段其他元数据</to><enabled>Y</enabled> </hop> | |
| 287 | + <hop> <from>增加excel字段其他元数据</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 288 | + <hop> <from>获取normalize字段名字符串</from><to>逗号切分成字段名 2</to><enabled>Y</enabled> </hop> | |
| 289 | + <hop> <from>逗号切分成字段名 2</from><to>增加normalize元数据</to><enabled>Y</enabled> </hop> | |
| 290 | + <hop> <from>增加normalize元数据</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 291 | + <hop> <from>获取线路名称</from><to>增加线路名称metadata</to><enabled>Y</enabled> </hop> | |
| 292 | + <hop> <from>增加线路名称metadata</from><to>替换线路名称</to><enabled>Y</enabled> </hop> | |
| 293 | + <hop> <from>替换线路名称</from><to>线路名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 294 | + <hop> <from>获取停车场名称</from><to>增加停车场名称metadata</to><enabled>Y</enabled> </hop> | |
| 295 | + <hop> <from>增加停车场名称metadata</from><to>替换停车厂名字 </to><enabled>Y</enabled> </hop> | |
| 296 | + <hop> <from>替换停车厂名字 </from><to>停车场名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 297 | + <hop> <from>获取时刻表名称名称</from><to>增加时刻表名称metadata</to><enabled>Y</enabled> </hop> | |
| 298 | + <hop> <from>增加时刻表名称metadata</from><to>替换时刻表名字</to><enabled>Y</enabled> </hop> | |
| 299 | + <hop> <from>替换时刻表名字</from><to>时刻表名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 300 | + <hop> <from>线路名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 301 | + <hop> <from>停车场名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 302 | + <hop> <from>时刻表名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 303 | + <hop> <from>合并增加常量数据metadata</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 304 | + </order> | |
| 305 | + <step> | |
| 306 | + <name>ETL元数据注入</name> | |
| 307 | + <type>MetaInject</type> | |
| 308 | + <description/> | |
| 309 | + <distribute>Y</distribute> | |
| 310 | + <custom_distribution/> | |
| 311 | + <copies>1</copies> | |
| 312 | + <partitioning> | |
| 313 | + <method>none</method> | |
| 314 | + <schema_name/> | |
| 315 | + </partitioning> | |
| 316 | + <specification_method>filename</specification_method> | |
| 317 | + <trans_object_id/> | |
| 318 | + <trans_name/> | |
| 319 | + <filename>${injectktrfile}</filename> | |
| 320 | + <directory_path/> | |
| 321 | + <source_step/> | |
| 322 | + <source_output_fields> </source_output_fields> <target_file/> | |
| 323 | + <no_execution>N</no_execution> | |
| 324 | + <stream_source_step/> | |
| 325 | + <stream_target_step/> | |
| 326 | + <mappings> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 327 | + <target_attribute_key>FORMAT</target_attribute_key> | |
| 328 | + <target_detail>Y</target_detail> | |
| 329 | + <source_step>列拆分为多行</source_step> | |
| 330 | + <source_field>format</source_field> | |
| 331 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 332 | + <target_attribute_key>REPEAT</target_attribute_key> | |
| 333 | + <target_detail>Y</target_detail> | |
| 334 | + <source_step>列拆分为多行</source_step> | |
| 335 | + <source_field>repeat</source_field> | |
| 336 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 337 | + <target_attribute_key>TRIM_TYPE</target_attribute_key> | |
| 338 | + <target_detail>Y</target_detail> | |
| 339 | + <source_step>增加excel字段其他元数据</source_step> | |
| 340 | + <source_field>trim_type</source_field> | |
| 341 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 342 | + <target_attribute_key>FILENAME</target_attribute_key> | |
| 343 | + <target_detail>Y</target_detail> | |
| 344 | + <source_step>获取excel文件名</source_step> | |
| 345 | + <source_field>filepath_</source_field> | |
| 346 | + </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 347 | + <target_attribute_key>NAME</target_attribute_key> | |
| 348 | + <target_detail>Y</target_detail> | |
| 349 | + <source_step>列拆分为多行 2</source_step> | |
| 350 | + <source_field>fieldName</source_field> | |
| 351 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 352 | + <target_attribute_key>NAME</target_attribute_key> | |
| 353 | + <target_detail>Y</target_detail> | |
| 354 | + <source_step>增加excel字段其他元数据</source_step> | |
| 355 | + <source_field>fieldname</source_field> | |
| 356 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 357 | + <target_attribute_key>SHEET_NAME</target_attribute_key> | |
| 358 | + <target_detail>Y</target_detail> | |
| 359 | + <source_step>获取excel文件名</source_step> | |
| 360 | + <source_field>sheetname_</source_field> | |
| 361 | + </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 362 | + <target_attribute_key>NAME</target_attribute_key> | |
| 363 | + <target_detail>Y</target_detail> | |
| 364 | + <source_step>合并增加常量数据metadata</source_step> | |
| 365 | + <source_field>col_name</source_field> | |
| 366 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 367 | + <target_attribute_key>NAME</target_attribute_key> | |
| 368 | + <target_detail>Y</target_detail> | |
| 369 | + <source_step>列拆分为多行</source_step> | |
| 370 | + <source_field>fieldName</source_field> | |
| 371 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 372 | + <target_attribute_key>TRIM_TYPE</target_attribute_key> | |
| 373 | + <target_detail>Y</target_detail> | |
| 374 | + <source_step>列拆分为多行</source_step> | |
| 375 | + <source_field>trim_type</source_field> | |
| 376 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 377 | + <target_attribute_key>REPEAT</target_attribute_key> | |
| 378 | + <target_detail>Y</target_detail> | |
| 379 | + <source_step>增加excel字段其他元数据</source_step> | |
| 380 | + <source_field>repeat</source_field> | |
| 381 | + </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 382 | + <target_attribute_key>NORMALISED</target_attribute_key> | |
| 383 | + <target_detail>Y</target_detail> | |
| 384 | + <source_step>增加normalize元数据</source_step> | |
| 385 | + <source_field>valuefield</source_field> | |
| 386 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 387 | + <target_attribute_key>FORMAT</target_attribute_key> | |
| 388 | + <target_detail>Y</target_detail> | |
| 389 | + <source_step>增加excel字段其他元数据</source_step> | |
| 390 | + <source_field>format</source_field> | |
| 391 | + </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 392 | + <target_attribute_key>VALUE</target_attribute_key> | |
| 393 | + <target_detail>Y</target_detail> | |
| 394 | + <source_step>增加normalize元数据</source_step> | |
| 395 | + <source_field>nfieldname</source_field> | |
| 396 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 397 | + <target_attribute_key>PRECISION</target_attribute_key> | |
| 398 | + <target_detail>Y</target_detail> | |
| 399 | + <source_step>增加excel字段其他元数据</source_step> | |
| 400 | + <source_field>precision</source_field> | |
| 401 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 402 | + <target_attribute_key>TYPE</target_attribute_key> | |
| 403 | + <target_detail>Y</target_detail> | |
| 404 | + <source_step>列拆分为多行</source_step> | |
| 405 | + <source_field>type</source_field> | |
| 406 | + </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 407 | + <target_attribute_key>DATA_VALUE</target_attribute_key> | |
| 408 | + <target_detail>Y</target_detail> | |
| 409 | + <source_step>合并增加常量数据metadata</source_step> | |
| 410 | + <source_field>col_value</source_field> | |
| 411 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 412 | + <target_attribute_key>LENGTH</target_attribute_key> | |
| 413 | + <target_detail>Y</target_detail> | |
| 414 | + <source_step>列拆分为多行</source_step> | |
| 415 | + <source_field>length</source_field> | |
| 416 | + </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 417 | + <target_attribute_key>TYPE</target_attribute_key> | |
| 418 | + <target_detail>Y</target_detail> | |
| 419 | + <source_step>合并增加常量数据metadata</source_step> | |
| 420 | + <source_field>col_type</source_field> | |
| 421 | + </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 422 | + <target_attribute_key>NAME</target_attribute_key> | |
| 423 | + <target_detail>Y</target_detail> | |
| 424 | + <source_step>增加normalize元数据</source_step> | |
| 425 | + <source_field>nfieldname</source_field> | |
| 426 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 427 | + <target_attribute_key>LENGTH</target_attribute_key> | |
| 428 | + <target_detail>Y</target_detail> | |
| 429 | + <source_step>增加excel字段其他元数据</source_step> | |
| 430 | + <source_field>length</source_field> | |
| 431 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 432 | + <target_attribute_key>TYPE</target_attribute_key> | |
| 433 | + <target_detail>Y</target_detail> | |
| 434 | + <source_step>增加excel字段其他元数据</source_step> | |
| 435 | + <source_field>fieldtype</source_field> | |
| 436 | + </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 437 | + <target_attribute_key>VALUE</target_attribute_key> | |
| 438 | + <target_detail>Y</target_detail> | |
| 439 | + <source_step>列拆分为多行 2</source_step> | |
| 440 | + <source_field>fieldName</source_field> | |
| 441 | + </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 442 | + <target_attribute_key>NORMALISED</target_attribute_key> | |
| 443 | + <target_detail>Y</target_detail> | |
| 444 | + <source_step>列拆分为多行 2</source_step> | |
| 445 | + <source_field>value</source_field> | |
| 446 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 447 | + <target_attribute_key>PRECISION</target_attribute_key> | |
| 448 | + <target_detail>Y</target_detail> | |
| 449 | + <source_step>列拆分为多行</source_step> | |
| 450 | + <source_field>precision</source_field> | |
| 451 | + </mapping> </mappings> <cluster_schema/> | |
| 452 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 453 | + <xloc>695</xloc> | |
| 454 | + <yloc>177</yloc> | |
| 455 | + <draw>Y</draw> | |
| 456 | + </GUI> | |
| 457 | + </step> | |
| 458 | + | |
| 459 | + <step> | |
| 460 | + <name>停车场名称metadata字段</name> | |
| 461 | + <type>SelectValues</type> | |
| 462 | + <description/> | |
| 463 | + <distribute>Y</distribute> | |
| 464 | + <custom_distribution/> | |
| 465 | + <copies>1</copies> | |
| 466 | + <partitioning> | |
| 467 | + <method>none</method> | |
| 468 | + <schema_name/> | |
| 469 | + </partitioning> | |
| 470 | + <fields> <field> <name>col_name</name> | |
| 471 | + <rename/> | |
| 472 | + <length>-2</length> | |
| 473 | + <precision>-2</precision> | |
| 474 | + </field> <field> <name>col_type</name> | |
| 475 | + <rename/> | |
| 476 | + <length>-2</length> | |
| 477 | + <precision>-2</precision> | |
| 478 | + </field> <field> <name>col_value</name> | |
| 479 | + <rename/> | |
| 480 | + <length>-2</length> | |
| 481 | + <precision>-2</precision> | |
| 482 | + </field> <select_unspecified>N</select_unspecified> | |
| 483 | + </fields> <cluster_schema/> | |
| 484 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 485 | + <xloc>490</xloc> | |
| 486 | + <yloc>429</yloc> | |
| 487 | + <draw>Y</draw> | |
| 488 | + </GUI> | |
| 489 | + </step> | |
| 490 | + | |
| 491 | + <step> | |
| 492 | + <name>合并增加常量数据metadata</name> | |
| 493 | + <type>Dummy</type> | |
| 494 | + <description/> | |
| 495 | + <distribute>Y</distribute> | |
| 496 | + <custom_distribution/> | |
| 497 | + <copies>1</copies> | |
| 498 | + <partitioning> | |
| 499 | + <method>none</method> | |
| 500 | + <schema_name/> | |
| 501 | + </partitioning> | |
| 502 | + <cluster_schema/> | |
| 503 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 504 | + <xloc>702</xloc> | |
| 505 | + <yloc>383</yloc> | |
| 506 | + <draw>Y</draw> | |
| 507 | + </GUI> | |
| 508 | + </step> | |
| 509 | + | |
| 510 | + <step> | |
| 511 | + <name>增加excel字段其他元数据</name> | |
| 512 | + <type>Constant</type> | |
| 513 | + <description/> | |
| 514 | + <distribute>Y</distribute> | |
| 515 | + <custom_distribution/> | |
| 516 | + <copies>1</copies> | |
| 517 | + <partitioning> | |
| 518 | + <method>none</method> | |
| 519 | + <schema_name/> | |
| 520 | + </partitioning> | |
| 521 | + <fields> | |
| 522 | + <field> | |
| 523 | + <name>fieldtype</name> | |
| 524 | + <type>String</type> | |
| 525 | + <format/> | |
| 526 | + <currency/> | |
| 527 | + <decimal/> | |
| 528 | + <group/> | |
| 529 | + <nullif>String</nullif> | |
| 530 | + <length>-1</length> | |
| 531 | + <precision>-1</precision> | |
| 532 | + <set_empty_string>N</set_empty_string> | |
| 533 | + </field> | |
| 534 | + <field> | |
| 535 | + <name>length</name> | |
| 536 | + <type>String</type> | |
| 537 | + <format/> | |
| 538 | + <currency/> | |
| 539 | + <decimal/> | |
| 540 | + <group/> | |
| 541 | + <nullif>-1</nullif> | |
| 542 | + <length>-1</length> | |
| 543 | + <precision>-1</precision> | |
| 544 | + <set_empty_string>N</set_empty_string> | |
| 545 | + </field> | |
| 546 | + <field> | |
| 547 | + <name>precision</name> | |
| 548 | + <type>String</type> | |
| 549 | + <format/> | |
| 550 | + <currency/> | |
| 551 | + <decimal/> | |
| 552 | + <group/> | |
| 553 | + <nullif>-1</nullif> | |
| 554 | + <length>-1</length> | |
| 555 | + <precision>-1</precision> | |
| 556 | + <set_empty_string>N</set_empty_string> | |
| 557 | + </field> | |
| 558 | + <field> | |
| 559 | + <name>trim_type</name> | |
| 560 | + <type>String</type> | |
| 561 | + <format/> | |
| 562 | + <currency/> | |
| 563 | + <decimal/> | |
| 564 | + <group/> | |
| 565 | + <nullif>none</nullif> | |
| 566 | + <length>-1</length> | |
| 567 | + <precision>-1</precision> | |
| 568 | + <set_empty_string>N</set_empty_string> | |
| 569 | + </field> | |
| 570 | + <field> | |
| 571 | + <name>repeat</name> | |
| 572 | + <type>String</type> | |
| 573 | + <format/> | |
| 574 | + <currency/> | |
| 575 | + <decimal/> | |
| 576 | + <group/> | |
| 577 | + <nullif>N</nullif> | |
| 578 | + <length>-1</length> | |
| 579 | + <precision>-1</precision> | |
| 580 | + <set_empty_string>N</set_empty_string> | |
| 581 | + </field> | |
| 582 | + <field> | |
| 583 | + <name>format</name> | |
| 584 | + <type>String</type> | |
| 585 | + <format/> | |
| 586 | + <currency/> | |
| 587 | + <decimal/> | |
| 588 | + <group/> | |
| 589 | + <nullif>#</nullif> | |
| 590 | + <length>-1</length> | |
| 591 | + <precision>-1</precision> | |
| 592 | + <set_empty_string>N</set_empty_string> | |
| 593 | + </field> | |
| 594 | + </fields> | |
| 595 | + <cluster_schema/> | |
| 596 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 597 | + <xloc>441</xloc> | |
| 598 | + <yloc>172</yloc> | |
| 599 | + <draw>Y</draw> | |
| 600 | + </GUI> | |
| 601 | + </step> | |
| 602 | + | |
| 603 | + <step> | |
| 604 | + <name>增加normalize元数据</name> | |
| 605 | + <type>Constant</type> | |
| 606 | + <description/> | |
| 607 | + <distribute>Y</distribute> | |
| 608 | + <custom_distribution/> | |
| 609 | + <copies>1</copies> | |
| 610 | + <partitioning> | |
| 611 | + <method>none</method> | |
| 612 | + <schema_name/> | |
| 613 | + </partitioning> | |
| 614 | + <fields> | |
| 615 | + <field> | |
| 616 | + <name>valuefield</name> | |
| 617 | + <type>String</type> | |
| 618 | + <format/> | |
| 619 | + <currency/> | |
| 620 | + <decimal/> | |
| 621 | + <group/> | |
| 622 | + <nullif>发车时间</nullif> | |
| 623 | + <length>-1</length> | |
| 624 | + <precision>-1</precision> | |
| 625 | + <set_empty_string>N</set_empty_string> | |
| 626 | + </field> | |
| 627 | + </fields> | |
| 628 | + <cluster_schema/> | |
| 629 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 630 | + <xloc>447</xloc> | |
| 631 | + <yloc>257</yloc> | |
| 632 | + <draw>Y</draw> | |
| 633 | + </GUI> | |
| 634 | + </step> | |
| 635 | + | |
| 636 | + <step> | |
| 637 | + <name>增加停车场名称metadata</name> | |
| 638 | + <type>Constant</type> | |
| 639 | + <description/> | |
| 640 | + <distribute>Y</distribute> | |
| 641 | + <custom_distribution/> | |
| 642 | + <copies>1</copies> | |
| 643 | + <partitioning> | |
| 644 | + <method>none</method> | |
| 645 | + <schema_name/> | |
| 646 | + </partitioning> | |
| 647 | + <fields> | |
| 648 | + <field> | |
| 649 | + <name>col_name</name> | |
| 650 | + <type>String</type> | |
| 651 | + <format/> | |
| 652 | + <currency/> | |
| 653 | + <decimal/> | |
| 654 | + <group/> | |
| 655 | + <nullif>tccname_</nullif> | |
| 656 | + <length>-1</length> | |
| 657 | + <precision>-1</precision> | |
| 658 | + <set_empty_string>N</set_empty_string> | |
| 659 | + </field> | |
| 660 | + <field> | |
| 661 | + <name>col_type</name> | |
| 662 | + <type>String</type> | |
| 663 | + <format/> | |
| 664 | + <currency/> | |
| 665 | + <decimal/> | |
| 666 | + <group/> | |
| 667 | + <nullif>String</nullif> | |
| 668 | + <length>-1</length> | |
| 669 | + <precision>-1</precision> | |
| 670 | + <set_empty_string>N</set_empty_string> | |
| 671 | + </field> | |
| 672 | + <field> | |
| 673 | + <name>col_value</name> | |
| 674 | + <type>String</type> | |
| 675 | + <format/> | |
| 676 | + <currency/> | |
| 677 | + <decimal/> | |
| 678 | + <group/> | |
| 679 | + <nullif>replace</nullif> | |
| 680 | + <length>-1</length> | |
| 681 | + <precision>-1</precision> | |
| 682 | + <set_empty_string>N</set_empty_string> | |
| 683 | + </field> | |
| 684 | + </fields> | |
| 685 | + <cluster_schema/> | |
| 686 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 687 | + <xloc>208</xloc> | |
| 688 | + <yloc>428</yloc> | |
| 689 | + <draw>Y</draw> | |
| 690 | + </GUI> | |
| 691 | + </step> | |
| 692 | + | |
| 693 | + <step> | |
| 694 | + <name>增加时刻表名称metadata</name> | |
| 695 | + <type>Constant</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 | + <fields> | |
| 705 | + <field> | |
| 706 | + <name>col_name</name> | |
| 707 | + <type>String</type> | |
| 708 | + <format/> | |
| 709 | + <currency/> | |
| 710 | + <decimal/> | |
| 711 | + <group/> | |
| 712 | + <nullif>ttinfoname_</nullif> | |
| 713 | + <length>-1</length> | |
| 714 | + <precision>-1</precision> | |
| 715 | + <set_empty_string>N</set_empty_string> | |
| 716 | + </field> | |
| 717 | + <field> | |
| 718 | + <name>col_type</name> | |
| 719 | + <type>String</type> | |
| 720 | + <format/> | |
| 721 | + <currency/> | |
| 722 | + <decimal/> | |
| 723 | + <group/> | |
| 724 | + <nullif>String</nullif> | |
| 725 | + <length>-1</length> | |
| 726 | + <precision>-1</precision> | |
| 727 | + <set_empty_string>N</set_empty_string> | |
| 728 | + </field> | |
| 729 | + <field> | |
| 730 | + <name>col_value</name> | |
| 731 | + <type>String</type> | |
| 732 | + <format/> | |
| 733 | + <currency/> | |
| 734 | + <decimal/> | |
| 735 | + <group/> | |
| 736 | + <nullif>replace</nullif> | |
| 737 | + <length>-1</length> | |
| 738 | + <precision>-1</precision> | |
| 739 | + <set_empty_string>N</set_empty_string> | |
| 740 | + </field> | |
| 741 | + </fields> | |
| 742 | + <cluster_schema/> | |
| 743 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 744 | + <xloc>216</xloc> | |
| 745 | + <yloc>508</yloc> | |
| 746 | + <draw>Y</draw> | |
| 747 | + </GUI> | |
| 748 | + </step> | |
| 749 | + | |
| 750 | + <step> | |
| 751 | + <name>增加线路名称metadata</name> | |
| 752 | + <type>Constant</type> | |
| 753 | + <description/> | |
| 754 | + <distribute>Y</distribute> | |
| 755 | + <custom_distribution/> | |
| 756 | + <copies>1</copies> | |
| 757 | + <partitioning> | |
| 758 | + <method>none</method> | |
| 759 | + <schema_name/> | |
| 760 | + </partitioning> | |
| 761 | + <fields> | |
| 762 | + <field> | |
| 763 | + <name>col_name</name> | |
| 764 | + <type>String</type> | |
| 765 | + <format/> | |
| 766 | + <currency/> | |
| 767 | + <decimal/> | |
| 768 | + <group/> | |
| 769 | + <nullif>xlname_</nullif> | |
| 770 | + <length>-1</length> | |
| 771 | + <precision>-1</precision> | |
| 772 | + <set_empty_string>N</set_empty_string> | |
| 773 | + </field> | |
| 774 | + <field> | |
| 775 | + <name>col_type</name> | |
| 776 | + <type>String</type> | |
| 777 | + <format/> | |
| 778 | + <currency/> | |
| 779 | + <decimal/> | |
| 780 | + <group/> | |
| 781 | + <nullif>String</nullif> | |
| 782 | + <length>-1</length> | |
| 783 | + <precision>-1</precision> | |
| 784 | + <set_empty_string>N</set_empty_string> | |
| 785 | + </field> | |
| 786 | + <field> | |
| 787 | + <name>col_value</name> | |
| 788 | + <type>String</type> | |
| 789 | + <format/> | |
| 790 | + <currency/> | |
| 791 | + <decimal/> | |
| 792 | + <group/> | |
| 793 | + <nullif>replace</nullif> | |
| 794 | + <length>-1</length> | |
| 795 | + <precision>-1</precision> | |
| 796 | + <set_empty_string>N</set_empty_string> | |
| 797 | + </field> | |
| 798 | + </fields> | |
| 799 | + <cluster_schema/> | |
| 800 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 801 | + <xloc>202</xloc> | |
| 802 | + <yloc>351</yloc> | |
| 803 | + <draw>Y</draw> | |
| 804 | + </GUI> | |
| 805 | + </step> | |
| 806 | + | |
| 807 | + <step> | |
| 808 | + <name>时刻表名称metadata字段</name> | |
| 809 | + <type>SelectValues</type> | |
| 810 | + <description/> | |
| 811 | + <distribute>Y</distribute> | |
| 812 | + <custom_distribution/> | |
| 813 | + <copies>1</copies> | |
| 814 | + <partitioning> | |
| 815 | + <method>none</method> | |
| 816 | + <schema_name/> | |
| 817 | + </partitioning> | |
| 818 | + <fields> <field> <name>col_name</name> | |
| 819 | + <rename/> | |
| 820 | + <length>-2</length> | |
| 821 | + <precision>-2</precision> | |
| 822 | + </field> <field> <name>col_type</name> | |
| 823 | + <rename/> | |
| 824 | + <length>-2</length> | |
| 825 | + <precision>-2</precision> | |
| 826 | + </field> <field> <name>col_value</name> | |
| 827 | + <rename/> | |
| 828 | + <length>-2</length> | |
| 829 | + <precision>-2</precision> | |
| 830 | + </field> <select_unspecified>N</select_unspecified> | |
| 831 | + </fields> <cluster_schema/> | |
| 832 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 833 | + <xloc>496</xloc> | |
| 834 | + <yloc>508</yloc> | |
| 835 | + <draw>Y</draw> | |
| 836 | + </GUI> | |
| 837 | + </step> | |
| 838 | + | |
| 839 | + <step> | |
| 840 | + <name>替换停车厂名字 </name> | |
| 841 | + <type>SetValueField</type> | |
| 842 | + <description/> | |
| 843 | + <distribute>Y</distribute> | |
| 844 | + <custom_distribution/> | |
| 845 | + <copies>1</copies> | |
| 846 | + <partitioning> | |
| 847 | + <method>none</method> | |
| 848 | + <schema_name/> | |
| 849 | + </partitioning> | |
| 850 | + <fields> | |
| 851 | + <field> | |
| 852 | + <name>col_value</name> | |
| 853 | + <replaceby>tccname_</replaceby> | |
| 854 | + </field> | |
| 855 | + </fields> | |
| 856 | + <cluster_schema/> | |
| 857 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 858 | + <xloc>345</xloc> | |
| 859 | + <yloc>430</yloc> | |
| 860 | + <draw>Y</draw> | |
| 861 | + </GUI> | |
| 862 | + </step> | |
| 863 | + | |
| 864 | + <step> | |
| 865 | + <name>替换时刻表名字</name> | |
| 866 | + <type>SetValueField</type> | |
| 867 | + <description/> | |
| 868 | + <distribute>Y</distribute> | |
| 869 | + <custom_distribution/> | |
| 870 | + <copies>1</copies> | |
| 871 | + <partitioning> | |
| 872 | + <method>none</method> | |
| 873 | + <schema_name/> | |
| 874 | + </partitioning> | |
| 875 | + <fields> | |
| 876 | + <field> | |
| 877 | + <name>col_value</name> | |
| 878 | + <replaceby>ttinfoname_</replaceby> | |
| 879 | + </field> | |
| 880 | + </fields> | |
| 881 | + <cluster_schema/> | |
| 882 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 883 | + <xloc>354</xloc> | |
| 884 | + <yloc>509</yloc> | |
| 885 | + <draw>Y</draw> | |
| 886 | + </GUI> | |
| 887 | + </step> | |
| 888 | + | |
| 889 | + <step> | |
| 890 | + <name>替换线路名称</name> | |
| 891 | + <type>SetValueField</type> | |
| 892 | + <description/> | |
| 893 | + <distribute>Y</distribute> | |
| 894 | + <custom_distribution/> | |
| 895 | + <copies>1</copies> | |
| 896 | + <partitioning> | |
| 897 | + <method>none</method> | |
| 898 | + <schema_name/> | |
| 899 | + </partitioning> | |
| 900 | + <fields> | |
| 901 | + <field> | |
| 902 | + <name>col_value</name> | |
| 903 | + <replaceby>xlname_</replaceby> | |
| 904 | + </field> | |
| 905 | + </fields> | |
| 906 | + <cluster_schema/> | |
| 907 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 908 | + <xloc>340</xloc> | |
| 909 | + <yloc>352</yloc> | |
| 910 | + <draw>Y</draw> | |
| 911 | + </GUI> | |
| 912 | + </step> | |
| 913 | + | |
| 914 | + <step> | |
| 915 | + <name>线路名称metadata字段</name> | |
| 916 | + <type>SelectValues</type> | |
| 917 | + <description/> | |
| 918 | + <distribute>Y</distribute> | |
| 919 | + <custom_distribution/> | |
| 920 | + <copies>1</copies> | |
| 921 | + <partitioning> | |
| 922 | + <method>none</method> | |
| 923 | + <schema_name/> | |
| 924 | + </partitioning> | |
| 925 | + <fields> <field> <name>col_name</name> | |
| 926 | + <rename/> | |
| 927 | + <length>-2</length> | |
| 928 | + <precision>-2</precision> | |
| 929 | + </field> <field> <name>col_type</name> | |
| 930 | + <rename/> | |
| 931 | + <length>-2</length> | |
| 932 | + <precision>-2</precision> | |
| 933 | + </field> <field> <name>col_value</name> | |
| 934 | + <rename/> | |
| 935 | + <length>-2</length> | |
| 936 | + <precision>-2</precision> | |
| 937 | + </field> <select_unspecified>N</select_unspecified> | |
| 938 | + </fields> <cluster_schema/> | |
| 939 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 940 | + <xloc>487</xloc> | |
| 941 | + <yloc>353</yloc> | |
| 942 | + <draw>Y</draw> | |
| 943 | + </GUI> | |
| 944 | + </step> | |
| 945 | + | |
| 946 | + <step> | |
| 947 | + <name>获取excel字段名字符串</name> | |
| 948 | + <type>GetVariable</type> | |
| 949 | + <description/> | |
| 950 | + <distribute>Y</distribute> | |
| 951 | + <custom_distribution/> | |
| 952 | + <copies>1</copies> | |
| 953 | + <partitioning> | |
| 954 | + <method>none</method> | |
| 955 | + <schema_name/> | |
| 956 | + </partitioning> | |
| 957 | + <fields> | |
| 958 | + <field> | |
| 959 | + <name>fieldnames</name> | |
| 960 | + <variable>${excelfieldnames}</variable> | |
| 961 | + <type>String</type> | |
| 962 | + <format/> | |
| 963 | + <currency/> | |
| 964 | + <decimal/> | |
| 965 | + <group/> | |
| 966 | + <length>-1</length> | |
| 967 | + <precision>-1</precision> | |
| 968 | + <trim_type>none</trim_type> | |
| 969 | + </field> | |
| 970 | + </fields> | |
| 971 | + <cluster_schema/> | |
| 972 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 973 | + <xloc>71</xloc> | |
| 974 | + <yloc>163</yloc> | |
| 975 | + <draw>Y</draw> | |
| 976 | + </GUI> | |
| 977 | + </step> | |
| 978 | + | |
| 979 | + <step> | |
| 980 | + <name>获取excel文件名</name> | |
| 981 | + <type>GetVariable</type> | |
| 982 | + <description/> | |
| 983 | + <distribute>Y</distribute> | |
| 984 | + <custom_distribution/> | |
| 985 | + <copies>1</copies> | |
| 986 | + <partitioning> | |
| 987 | + <method>none</method> | |
| 988 | + <schema_name/> | |
| 989 | + </partitioning> | |
| 990 | + <fields> | |
| 991 | + <field> | |
| 992 | + <name>filepath_</name> | |
| 993 | + <variable>${filepath}</variable> | |
| 994 | + <type>String</type> | |
| 995 | + <format/> | |
| 996 | + <currency/> | |
| 997 | + <decimal/> | |
| 998 | + <group/> | |
| 999 | + <length>-1</length> | |
| 1000 | + <precision>-1</precision> | |
| 1001 | + <trim_type>none</trim_type> | |
| 1002 | + </field> | |
| 1003 | + <field> | |
| 1004 | + <name>erroroutputdir_</name> | |
| 1005 | + <variable>${erroroutputdir}</variable> | |
| 1006 | + <type>String</type> | |
| 1007 | + <format/> | |
| 1008 | + <currency/> | |
| 1009 | + <decimal/> | |
| 1010 | + <group/> | |
| 1011 | + <length>-1</length> | |
| 1012 | + <precision>-1</precision> | |
| 1013 | + <trim_type>none</trim_type> | |
| 1014 | + </field> | |
| 1015 | + <field> | |
| 1016 | + <name>sheetname_</name> | |
| 1017 | + <variable>${sheetname}</variable> | |
| 1018 | + <type>String</type> | |
| 1019 | + <format/> | |
| 1020 | + <currency/> | |
| 1021 | + <decimal/> | |
| 1022 | + <group/> | |
| 1023 | + <length>-1</length> | |
| 1024 | + <precision>-1</precision> | |
| 1025 | + <trim_type>none</trim_type> | |
| 1026 | + </field> | |
| 1027 | + </fields> | |
| 1028 | + <cluster_schema/> | |
| 1029 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1030 | + <xloc>120</xloc> | |
| 1031 | + <yloc>62</yloc> | |
| 1032 | + <draw>Y</draw> | |
| 1033 | + </GUI> | |
| 1034 | + </step> | |
| 1035 | + | |
| 1036 | + <step> | |
| 1037 | + <name>获取normalize字段名字符串</name> | |
| 1038 | + <type>GetVariable</type> | |
| 1039 | + <description/> | |
| 1040 | + <distribute>Y</distribute> | |
| 1041 | + <custom_distribution/> | |
| 1042 | + <copies>1</copies> | |
| 1043 | + <partitioning> | |
| 1044 | + <method>none</method> | |
| 1045 | + <schema_name/> | |
| 1046 | + </partitioning> | |
| 1047 | + <fields> | |
| 1048 | + <field> | |
| 1049 | + <name>normalizefieldnames_</name> | |
| 1050 | + <variable>${normalizefieldnames}</variable> | |
| 1051 | + <type>String</type> | |
| 1052 | + <format/> | |
| 1053 | + <currency/> | |
| 1054 | + <decimal/> | |
| 1055 | + <group/> | |
| 1056 | + <length>-1</length> | |
| 1057 | + <precision>-1</precision> | |
| 1058 | + <trim_type>none</trim_type> | |
| 1059 | + </field> | |
| 1060 | + </fields> | |
| 1061 | + <cluster_schema/> | |
| 1062 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1063 | + <xloc>80</xloc> | |
| 1064 | + <yloc>261</yloc> | |
| 1065 | + <draw>Y</draw> | |
| 1066 | + </GUI> | |
| 1067 | + </step> | |
| 1068 | + | |
| 1069 | + <step> | |
| 1070 | + <name>获取停车场名称</name> | |
| 1071 | + <type>GetVariable</type> | |
| 1072 | + <description/> | |
| 1073 | + <distribute>Y</distribute> | |
| 1074 | + <custom_distribution/> | |
| 1075 | + <copies>1</copies> | |
| 1076 | + <partitioning> | |
| 1077 | + <method>none</method> | |
| 1078 | + <schema_name/> | |
| 1079 | + </partitioning> | |
| 1080 | + <fields> | |
| 1081 | + <field> | |
| 1082 | + <name>tccname_</name> | |
| 1083 | + <variable>${tccname}</variable> | |
| 1084 | + <type>String</type> | |
| 1085 | + <format/> | |
| 1086 | + <currency/> | |
| 1087 | + <decimal/> | |
| 1088 | + <group/> | |
| 1089 | + <length>-1</length> | |
| 1090 | + <precision>-1</precision> | |
| 1091 | + <trim_type>none</trim_type> | |
| 1092 | + </field> | |
| 1093 | + </fields> | |
| 1094 | + <cluster_schema/> | |
| 1095 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1096 | + <xloc>80</xloc> | |
| 1097 | + <yloc>430</yloc> | |
| 1098 | + <draw>Y</draw> | |
| 1099 | + </GUI> | |
| 1100 | + </step> | |
| 1101 | + | |
| 1102 | + <step> | |
| 1103 | + <name>获取时刻表名称名称</name> | |
| 1104 | + <type>GetVariable</type> | |
| 1105 | + <description/> | |
| 1106 | + <distribute>Y</distribute> | |
| 1107 | + <custom_distribution/> | |
| 1108 | + <copies>1</copies> | |
| 1109 | + <partitioning> | |
| 1110 | + <method>none</method> | |
| 1111 | + <schema_name/> | |
| 1112 | + </partitioning> | |
| 1113 | + <fields> | |
| 1114 | + <field> | |
| 1115 | + <name>ttinfoname_</name> | |
| 1116 | + <variable>${ttinfoname}</variable> | |
| 1117 | + <type>String</type> | |
| 1118 | + <format/> | |
| 1119 | + <currency/> | |
| 1120 | + <decimal/> | |
| 1121 | + <group/> | |
| 1122 | + <length>-1</length> | |
| 1123 | + <precision>-1</precision> | |
| 1124 | + <trim_type>none</trim_type> | |
| 1125 | + </field> | |
| 1126 | + </fields> | |
| 1127 | + <cluster_schema/> | |
| 1128 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1129 | + <xloc>82</xloc> | |
| 1130 | + <yloc>508</yloc> | |
| 1131 | + <draw>Y</draw> | |
| 1132 | + </GUI> | |
| 1133 | + </step> | |
| 1134 | + | |
| 1135 | + <step> | |
| 1136 | + <name>获取线路名称</name> | |
| 1137 | + <type>GetVariable</type> | |
| 1138 | + <description/> | |
| 1139 | + <distribute>Y</distribute> | |
| 1140 | + <custom_distribution/> | |
| 1141 | + <copies>1</copies> | |
| 1142 | + <partitioning> | |
| 1143 | + <method>none</method> | |
| 1144 | + <schema_name/> | |
| 1145 | + </partitioning> | |
| 1146 | + <fields> | |
| 1147 | + <field> | |
| 1148 | + <name>xlname_</name> | |
| 1149 | + <variable>${xlname}</variable> | |
| 1150 | + <type>String</type> | |
| 1151 | + <format/> | |
| 1152 | + <currency/> | |
| 1153 | + <decimal/> | |
| 1154 | + <group/> | |
| 1155 | + <length>-1</length> | |
| 1156 | + <precision>-1</precision> | |
| 1157 | + <trim_type>none</trim_type> | |
| 1158 | + </field> | |
| 1159 | + </fields> | |
| 1160 | + <cluster_schema/> | |
| 1161 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1162 | + <xloc>78</xloc> | |
| 1163 | + <yloc>351</yloc> | |
| 1164 | + <draw>Y</draw> | |
| 1165 | + </GUI> | |
| 1166 | + </step> | |
| 1167 | + | |
| 1168 | + <step> | |
| 1169 | + <name>逗号切分成字段名</name> | |
| 1170 | + <type>SplitFieldToRows3</type> | |
| 1171 | + <description/> | |
| 1172 | + <distribute>Y</distribute> | |
| 1173 | + <custom_distribution/> | |
| 1174 | + <copies>1</copies> | |
| 1175 | + <partitioning> | |
| 1176 | + <method>none</method> | |
| 1177 | + <schema_name/> | |
| 1178 | + </partitioning> | |
| 1179 | + <splitfield>fieldnames</splitfield> | |
| 1180 | + <delimiter>,</delimiter> | |
| 1181 | + <newfield>fieldname</newfield> | |
| 1182 | + <rownum>N</rownum> | |
| 1183 | + <rownum_field/> | |
| 1184 | + <resetrownumber>Y</resetrownumber> | |
| 1185 | + <delimiter_is_regex>N</delimiter_is_regex> | |
| 1186 | + <cluster_schema/> | |
| 1187 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1188 | + <xloc>261</xloc> | |
| 1189 | + <yloc>163</yloc> | |
| 1190 | + <draw>Y</draw> | |
| 1191 | + </GUI> | |
| 1192 | + </step> | |
| 1193 | + | |
| 1194 | + <step> | |
| 1195 | + <name>逗号切分成字段名 2</name> | |
| 1196 | + <type>SplitFieldToRows3</type> | |
| 1197 | + <description/> | |
| 1198 | + <distribute>Y</distribute> | |
| 1199 | + <custom_distribution/> | |
| 1200 | + <copies>1</copies> | |
| 1201 | + <partitioning> | |
| 1202 | + <method>none</method> | |
| 1203 | + <schema_name/> | |
| 1204 | + </partitioning> | |
| 1205 | + <splitfield>normalizefieldnames_</splitfield> | |
| 1206 | + <delimiter>,</delimiter> | |
| 1207 | + <newfield>nfieldname</newfield> | |
| 1208 | + <rownum>N</rownum> | |
| 1209 | + <rownum_field/> | |
| 1210 | + <resetrownumber>Y</resetrownumber> | |
| 1211 | + <delimiter_is_regex>N</delimiter_is_regex> | |
| 1212 | + <cluster_schema/> | |
| 1213 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1214 | + <xloc>263</xloc> | |
| 1215 | + <yloc>257</yloc> | |
| 1216 | + <draw>Y</draw> | |
| 1217 | + </GUI> | |
| 1218 | + </step> | |
| 1219 | + | |
| 1220 | + <step_error_handling> | |
| 1221 | + </step_error_handling> | |
| 1222 | + <slave-step-copy-partition-distribution> | |
| 1223 | +</slave-step-copy-partition-distribution> | |
| 1224 | + <slave_transformation>N</slave_transformation> | |
| 1225 | + | |
| 1226 | +</transformation> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/main.js
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/index_info.html
| ... | ... | @@ -34,35 +34,35 @@ |
| 34 | 34 | <span ng-bind="etime | date: 'yyyy-MM-dd ' + '排班明细列表'"></span> |
| 35 | 35 | </span> |
| 36 | 36 | </div> |
| 37 | - <div class="actions"> | |
| 38 | - <a href="javascirpt:" class="btn btn-circle blue" > | |
| 39 | - <i class="fa fa-plus"></i> | |
| 40 | - 添加 | |
| 41 | - </a> | |
| 37 | + <!--<div class="actions">--> | |
| 38 | + <!--<a href="javascirpt:" class="btn btn-circle blue" >--> | |
| 39 | + <!--<i class="fa fa-plus"></i>--> | |
| 40 | + <!--添加--> | |
| 41 | + <!--</a>--> | |
| 42 | 42 | |
| 43 | - <div class="btn-group"> | |
| 44 | - <a href="javascript:" class="btn red btn-outline btn-circle" data-toggle="dropdown"> | |
| 45 | - <i class="fa fa-share"></i> | |
| 46 | - <span>数据工具</span> | |
| 47 | - <i class="fa fa-angle-down"></i> | |
| 48 | - </a> | |
| 49 | - <ul class="dropdown-menu pull-right"> | |
| 50 | - <li> | |
| 51 | - <a href="javascript:" class="tool-action"> | |
| 52 | - <i class="fa fa-file-excel-o"></i> | |
| 53 | - 导出excel | |
| 54 | - </a> | |
| 55 | - </li> | |
| 56 | - <li class="divider"></li> | |
| 57 | - <li> | |
| 58 | - <a href="javascript:" class="tool-action"> | |
| 59 | - <i class="fa fa-refresh"></i> | |
| 60 | - 刷行数据 | |
| 61 | - </a> | |
| 62 | - </li> | |
| 63 | - </ul> | |
| 64 | - </div> | |
| 65 | - </div> | |
| 43 | + <!--<div class="btn-group">--> | |
| 44 | + <!--<a href="javascript:" class="btn red btn-outline btn-circle" data-toggle="dropdown">--> | |
| 45 | + <!--<i class="fa fa-share"></i>--> | |
| 46 | + <!--<span>数据工具</span>--> | |
| 47 | + <!--<i class="fa fa-angle-down"></i>--> | |
| 48 | + <!--</a>--> | |
| 49 | + <!--<ul class="dropdown-menu pull-right">--> | |
| 50 | + <!--<li>--> | |
| 51 | + <!--<a href="javascript:" class="tool-action">--> | |
| 52 | + <!--<i class="fa fa-file-excel-o"></i>--> | |
| 53 | + <!--导出excel--> | |
| 54 | + <!--</a>--> | |
| 55 | + <!--</li>--> | |
| 56 | + <!--<li class="divider"></li>--> | |
| 57 | + <!--<li>--> | |
| 58 | + <!--<a href="javascript:" class="tool-action">--> | |
| 59 | + <!--<i class="fa fa-refresh"></i>--> | |
| 60 | + <!--刷行数据--> | |
| 61 | + <!--</a>--> | |
| 62 | + <!--</li>--> | |
| 63 | + <!--</ul>--> | |
| 64 | + <!--</div>--> | |
| 65 | + <!--</div>--> | |
| 66 | 66 | </div> |
| 67 | 67 | |
| 68 | 68 | <div class="portlet-body"> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/list_info.html
| ... | ... | @@ -4,28 +4,37 @@ |
| 4 | 4 | <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column"> |
| 5 | 5 | <thead> |
| 6 | 6 | <tr role="row" class="heading"> |
| 7 | - <th style="width: 40pt;">序号</th> | |
| 8 | - <th>线路</th> | |
| 9 | - <th style="width: 80pt;">日期</th> | |
| 10 | - <th>路牌</th> | |
| 11 | - <th>车辆</th> | |
| 12 | - <th>备注</th> | |
| 13 | - <th>报道时间</th> | |
| 14 | - <th>出场时间</th> | |
| 15 | - <th>驾驶员</th> | |
| 16 | - <th>工号</th> | |
| 17 | - <th>售票员</th> | |
| 18 | - <th>工号</th> | |
| 19 | - <th>班次类型</th> | |
| 20 | - <th>发车时间</th> | |
| 7 | + <th style="width: 50px;">序号</th> | |
| 8 | + <th style="width: 100px;">线路</th> | |
| 9 | + <th style="width: 150px;">日期</th> | |
| 10 | + <th style="width: 60px;">路牌</th> | |
| 11 | + <th style="width: 150px;">车辆</th> | |
| 12 | + <th style="width: 150px;">驾驶员(工号)</th> | |
| 13 | + <th style="width: 150px;">售票员(工号)</th> | |
| 14 | + <th style="width: 80px;">班次类型</th> | |
| 15 | + <th style="width: 80px;">发车时间</th> | |
| 16 | + <th style="width: 100%">时刻表</th> | |
| 21 | 17 | |
| 22 | 18 | <!-- TODO:还有其他的 --> |
| 23 | 19 | |
| 24 | - <th style="width: 115pt;">操作</th> | |
| 25 | 20 | </tr> |
| 26 | 21 | <tr role="row" class="filter"> |
| 27 | 22 | <td></td> |
| 28 | 23 | <td></td> |
| 24 | + <td> | |
| 25 | + <div class="input-group"> | |
| 26 | + <input type="text" class="form-control input-sm" | |
| 27 | + name="scheduleDate" placeholder="选择日期..." | |
| 28 | + uib-datepicker-popup="yyyy-MM-dd" | |
| 29 | + is-open="ctrl.scheduleDate" | |
| 30 | + ng-model="ctrl.searchCondition()['scheduleDate_eq']" readonly/> | |
| 31 | + <span class="input-group-btn"> | |
| 32 | + <button type="button" class="btn btn-default btn-sm" ng-click="ctrl.scheduleDate_open()"> | |
| 33 | + <i class="glyphicon glyphicon-calendar"></i> | |
| 34 | + </button> | |
| 35 | + </span> | |
| 36 | + </div> | |
| 37 | + </td> | |
| 29 | 38 | <td></td> |
| 30 | 39 | <td></td> |
| 31 | 40 | <td></td> |
| ... | ... | @@ -33,21 +42,6 @@ |
| 33 | 42 | <td></td> |
| 34 | 43 | <td></td> |
| 35 | 44 | <td></td> |
| 36 | - <td></td> | |
| 37 | - <td></td> | |
| 38 | - <td></td> | |
| 39 | - <td></td> | |
| 40 | - <td></td> | |
| 41 | - | |
| 42 | - <td> | |
| 43 | - <button class="btn btn-sm green btn-outline filter-submit margin-bottom" | |
| 44 | - ng-click="ctrl.pageChanaged()"> | |
| 45 | - <i class="fa fa-search"></i> 搜索</button> | |
| 46 | - | |
| 47 | - <button class="btn btn-sm red btn-outline filter-cancel" | |
| 48 | - ng-click="ctrl.resetSearchCondition()"> | |
| 49 | - <i class="fa fa-times"></i> 重置</button> | |
| 50 | - </td> | |
| 51 | 45 | |
| 52 | 46 | </tr> |
| 53 | 47 | </thead> |
| ... | ... | @@ -69,24 +63,12 @@ |
| 69 | 63 | <td> |
| 70 | 64 | <span ng-bind="info.clZbh"></span> |
| 71 | 65 | </td> |
| 72 | - <td></td> | |
| 73 | 66 | <td> |
| 74 | - <span ng-bind="info.bdTime"></span> | |
| 75 | - </td> | |
| 76 | - <td> | |
| 77 | - <span ng-bind="info.ccTime"></span> | |
| 78 | - </td> | |
| 79 | - <td> | |
| 80 | - <span ng-bind="info.jName"></span> | |
| 81 | - </td> | |
| 82 | - <td> | |
| 83 | - <span ng-bind="info.jGh"></span> | |
| 84 | - </td> | |
| 85 | - <td> | |
| 86 | - <span ng-bind="info.sName"></span> | |
| 67 | + <span>{{info.jName ? info.jName + '(' + info.jGh + ')' : ''}}</span> | |
| 68 | + | |
| 87 | 69 | </td> |
| 88 | 70 | <td> |
| 89 | - <span ng-bind="info.sGh"></span> | |
| 71 | + <span>{{info.sGh ? info.sName + '(' + info.sGh + ')' : ''}}</span> | |
| 90 | 72 | </td> |
| 91 | 73 | <td> |
| 92 | 74 | <span ng-bind="info.bcType | dict:'ScheduleType':'未知' "></span> |
| ... | ... | @@ -94,13 +76,10 @@ |
| 94 | 76 | <td> |
| 95 | 77 | <span ng-bind="info.fcsj"></span> |
| 96 | 78 | </td> |
| 97 | - | |
| 98 | 79 | <td> |
| 99 | - <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>--> | |
| 100 | - <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>--> | |
| 101 | - <a ui-sref="#" class="btn default blue-stripe btn-sm"> 详细 </a> | |
| 102 | - <a ui-sref="#" class="btn default blue-stripe btn-sm"> 修改 </a> | |
| 80 | + <abbr title="info.ttInfoName">{{info.ttInfoName}}</abbr> | |
| 103 | 81 | </td> |
| 82 | + | |
| 104 | 83 | </tr> |
| 105 | 84 | </tbody> |
| 106 | 85 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/schedulePlanInfoManage.js
| ... | ... | @@ -75,6 +75,12 @@ angular.module('ScheduleApp').controller('SchedulePlanInfoManageListCtrl', ['Sch |
| 75 | 75 | infos: [] |
| 76 | 76 | }; |
| 77 | 77 | |
| 78 | + // 日期 日期控件开关 | |
| 79 | + self.scheduleDate = false; | |
| 80 | + self.scheduleDate_open = function() { | |
| 81 | + self.scheduleDate = true; | |
| 82 | + }; | |
| 83 | + | |
| 78 | 84 | var spid = $scope.spid; |
| 79 | 85 | |
| 80 | 86 | // 初始创建的时候,获取一次列表数据 |
| ... | ... | @@ -118,6 +124,18 @@ angular.module('ScheduleApp').controller('SchedulePlanInfoManageListCtrl', ['Sch |
| 118 | 124 | return schedulePlanInfoManageService.resetSearchCondition(); |
| 119 | 125 | }; |
| 120 | 126 | |
| 127 | + $scope.$watch( | |
| 128 | + function() { | |
| 129 | + return self.searchCondition()['scheduleDate_eq']; | |
| 130 | + }, | |
| 131 | + function(newValue, oldValue) { | |
| 132 | + if (newValue == undefined && oldValue == undefined) { | |
| 133 | + | |
| 134 | + } else { | |
| 135 | + self.pageChanaged(); | |
| 136 | + } | |
| 137 | + }); | |
| 138 | + | |
| 121 | 139 | }]); |
| 122 | 140 | |
| 123 | 141 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoDetailManage/form.html
| ... | ... | @@ -89,7 +89,7 @@ |
| 89 | 89 | ng-disabled="!item.isUploading"> |
| 90 | 90 | <span class="glyphicon glyphicon-ban-circle"></span> 取消 |
| 91 | 91 | </button> |
| 92 | - <button type="button" class="btn btn-danger btn-xs" ng-click="item.remove()"> | |
| 92 | + <button type="button" class="btn btn-danger btn-xs" ng-click="ctrl.removeItem(item)"> | |
| 93 | 93 | <span class="glyphicon glyphicon-trash"></span> 删除 |
| 94 | 94 | </button> |
| 95 | 95 | </td> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoDetailManage/main.js
| ... | ... | @@ -61,6 +61,11 @@ angular.module('ScheduleApp').controller( |
| 61 | 61 | self.clearInputFile = function() { |
| 62 | 62 | angular.element("input[type='file']").val(null); |
| 63 | 63 | }; |
| 64 | + self.removeItem = function(item) { | |
| 65 | + item.remove(); | |
| 66 | + self.ttInfoDetailManageForForm.sheetname = undefined; | |
| 67 | + self.sheetnames = []; | |
| 68 | + }; | |
| 64 | 69 | |
| 65 | 70 | // 上传文件组件 |
| 66 | 71 | self.uploader = new FileUploader({ |
| ... | ... | @@ -79,6 +84,8 @@ angular.module('ScheduleApp').controller( |
| 79 | 84 | console.log(self.uploader.queue.length); |
| 80 | 85 | if (self.uploader.queue.length > 1) |
| 81 | 86 | self.uploader.removeFromQueue(0); |
| 87 | + self.ttInfoDetailManageForForm.sheetname = undefined; | |
| 88 | + self.sheetnames = []; | |
| 82 | 89 | }; |
| 83 | 90 | self.uploader.onSuccessItem = function(fileItem, response, status, headers) |
| 84 | 91 | { | ... | ... |