Commit f70c07fadd0e452e179675b8766462b4551a93a9
1 parent
24a51013
Update
Showing
8 changed files
with
3114 additions
and
12 deletions
Too many changes to show.
To preserve performance only 8 of 17 files are displayed.
src/main/java/com/bsth/controller/schedule/core/EmployeeConfigInfoController.java
| ... | ... | @@ -7,10 +7,7 @@ import com.bsth.repository.schedule.EmployeeConfigInfoRepository; |
| 7 | 7 | import com.bsth.service.schedule.EmployeeConfigInfoService; |
| 8 | 8 | import com.bsth.service.schedule.exception.ScheduleException; |
| 9 | 9 | import org.springframework.beans.factory.annotation.Autowired; |
| 10 | -import org.springframework.web.bind.annotation.RequestMapping; | |
| 11 | -import org.springframework.web.bind.annotation.RequestMethod; | |
| 12 | -import org.springframework.web.bind.annotation.RequestParam; | |
| 13 | -import org.springframework.web.bind.annotation.RestController; | |
| 10 | +import org.springframework.web.bind.annotation.*; | |
| 14 | 11 | |
| 15 | 12 | import java.util.HashMap; |
| 16 | 13 | import java.util.List; |
| ... | ... | @@ -38,6 +35,19 @@ public class EmployeeConfigInfoController extends BController<EmployeeConfigInfo |
| 38 | 35 | } |
| 39 | 36 | |
| 40 | 37 | |
| 38 | + @RequestMapping(value = "/dbbm/{xlid}", method = RequestMethod.GET) | |
| 39 | + public Map<String, Object> getDbbm(@PathVariable("xlid") Integer xl) { | |
| 40 | + Map<String, Object> rtn = new HashMap<>(); | |
| 41 | + try { | |
| 42 | + rtn.put("data", employeeConfigInfoService.getMaxDbbm(xl)); | |
| 43 | + rtn.put("status", ResponseCode.SUCCESS); | |
| 44 | + } catch (Exception exp) { | |
| 45 | + exp.printStackTrace(); | |
| 46 | + rtn.put("status", ResponseCode.ERROR); | |
| 47 | + rtn.put("msg", exp.getMessage()); | |
| 48 | + } | |
| 49 | + return rtn; | |
| 50 | + } | |
| 41 | 51 | |
| 42 | 52 | @RequestMapping(value = "/validate_jsy", method = RequestMethod.GET) |
| 43 | 53 | public Map<String, Object> validate_jsy(@RequestParam Map<String, Object> param) { | ... | ... |
src/main/java/com/bsth/controller/schedule/core/GuideboardInfoController.java
| ... | ... | @@ -7,10 +7,7 @@ import com.bsth.repository.schedule.GuideboardInfoRepository; |
| 7 | 7 | import com.bsth.service.schedule.GuideboardInfoService; |
| 8 | 8 | import com.bsth.service.schedule.exception.ScheduleException; |
| 9 | 9 | import org.springframework.beans.factory.annotation.Autowired; |
| 10 | -import org.springframework.web.bind.annotation.RequestMapping; | |
| 11 | -import org.springframework.web.bind.annotation.RequestMethod; | |
| 12 | -import org.springframework.web.bind.annotation.RequestParam; | |
| 13 | -import org.springframework.web.bind.annotation.RestController; | |
| 10 | +import org.springframework.web.bind.annotation.*; | |
| 14 | 11 | |
| 15 | 12 | import java.util.HashMap; |
| 16 | 13 | import java.util.List; |
| ... | ... | @@ -33,6 +30,21 @@ public class GuideboardInfoController extends BController<GuideboardInfo, Long> |
| 33 | 30 | return guideboardInfoRepository.findLpName(ttid); |
| 34 | 31 | } |
| 35 | 32 | |
| 33 | + @RequestMapping(value = "lpno/{xlid}", method = RequestMethod.GET) | |
| 34 | + public Map<String, Object> getLpNo(@PathVariable("xlid") Integer xl) { | |
| 35 | + Map<String, Object> rtn = new HashMap<>(); | |
| 36 | + try { | |
| 37 | + rtn.put("data", guideboardInfoService.getMaxLpno(xl)); | |
| 38 | + rtn.put("status", ResponseCode.SUCCESS); | |
| 39 | + } catch (Exception exp) { | |
| 40 | + exp.printStackTrace(); | |
| 41 | + rtn.put("status", ResponseCode.ERROR); | |
| 42 | + rtn.put("msg", exp.getMessage()); | |
| 43 | + } | |
| 44 | + | |
| 45 | + return rtn; | |
| 46 | + } | |
| 47 | + | |
| 36 | 48 | @RequestMapping(value = "/validate_lpno", method = RequestMethod.GET) |
| 37 | 49 | public Map<String, Object> validate_lpno(@RequestParam Map<String, Object> param) { |
| 38 | 50 | Map<String, Object> rtn = new HashMap<>(); | ... | ... |
src/main/java/com/bsth/service/schedule/EmployeeConfigInfoService.java
| ... | ... | @@ -9,5 +9,6 @@ import com.bsth.service.schedule.exception.ScheduleException; |
| 9 | 9 | public interface EmployeeConfigInfoService extends BService<EmployeeConfigInfo, Long> { |
| 10 | 10 | void validate_jsy(EmployeeConfigInfo employeeConfigInfo) throws ScheduleException; |
| 11 | 11 | void validate_spy(EmployeeConfigInfo employeeConfigInfo) throws ScheduleException; |
| 12 | - public void toggleCancel(Long id) throws ScheduleException; | |
| 12 | + void toggleCancel(Long id) throws ScheduleException; | |
| 13 | + Long getMaxDbbm(Integer xlId); | |
| 13 | 14 | } | ... | ... |
src/main/java/com/bsth/service/schedule/GuideboardInfoService.java
| ... | ... | @@ -7,8 +7,10 @@ import com.bsth.service.schedule.exception.ScheduleException; |
| 7 | 7 | * Created by xu on 16/5/11. |
| 8 | 8 | */ |
| 9 | 9 | public interface GuideboardInfoService extends BService<GuideboardInfo, Long> { |
| 10 | - public void validate_lpno(GuideboardInfo guideboardInfo) throws ScheduleException; | |
| 11 | - public void validate_lpname(GuideboardInfo guideboardInfo) throws ScheduleException; | |
| 12 | - public void toggleCancel(Long id) throws ScheduleException; | |
| 10 | + void validate_lpno(GuideboardInfo guideboardInfo) throws ScheduleException; | |
| 11 | + void validate_lpname(GuideboardInfo guideboardInfo) throws ScheduleException; | |
| 12 | + void toggleCancel(Long id) throws ScheduleException; | |
| 13 | + | |
| 14 | + Long getMaxLpno(Integer xlid); | |
| 13 | 15 | |
| 14 | 16 | } | ... | ... |
src/main/java/com/bsth/service/schedule/impl/EmployeeConfigInfoServiceImpl.java
| ... | ... | @@ -8,11 +8,16 @@ import com.bsth.service.schedule.exception.ScheduleException; |
| 8 | 8 | import com.bsth.service.schedule.utils.DataToolsService; |
| 9 | 9 | import org.springframework.beans.factory.annotation.Autowired; |
| 10 | 10 | import org.springframework.beans.factory.annotation.Qualifier; |
| 11 | +import org.springframework.dao.DataAccessException; | |
| 12 | +import org.springframework.jdbc.core.JdbcTemplate; | |
| 13 | +import org.springframework.jdbc.core.ResultSetExtractor; | |
| 11 | 14 | import org.springframework.stereotype.Service; |
| 12 | 15 | import org.springframework.transaction.annotation.Transactional; |
| 13 | 16 | import org.springframework.util.CollectionUtils; |
| 14 | 17 | |
| 15 | 18 | import java.io.File; |
| 19 | +import java.sql.ResultSet; | |
| 20 | +import java.sql.SQLException; | |
| 16 | 21 | import java.util.*; |
| 17 | 22 | |
| 18 | 23 | /** |
| ... | ... | @@ -27,6 +32,9 @@ public class EmployeeConfigInfoServiceImpl extends BServiceImpl<EmployeeConfigIn |
| 27 | 32 | @Qualifier(value = "employeeConfig_dataTool") |
| 28 | 33 | private DataToolsService dataToolsService; |
| 29 | 34 | |
| 35 | + @Autowired | |
| 36 | + private JdbcTemplate jdbcTemplate; | |
| 37 | + | |
| 30 | 38 | @Override |
| 31 | 39 | public File uploadFile(String filename, byte[] filedata) throws ScheduleException { |
| 32 | 40 | return dataToolsService.uploadFile(filename, filedata); |
| ... | ... | @@ -42,6 +50,25 @@ public class EmployeeConfigInfoServiceImpl extends BServiceImpl<EmployeeConfigIn |
| 42 | 50 | return dataToolsService.exportData(params); |
| 43 | 51 | } |
| 44 | 52 | |
| 53 | + @Override | |
| 54 | + public Long getMaxDbbm(Integer xlId) { | |
| 55 | + String sql = "select max(dbbm + 0) as maxdbbm from bsth_c_s_ecinfo where xl = ?"; | |
| 56 | + | |
| 57 | + Long maxBM = jdbcTemplate.query(sql, new ResultSetExtractor<Long>() { | |
| 58 | + @Override | |
| 59 | + public Long extractData(ResultSet rs) throws SQLException, DataAccessException { | |
| 60 | + if (rs.next()) { | |
| 61 | + return rs.getLong("maxdbbm"); | |
| 62 | + } else { | |
| 63 | + return 0L; | |
| 64 | + } | |
| 65 | + | |
| 66 | + } | |
| 67 | + }, xlId); | |
| 68 | + | |
| 69 | + return maxBM + 1; | |
| 70 | + } | |
| 71 | + | |
| 45 | 72 | @Transactional |
| 46 | 73 | @Override |
| 47 | 74 | public void validate_jsy(EmployeeConfigInfo employeeConfigInfo) throws ScheduleException { | ... | ... |
src/main/java/com/bsth/service/schedule/impl/GuideboardInfoServiceImpl.java
| ... | ... | @@ -8,11 +8,16 @@ import com.bsth.service.schedule.exception.ScheduleException; |
| 8 | 8 | import com.bsth.service.schedule.utils.DataToolsService; |
| 9 | 9 | import org.springframework.beans.factory.annotation.Autowired; |
| 10 | 10 | import org.springframework.beans.factory.annotation.Qualifier; |
| 11 | +import org.springframework.dao.DataAccessException; | |
| 12 | +import org.springframework.jdbc.core.JdbcTemplate; | |
| 13 | +import org.springframework.jdbc.core.ResultSetExtractor; | |
| 11 | 14 | import org.springframework.stereotype.Service; |
| 12 | 15 | import org.springframework.util.CollectionUtils; |
| 13 | 16 | |
| 14 | 17 | import javax.transaction.Transactional; |
| 15 | 18 | import java.io.File; |
| 19 | +import java.sql.ResultSet; | |
| 20 | +import java.sql.SQLException; | |
| 16 | 21 | import java.util.HashMap; |
| 17 | 22 | import java.util.List; |
| 18 | 23 | import java.util.Map; |
| ... | ... | @@ -29,6 +34,27 @@ public class GuideboardInfoServiceImpl extends BServiceImpl<GuideboardInfo, Long |
| 29 | 34 | @Autowired |
| 30 | 35 | private TTInfoDetailService ttInfoDetailService; |
| 31 | 36 | |
| 37 | + @Autowired | |
| 38 | + private JdbcTemplate jdbcTemplate; | |
| 39 | + | |
| 40 | + @Override | |
| 41 | + public Long getMaxLpno(Integer xlid) { | |
| 42 | + String sql = "select max(lp_no) as maxno from bsth_c_s_gbi where xl = ?"; | |
| 43 | + | |
| 44 | + Long maxNo = jdbcTemplate.query(sql, new ResultSetExtractor<Long>() { | |
| 45 | + @Override | |
| 46 | + public Long extractData(ResultSet rs) throws SQLException, DataAccessException { | |
| 47 | + if (rs.next()) { | |
| 48 | + return rs.getLong("maxno"); | |
| 49 | + } else { | |
| 50 | + return 0L; | |
| 51 | + } | |
| 52 | + } | |
| 53 | + }, xlid); | |
| 54 | + | |
| 55 | + return maxNo + 1; | |
| 56 | + } | |
| 57 | + | |
| 32 | 58 | @Override |
| 33 | 59 | public void validate_lpno(GuideboardInfo guideboardInfo) throws ScheduleException { |
| 34 | 60 | // 查询条件 | ... | ... |
src/main/java/com/bsth/service/schedule/impl/SchedulePlanServiceImpl.java
| ... | ... | @@ -249,6 +249,8 @@ public class SchedulePlanServiceImpl extends BServiceImpl<SchedulePlan, Long> im |
| 249 | 249 | end2.getTime() - start2.getTime(), |
| 250 | 250 | end3.getTime() - start3.getTime()); |
| 251 | 251 | |
| 252 | + // TODO:将lpInfoResults_output 也要返回 | |
| 253 | + | |
| 252 | 254 | return planResult; |
| 253 | 255 | } |
| 254 | 256 | ... | ... |
src/main/resources/datatools/ktrs/legecy/test.ktr
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>时刻表明细导入</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 | + <notepad> | |
| 120 | + <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 121 | + <xloc>721</xloc> | |
| 122 | + <yloc>762</yloc> | |
| 123 | + <width>333</width> | |
| 124 | + <heigth>90</heigth> | |
| 125 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 126 | + <fontsize>12</fontsize> | |
| 127 | + <fontbold>N</fontbold> | |
| 128 | + <fontitalic>N</fontitalic> | |
| 129 | + <fontcolorred>0</fontcolorred> | |
| 130 | + <fontcolorgreen>0</fontcolorgreen> | |
| 131 | + <fontcolorblue>0</fontcolorblue> | |
| 132 | + <backgroundcolorred>255</backgroundcolorred> | |
| 133 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 134 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 135 | + <bordercolorred>100</bordercolorred> | |
| 136 | + <bordercolorgreen>100</bordercolorgreen> | |
| 137 | + <bordercolorblue>100</bordercolorblue> | |
| 138 | + <drawshadow>Y</drawshadow> | |
| 139 | + </notepad> | |
| 140 | + <notepad> | |
| 141 | + <note>出场班次,方向有时确定不准,
空的情况下设定为0(上行)</note> | |
| 142 | + <xloc>120</xloc> | |
| 143 | + <yloc>1016</yloc> | |
| 144 | + <width>178</width> | |
| 145 | + <heigth>42</heigth> | |
| 146 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 147 | + <fontsize>12</fontsize> | |
| 148 | + <fontbold>N</fontbold> | |
| 149 | + <fontitalic>N</fontitalic> | |
| 150 | + <fontcolorred>0</fontcolorred> | |
| 151 | + <fontcolorgreen>0</fontcolorgreen> | |
| 152 | + <fontcolorblue>0</fontcolorblue> | |
| 153 | + <backgroundcolorred>255</backgroundcolorred> | |
| 154 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 155 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 156 | + <bordercolorred>100</bordercolorred> | |
| 157 | + <bordercolorgreen>100</bordercolorgreen> | |
| 158 | + <bordercolorblue>100</bordercolorblue> | |
| 159 | + <drawshadow>Y</drawshadow> | |
| 160 | + </notepad> | |
| 161 | + <notepad> | |
| 162 | + <note>进场班次,方向有时确定不准,
空的情况下设定为0(上行)</note> | |
| 163 | + <xloc>578</xloc> | |
| 164 | + <yloc>1084</yloc> | |
| 165 | + <width>178</width> | |
| 166 | + <heigth>42</heigth> | |
| 167 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 168 | + <fontsize>12</fontsize> | |
| 169 | + <fontbold>N</fontbold> | |
| 170 | + <fontitalic>N</fontitalic> | |
| 171 | + <fontcolorred>0</fontcolorred> | |
| 172 | + <fontcolorgreen>0</fontcolorgreen> | |
| 173 | + <fontcolorblue>0</fontcolorblue> | |
| 174 | + <backgroundcolorred>255</backgroundcolorred> | |
| 175 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 176 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 177 | + <bordercolorred>100</bordercolorred> | |
| 178 | + <bordercolorgreen>100</bordercolorgreen> | |
| 179 | + <bordercolorblue>100</bordercolorblue> | |
| 180 | + <drawshadow>Y</drawshadow> | |
| 181 | + </notepad> | |
| 182 | + </notepads> | |
| 183 | + <connection> | |
| 184 | + <name>192.168.168.1_jwgl_dw</name> | |
| 185 | + <server>192.168.168.1</server> | |
| 186 | + <type>ORACLE</type> | |
| 187 | + <access>Native</access> | |
| 188 | + <database>orcl</database> | |
| 189 | + <port>1521</port> | |
| 190 | + <username>jwgl_dw</username> | |
| 191 | + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | |
| 192 | + <servername/> | |
| 193 | + <data_tablespace/> | |
| 194 | + <index_tablespace/> | |
| 195 | + <attributes> | |
| 196 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 197 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 198 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 199 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 200 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 201 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 202 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 203 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 204 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 205 | + </attributes> | |
| 206 | + </connection> | |
| 207 | + <connection> | |
| 208 | + <name>bus_control_variable</name> | |
| 209 | + <server>${v_db_ip}</server> | |
| 210 | + <type>MYSQL</type> | |
| 211 | + <access>Native</access> | |
| 212 | + <database>${v_db_dname}</database> | |
| 213 | + <port>3306</port> | |
| 214 | + <username>${v_db_uname}</username> | |
| 215 | + <password>${v_db_pwd}</password> | |
| 216 | + <servername/> | |
| 217 | + <data_tablespace/> | |
| 218 | + <index_tablespace/> | |
| 219 | + <attributes> | |
| 220 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 221 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 222 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 223 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 224 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 225 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 226 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 227 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 228 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 229 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 230 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 231 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 232 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 233 | + </attributes> | |
| 234 | + </connection> | |
| 235 | + <connection> | |
| 236 | + <name>bus_control_公司_201</name> | |
| 237 | + <server>localhost</server> | |
| 238 | + <type>MYSQL</type> | |
| 239 | + <access>Native</access> | |
| 240 | + <database>control</database> | |
| 241 | + <port>3306</port> | |
| 242 | + <username>root</username> | |
| 243 | + <password>Encrypted </password> | |
| 244 | + <servername/> | |
| 245 | + <data_tablespace/> | |
| 246 | + <index_tablespace/> | |
| 247 | + <attributes> | |
| 248 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 249 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 250 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 251 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 252 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 253 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 254 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 255 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 256 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 257 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 258 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 259 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 260 | + </attributes> | |
| 261 | + </connection> | |
| 262 | + <connection> | |
| 263 | + <name>bus_control_本机</name> | |
| 264 | + <server>localhost</server> | |
| 265 | + <type>MYSQL</type> | |
| 266 | + <access>Native</access> | |
| 267 | + <database>control</database> | |
| 268 | + <port>3306</port> | |
| 269 | + <username>root</username> | |
| 270 | + <password>Encrypted </password> | |
| 271 | + <servername/> | |
| 272 | + <data_tablespace/> | |
| 273 | + <index_tablespace/> | |
| 274 | + <attributes> | |
| 275 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 276 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 277 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 278 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 279 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 280 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 281 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 282 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 283 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 284 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 285 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 286 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 287 | + </attributes> | |
| 288 | + </connection> | |
| 289 | + <connection> | |
| 290 | + <name>xlab_mysql_youle</name> | |
| 291 | + <server>101.231.124.8</server> | |
| 292 | + <type>MYSQL</type> | |
| 293 | + <access>Native</access> | |
| 294 | + <database>xlab_youle</database> | |
| 295 | + <port>45687</port> | |
| 296 | + <username>xlab-youle</username> | |
| 297 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 298 | + <servername/> | |
| 299 | + <data_tablespace/> | |
| 300 | + <index_tablespace/> | |
| 301 | + <attributes> | |
| 302 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 303 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 304 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 305 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 306 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 307 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 308 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 309 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 310 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 311 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 312 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 313 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 314 | + </attributes> | |
| 315 | + </connection> | |
| 316 | + <connection> | |
| 317 | + <name>xlab_mysql_youle(本机)</name> | |
| 318 | + <server>localhost</server> | |
| 319 | + <type>MYSQL</type> | |
| 320 | + <access>Native</access> | |
| 321 | + <database>xlab_youle</database> | |
| 322 | + <port>3306</port> | |
| 323 | + <username>root</username> | |
| 324 | + <password>Encrypted </password> | |
| 325 | + <servername/> | |
| 326 | + <data_tablespace/> | |
| 327 | + <index_tablespace/> | |
| 328 | + <attributes> | |
| 329 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 330 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 331 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 332 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 333 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 334 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 335 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 336 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 337 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 338 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 339 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 340 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 341 | + </attributes> | |
| 342 | + </connection> | |
| 343 | + <connection> | |
| 344 | + <name>xlab_youle</name> | |
| 345 | + <server/> | |
| 346 | + <type>MYSQL</type> | |
| 347 | + <access>JNDI</access> | |
| 348 | + <database>xlab_youle</database> | |
| 349 | + <port>1521</port> | |
| 350 | + <username/> | |
| 351 | + <password>Encrypted </password> | |
| 352 | + <servername/> | |
| 353 | + <data_tablespace/> | |
| 354 | + <index_tablespace/> | |
| 355 | + <attributes> | |
| 356 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 357 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 358 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 359 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 360 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 361 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 362 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 363 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 364 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 365 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 366 | + </attributes> | |
| 367 | + </connection> | |
| 368 | + <order> | |
| 369 | + <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 370 | + <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 371 | + <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</to><enabled>Y</enabled> </hop> | |
| 372 | + <hop> <from>添加对应班次数</from><to>处理数据</to><enabled>Y</enabled> </hop> | |
| 373 | + <hop> <from>处理数据</from><to>分组各个路牌的站</to><enabled>Y</enabled> </hop> | |
| 374 | + <hop> <from>查找时刻表基础信息关联</from><to>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 375 | + <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 376 | + <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 377 | + <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 378 | + <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 379 | + <hop> <from>匹配上下行正常班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 380 | + <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 381 | + <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 382 | + <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 383 | + <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 384 | + <hop> <from>查找线路所有上下行里程时间</from><to>匹配上下行正常班次里程时间</to><enabled>Y</enabled> </hop> | |
| 385 | + <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 386 | + <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 387 | + <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 388 | + <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 389 | + <hop> <from>班次类型字典</from><to>查找线路所有上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 390 | + <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 391 | + <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 392 | + <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 393 | + <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 394 | + <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 395 | + <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 396 | + <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 397 | + <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 398 | + <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 399 | + <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 400 | + <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 401 | + <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 402 | + <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 403 | + <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 404 | + <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 405 | + <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 406 | + <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 407 | + <hop> <from>类型修正</from><to>插入/更新bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop> | |
| 408 | + <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>查找进场起点站关联确定上下行</to><enabled>Y</enabled> </hop> | |
| 409 | + <hop> <from>查找进场起点站关联确定上下行</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 410 | + <hop> <from>查找线路出场里程时间</from><to>匹配出场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 411 | + <hop> <from>查找线路进场里程时间</from><to>匹配进场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 412 | + <hop> <from>匹配出场班次里程时间</from><to>上下行NULL判定</to><enabled>Y</enabled> </hop> | |
| 413 | + <hop> <from>上下行NULL判定</from><to>类型修正 2</to><enabled>Y</enabled> </hop> | |
| 414 | + <hop> <from>类型修正 2</from><to>插入/更新bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop> | |
| 415 | + <hop> <from>匹配进场班次里程时间</from><to>上下行判定 2</to><enabled>Y</enabled> </hop> | |
| 416 | + <hop> <from>上下行判定 2</from><to>类型修正 3</to><enabled>Y</enabled> </hop> | |
| 417 | + <hop> <from>类型修正 3</from><to>插入/更新bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop> | |
| 418 | + </order> | |
| 419 | + <step> | |
| 420 | + <name>上下行NULL判定</name> | |
| 421 | + <type>IfNull</type> | |
| 422 | + <description/> | |
| 423 | + <distribute>Y</distribute> | |
| 424 | + <custom_distribution/> | |
| 425 | + <copies>1</copies> | |
| 426 | + <partitioning> | |
| 427 | + <method>none</method> | |
| 428 | + <schema_name/> | |
| 429 | + </partitioning> | |
| 430 | + <replaceAllByValue/> | |
| 431 | + <replaceAllMask/> | |
| 432 | + <selectFields>Y</selectFields> | |
| 433 | + <selectValuesType>N</selectValuesType> | |
| 434 | + <setEmptyStringAll>N</setEmptyStringAll> | |
| 435 | + <valuetypes> | |
| 436 | + </valuetypes> | |
| 437 | + <fields> | |
| 438 | + <field> | |
| 439 | + <name>sxx</name> | |
| 440 | + <value>0</value> | |
| 441 | + <mask/> | |
| 442 | + <set_empty_string>N</set_empty_string> | |
| 443 | + </field> | |
| 444 | + </fields> | |
| 445 | + <cluster_schema/> | |
| 446 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 447 | + <xloc>230</xloc> | |
| 448 | + <yloc>946</yloc> | |
| 449 | + <draw>Y</draw> | |
| 450 | + </GUI> | |
| 451 | + </step> | |
| 452 | + | |
| 453 | + <step> | |
| 454 | + <name>上下行判定 2</name> | |
| 455 | + <type>IfNull</type> | |
| 456 | + <description/> | |
| 457 | + <distribute>Y</distribute> | |
| 458 | + <custom_distribution/> | |
| 459 | + <copies>1</copies> | |
| 460 | + <partitioning> | |
| 461 | + <method>none</method> | |
| 462 | + <schema_name/> | |
| 463 | + </partitioning> | |
| 464 | + <replaceAllByValue/> | |
| 465 | + <replaceAllMask/> | |
| 466 | + <selectFields>Y</selectFields> | |
| 467 | + <selectValuesType>N</selectValuesType> | |
| 468 | + <setEmptyStringAll>N</setEmptyStringAll> | |
| 469 | + <valuetypes> | |
| 470 | + </valuetypes> | |
| 471 | + <fields> | |
| 472 | + <field> | |
| 473 | + <name>sxx2</name> | |
| 474 | + <value>0</value> | |
| 475 | + <mask/> | |
| 476 | + <set_empty_string>N</set_empty_string> | |
| 477 | + </field> | |
| 478 | + </fields> | |
| 479 | + <cluster_schema/> | |
| 480 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 481 | + <xloc>804</xloc> | |
| 482 | + <yloc>1081</yloc> | |
| 483 | + <draw>Y</draw> | |
| 484 | + </GUI> | |
| 485 | + </step> | |
| 486 | + | |
| 487 | + <step> | |
| 488 | + <name>上下行字典</name> | |
| 489 | + <type>ValueMapper</type> | |
| 490 | + <description/> | |
| 491 | + <distribute>Y</distribute> | |
| 492 | + <custom_distribution/> | |
| 493 | + <copies>1</copies> | |
| 494 | + <partitioning> | |
| 495 | + <method>none</method> | |
| 496 | + <schema_name/> | |
| 497 | + </partitioning> | |
| 498 | + <field_to_use>sxx</field_to_use> | |
| 499 | + <target_field>sxx_desc</target_field> | |
| 500 | + <non_match_default/> | |
| 501 | + <fields> | |
| 502 | + <field> | |
| 503 | + <source_value>0</source_value> | |
| 504 | + <target_value>上行</target_value> | |
| 505 | + </field> | |
| 506 | + <field> | |
| 507 | + <source_value>1</source_value> | |
| 508 | + <target_value>下行</target_value> | |
| 509 | + </field> | |
| 510 | + </fields> | |
| 511 | + <cluster_schema/> | |
| 512 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 513 | + <xloc>147</xloc> | |
| 514 | + <yloc>403</yloc> | |
| 515 | + <draw>Y</draw> | |
| 516 | + </GUI> | |
| 517 | + </step> | |
| 518 | + | |
| 519 | + <step> | |
| 520 | + <name>上下行字典 2</name> | |
| 521 | + <type>ValueMapper</type> | |
| 522 | + <description/> | |
| 523 | + <distribute>Y</distribute> | |
| 524 | + <custom_distribution/> | |
| 525 | + <copies>1</copies> | |
| 526 | + <partitioning> | |
| 527 | + <method>none</method> | |
| 528 | + <schema_name/> | |
| 529 | + </partitioning> | |
| 530 | + <field_to_use>sxx</field_to_use> | |
| 531 | + <target_field>sxx_desc</target_field> | |
| 532 | + <non_match_default/> | |
| 533 | + <fields> | |
| 534 | + <field> | |
| 535 | + <source_value>0</source_value> | |
| 536 | + <target_value>上行</target_value> | |
| 537 | + </field> | |
| 538 | + <field> | |
| 539 | + <source_value>1</source_value> | |
| 540 | + <target_value>下行</target_value> | |
| 541 | + </field> | |
| 542 | + </fields> | |
| 543 | + <cluster_schema/> | |
| 544 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 545 | + <xloc>331</xloc> | |
| 546 | + <yloc>598</yloc> | |
| 547 | + <draw>Y</draw> | |
| 548 | + </GUI> | |
| 549 | + </step> | |
| 550 | + | |
| 551 | + <step> | |
| 552 | + <name>上下行字典 3</name> | |
| 553 | + <type>ValueMapper</type> | |
| 554 | + <description/> | |
| 555 | + <distribute>Y</distribute> | |
| 556 | + <custom_distribution/> | |
| 557 | + <copies>1</copies> | |
| 558 | + <partitioning> | |
| 559 | + <method>none</method> | |
| 560 | + <schema_name/> | |
| 561 | + </partitioning> | |
| 562 | + <field_to_use>sxx</field_to_use> | |
| 563 | + <target_field>sxx_desc</target_field> | |
| 564 | + <non_match_default/> | |
| 565 | + <fields> | |
| 566 | + <field> | |
| 567 | + <source_value>0</source_value> | |
| 568 | + <target_value>上行</target_value> | |
| 569 | + </field> | |
| 570 | + <field> | |
| 571 | + <source_value>1</source_value> | |
| 572 | + <target_value>下行</target_value> | |
| 573 | + </field> | |
| 574 | + </fields> | |
| 575 | + <cluster_schema/> | |
| 576 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 577 | + <xloc>553</xloc> | |
| 578 | + <yloc>859</yloc> | |
| 579 | + <draw>Y</draw> | |
| 580 | + </GUI> | |
| 581 | + </step> | |
| 582 | + | |
| 583 | + <step> | |
| 584 | + <name>出场班次_确定终点站名字</name> | |
| 585 | + <type>ScriptValueMod</type> | |
| 586 | + <description/> | |
| 587 | + <distribute>Y</distribute> | |
| 588 | + <custom_distribution/> | |
| 589 | + <copies>1</copies> | |
| 590 | + <partitioning> | |
| 591 | + <method>none</method> | |
| 592 | + <schema_name/> | |
| 593 | + </partitioning> | |
| 594 | + <compatible>N</compatible> | |
| 595 | + <optimizationLevel>9</optimizationLevel> | |
| 596 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 597 | + <jsScript_name>Script 1</jsScript_name> | |
| 598 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 599 | + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 600 | + <rename>zdzname</rename> | |
| 601 | + <type>String</type> | |
| 602 | + <length>-1</length> | |
| 603 | + <precision>-1</precision> | |
| 604 | + <replace>N</replace> | |
| 605 | + </field> <field> <name>endZdtype</name> | |
| 606 | + <rename>endZdtype</rename> | |
| 607 | + <type>String</type> | |
| 608 | + <length>-1</length> | |
| 609 | + <precision>-1</precision> | |
| 610 | + <replace>N</replace> | |
| 611 | + </field> <field> <name>destory</name> | |
| 612 | + <rename>destory</rename> | |
| 613 | + <type>Integer</type> | |
| 614 | + <length>-1</length> | |
| 615 | + <precision>-1</precision> | |
| 616 | + <replace>N</replace> | |
| 617 | + </field> </fields> <cluster_schema/> | |
| 618 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 619 | + <xloc>575</xloc> | |
| 620 | + <yloc>502</yloc> | |
| 621 | + <draw>Y</draw> | |
| 622 | + </GUI> | |
| 623 | + </step> | |
| 624 | + | |
| 625 | + <step> | |
| 626 | + <name>出场班次数据</name> | |
| 627 | + <type>Dummy</type> | |
| 628 | + <description/> | |
| 629 | + <distribute>Y</distribute> | |
| 630 | + <custom_distribution/> | |
| 631 | + <copies>1</copies> | |
| 632 | + <partitioning> | |
| 633 | + <method>none</method> | |
| 634 | + <schema_name/> | |
| 635 | + </partitioning> | |
| 636 | + <cluster_schema/> | |
| 637 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 638 | + <xloc>869</xloc> | |
| 639 | + <yloc>504</yloc> | |
| 640 | + <draw>Y</draw> | |
| 641 | + </GUI> | |
| 642 | + </step> | |
| 643 | + | |
| 644 | + <step> | |
| 645 | + <name>分组各个路牌的站</name> | |
| 646 | + <type>GroupBy</type> | |
| 647 | + <description/> | |
| 648 | + <distribute>Y</distribute> | |
| 649 | + <custom_distribution/> | |
| 650 | + <copies>1</copies> | |
| 651 | + <partitioning> | |
| 652 | + <method>none</method> | |
| 653 | + <schema_name/> | |
| 654 | + </partitioning> | |
| 655 | + <all_rows>Y</all_rows> | |
| 656 | + <ignore_aggregate>N</ignore_aggregate> | |
| 657 | + <field_ignore/> | |
| 658 | + <directory>%%java.io.tmpdir%%</directory> | |
| 659 | + <prefix>grp</prefix> | |
| 660 | + <add_linenr>Y</add_linenr> | |
| 661 | + <linenr_fieldname>gno</linenr_fieldname> | |
| 662 | + <give_back_row>N</give_back_row> | |
| 663 | + <group> | |
| 664 | + <field> | |
| 665 | + <name>lp</name> | |
| 666 | + </field> | |
| 667 | + </group> | |
| 668 | + <fields> | |
| 669 | + <field> | |
| 670 | + <aggregate>qdzgroups</aggregate> | |
| 671 | + <subject>qdzname</subject> | |
| 672 | + <type>CONCAT_STRING</type> | |
| 673 | + <valuefield>,</valuefield> | |
| 674 | + </field> | |
| 675 | + </fields> | |
| 676 | + <cluster_schema/> | |
| 677 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 678 | + <xloc>892</xloc> | |
| 679 | + <yloc>44</yloc> | |
| 680 | + <draw>Y</draw> | |
| 681 | + </GUI> | |
| 682 | + </step> | |
| 683 | + | |
| 684 | + <step> | |
| 685 | + <name>匹配上下行正常班次里程时间</name> | |
| 686 | + <type>ScriptValueMod</type> | |
| 687 | + <description/> | |
| 688 | + <distribute>Y</distribute> | |
| 689 | + <custom_distribution/> | |
| 690 | + <copies>1</copies> | |
| 691 | + <partitioning> | |
| 692 | + <method>none</method> | |
| 693 | + <schema_name/> | |
| 694 | + </partitioning> | |
| 695 | + <compatible>N</compatible> | |
| 696 | + <optimizationLevel>9</optimizationLevel> | |
| 697 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 698 | + <jsScript_name>Script 1</jsScript_name> | |
| 699 | + <jsScript_script>//Script here

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

// 时间范围正则表达式
var timeRex = /^([01]?[0-9]|2[0-3]):[0-5][0-9]$/;
// 发车时间转换成日期
var fcsj_hour = str2num(sendtime_calcu.substr(0, 2), "#");
var fcsj_min = str2num(sendtime_calcu.substr(3, 2), "#");
var fcsj_date = new Date(2000,1,1,fcsj_hour,fcsj_min,0);

// 判定是否早高峰
var isZgf = false;
if (timeRex.test(early_start_time) && timeRex.test(early_end_time) && early_up_time != null && early_down_time != null) {
 var early_s_hour = str2num(early_start_time.substr(0, 2), "#");
 var early_s_min = str2num(early_start_time.substr(3, 2), "#");
 var early_s_date = new Date(2000,1,1,early_s_hour,early_s_min,0);

 var early_e_hour = str2num(early_end_time.substr(0, 2), "#");
 var early_e_min = str2num(early_end_time.substr(3, 2), "#");
 var early_e_date = new Date(2000,1,1,early_e_hour,early_e_min,0);

 if (fcsj_date >= early_s_date && fcsj_date <= early_e_date) {
 isZgf = true;
 }
}

// 判定是否晚高峰
var isWgf = false;
if (timeRex.test(late_start_time) && timeRex.test(late_end_time) && late_up_time != null && late_down_time != null) {
 var late_s_hour = str2num(late_start_time.substr(0, 2), "#");
 var late_s_min = str2num(late_start_time.substr(3, 2), "#");
 var late_s_date = new Date(2000,1,1,late_s_hour,late_s_min,0);

 var late_e_hour = str2num(late_end_time.substr(0, 2), "#");
 var late_e_min = str2num(late_end_time.substr(3, 2), "#");
 var late_e_date = new Date(2000,1,1,late_e_hour,late_e_min,0);

 if (fcsj_date >= late_s_date && fcsj_date <= late_e_date) {
 isWgf = true;
 }
}

// 判定是否晚高峰

if (sxx == 0) { // 上行
 if (isZgf) {
 jhlc = up_mileage;
 bcsj = early_up_time ? early_up_time : up_travel_time;
 } else if (isWgf) {
 jhlc = up_mileage;
 bcsj = late_up_time ? late_up_time : up_travel_time;
 } else {
 jhlc = up_mileage;
 bcsj = up_travel_time;
 }
} else { // sxx == 1 下行
 if (isZgf) {
 jhlc = down_mileage;
 bcsj = early_down_time ? early_down_time : down_travel_time;
 } else if (isWgf) {
 jhlc = down_mileage;
 bcsj = late_down_time ? late_down_time : down_travel_time;
 } else {
 jhlc = down_mileage;
 bcsj = down_travel_time;
 }
}

</jsScript_script> | |
| 700 | + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 701 | + <rename>jhlc</rename> | |
| 702 | + <type>String</type> | |
| 703 | + <length>-1</length> | |
| 704 | + <precision>-1</precision> | |
| 705 | + <replace>N</replace> | |
| 706 | + </field> <field> <name>bcsj</name> | |
| 707 | + <rename>bcsj</rename> | |
| 708 | + <type>String</type> | |
| 709 | + <length>-1</length> | |
| 710 | + <precision>-1</precision> | |
| 711 | + <replace>N</replace> | |
| 712 | + </field> </fields> <cluster_schema/> | |
| 713 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 714 | + <xloc>148</xloc> | |
| 715 | + <yloc>674</yloc> | |
| 716 | + <draw>Y</draw> | |
| 717 | + </GUI> | |
| 718 | + </step> | |
| 719 | + | |
| 720 | + <step> | |
| 721 | + <name>匹配出场班次里程时间</name> | |
| 722 | + <type>ScriptValueMod</type> | |
| 723 | + <description/> | |
| 724 | + <distribute>Y</distribute> | |
| 725 | + <custom_distribution/> | |
| 726 | + <copies>1</copies> | |
| 727 | + <partitioning> | |
| 728 | + <method>none</method> | |
| 729 | + <schema_name/> | |
| 730 | + </partitioning> | |
| 731 | + <compatible>N</compatible> | |
| 732 | + <optimizationLevel>9</optimizationLevel> | |
| 733 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 734 | + <jsScript_name>Script 1</jsScript_name> | |
| 735 | + <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> | |
| 736 | + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name> | |
| 737 | + <rename>out_mileage</rename> | |
| 738 | + <type>String</type> | |
| 739 | + <length>-1</length> | |
| 740 | + <precision>-1</precision> | |
| 741 | + <replace>N</replace> | |
| 742 | + </field> <field> <name>out_time</name> | |
| 743 | + <rename>out_time</rename> | |
| 744 | + <type>String</type> | |
| 745 | + <length>-1</length> | |
| 746 | + <precision>-1</precision> | |
| 747 | + <replace>N</replace> | |
| 748 | + </field> </fields> <cluster_schema/> | |
| 749 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 750 | + <xloc>336</xloc> | |
| 751 | + <yloc>862</yloc> | |
| 752 | + <draw>Y</draw> | |
| 753 | + </GUI> | |
| 754 | + </step> | |
| 755 | + | |
| 756 | + <step> | |
| 757 | + <name>匹配进场班次里程时间</name> | |
| 758 | + <type>ScriptValueMod</type> | |
| 759 | + <description/> | |
| 760 | + <distribute>Y</distribute> | |
| 761 | + <custom_distribution/> | |
| 762 | + <copies>1</copies> | |
| 763 | + <partitioning> | |
| 764 | + <method>none</method> | |
| 765 | + <schema_name/> | |
| 766 | + </partitioning> | |
| 767 | + <compatible>N</compatible> | |
| 768 | + <optimizationLevel>9</optimizationLevel> | |
| 769 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 770 | + <jsScript_name>Script 1</jsScript_name> | |
| 771 | + <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> | |
| 772 | + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name> | |
| 773 | + <rename>parade_mileage</rename> | |
| 774 | + <type>String</type> | |
| 775 | + <length>-1</length> | |
| 776 | + <precision>-1</precision> | |
| 777 | + <replace>N</replace> | |
| 778 | + </field> <field> <name>parade_time</name> | |
| 779 | + <rename>parade_time</rename> | |
| 780 | + <type>String</type> | |
| 781 | + <length>-1</length> | |
| 782 | + <precision>-1</precision> | |
| 783 | + <replace>N</replace> | |
| 784 | + </field> </fields> <cluster_schema/> | |
| 785 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 786 | + <xloc>726</xloc> | |
| 787 | + <yloc>1005</yloc> | |
| 788 | + <draw>Y</draw> | |
| 789 | + </GUI> | |
| 790 | + </step> | |
| 791 | + | |
| 792 | + <step> | |
| 793 | + <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 794 | + <type>DataGrid</type> | |
| 795 | + <description/> | |
| 796 | + <distribute>Y</distribute> | |
| 797 | + <custom_distribution/> | |
| 798 | + <copies>1</copies> | |
| 799 | + <partitioning> | |
| 800 | + <method>none</method> | |
| 801 | + <schema_name/> | |
| 802 | + </partitioning> | |
| 803 | + <fields> | |
| 804 | + </fields> | |
| 805 | + <data> | |
| 806 | + <line> </line> | |
| 807 | + </data> | |
| 808 | + <cluster_schema/> | |
| 809 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 810 | + <xloc>110</xloc> | |
| 811 | + <yloc>133</yloc> | |
| 812 | + <draw>Y</draw> | |
| 813 | + </GUI> | |
| 814 | + </step> | |
| 815 | + | |
| 816 | + <step> | |
| 817 | + <name>处理数据</name> | |
| 818 | + <type>ScriptValueMod</type> | |
| 819 | + <description/> | |
| 820 | + <distribute>Y</distribute> | |
| 821 | + <custom_distribution/> | |
| 822 | + <copies>1</copies> | |
| 823 | + <partitioning> | |
| 824 | + <method>none</method> | |
| 825 | + <schema_name/> | |
| 826 | + </partitioning> | |
| 827 | + <compatible>N</compatible> | |
| 828 | + <optimizationLevel>9</optimizationLevel> | |
| 829 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 830 | + <jsScript_name>Script 1</jsScript_name> | |
| 831 | + <jsScript_script>//Script here

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

// sendtime处理,hhmm,hh:mm,hh,mm
var sendtime_calcu;
if (sendtime.length == 5) { // 最长格式,包括分隔符,统一把分隔符替换成冒号
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(3, 2);
} else if (sendtime.length == 4) {
 if (sendtime.indexOf(":") > 0) { // 冒号分隔,无需修改
 sendtime_calcu = sendtime;
 } else if (sendtime.indexOf(",") > 0) { // 逗号分隔,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(2, 2);
 } else { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(2, 2);
 }
} else if (sendtime.length == 3) { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(1, 2);
}

// 设置分班
var isfb = 0;

// 设置isCanceled
var iscanceled = 0;</jsScript_script> | |
| 832 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 833 | + <rename>qdzname</rename> | |
| 834 | + <type>String</type> | |
| 835 | + <length>-1</length> | |
| 836 | + <precision>-1</precision> | |
| 837 | + <replace>Y</replace> | |
| 838 | + </field> <field> <name>isfb</name> | |
| 839 | + <rename>isfb</rename> | |
| 840 | + <type>Integer</type> | |
| 841 | + <length>-1</length> | |
| 842 | + <precision>-1</precision> | |
| 843 | + <replace>N</replace> | |
| 844 | + </field> <field> <name>iscanceled</name> | |
| 845 | + <rename>iscanceled</rename> | |
| 846 | + <type>Integer</type> | |
| 847 | + <length>-1</length> | |
| 848 | + <precision>-1</precision> | |
| 849 | + <replace>N</replace> | |
| 850 | + </field> <field> <name>sendtime_calcu</name> | |
| 851 | + <rename>sendtime_calcu</rename> | |
| 852 | + <type>String</type> | |
| 853 | + <length>-1</length> | |
| 854 | + <precision>-1</precision> | |
| 855 | + <replace>N</replace> | |
| 856 | + </field> </fields> <cluster_schema/> | |
| 857 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 858 | + <xloc>788</xloc> | |
| 859 | + <yloc>44</yloc> | |
| 860 | + <draw>Y</draw> | |
| 861 | + </GUI> | |
| 862 | + </step> | |
| 863 | + | |
| 864 | + <step> | |
| 865 | + <name>字段选择</name> | |
| 866 | + <type>SelectValues</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> <field> <name>路牌</name> | |
| 876 | + <rename>lp</rename> | |
| 877 | + <length>-2</length> | |
| 878 | + <precision>-2</precision> | |
| 879 | + </field> <field> <name>站点名称</name> | |
| 880 | + <rename>qdzname</rename> | |
| 881 | + <length>-2</length> | |
| 882 | + <precision>-2</precision> | |
| 883 | + </field> <field> <name>发车时间</name> | |
| 884 | + <rename>sendtime</rename> | |
| 885 | + <length>-2</length> | |
| 886 | + <precision>-2</precision> | |
| 887 | + </field> <select_unspecified>Y</select_unspecified> | |
| 888 | + </fields> <cluster_schema/> | |
| 889 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 890 | + <xloc>444</xloc> | |
| 891 | + <yloc>131</yloc> | |
| 892 | + <draw>Y</draw> | |
| 893 | + </GUI> | |
| 894 | + </step> | |
| 895 | + | |
| 896 | + <step> | |
| 897 | + <name>按照班次类型过滤数据1</name> | |
| 898 | + <type>FilterRows</type> | |
| 899 | + <description/> | |
| 900 | + <distribute>Y</distribute> | |
| 901 | + <custom_distribution/> | |
| 902 | + <copies>1</copies> | |
| 903 | + <partitioning> | |
| 904 | + <method>none</method> | |
| 905 | + <schema_name/> | |
| 906 | + </partitioning> | |
| 907 | +<send_true_to>正常班次数据</send_true_to> | |
| 908 | +<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 909 | + <compare> | |
| 910 | +<condition> | |
| 911 | + <negated>N</negated> | |
| 912 | + <leftvalue>bctype</leftvalue> | |
| 913 | + <function>=</function> | |
| 914 | + <rightvalue/> | |
| 915 | + <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 916 | + </compare> | |
| 917 | + <cluster_schema/> | |
| 918 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 919 | + <xloc>860</xloc> | |
| 920 | + <yloc>401</yloc> | |
| 921 | + <draw>Y</draw> | |
| 922 | + </GUI> | |
| 923 | + </step> | |
| 924 | + | |
| 925 | + <step> | |
| 926 | + <name>按照班次类型过滤数据2</name> | |
| 927 | + <type>FilterRows</type> | |
| 928 | + <description/> | |
| 929 | + <distribute>Y</distribute> | |
| 930 | + <custom_distribution/> | |
| 931 | + <copies>1</copies> | |
| 932 | + <partitioning> | |
| 933 | + <method>none</method> | |
| 934 | + <schema_name/> | |
| 935 | + </partitioning> | |
| 936 | +<send_true_to>出场班次数据</send_true_to> | |
| 937 | +<send_false_to>进场班次数据</send_false_to> | |
| 938 | + <compare> | |
| 939 | +<condition> | |
| 940 | + <negated>N</negated> | |
| 941 | + <leftvalue>bctype</leftvalue> | |
| 942 | + <function>=</function> | |
| 943 | + <rightvalue/> | |
| 944 | + <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 945 | + </compare> | |
| 946 | + <cluster_schema/> | |
| 947 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 948 | + <xloc>995</xloc> | |
| 949 | + <yloc>503</yloc> | |
| 950 | + <draw>Y</draw> | |
| 951 | + </GUI> | |
| 952 | + </step> | |
| 953 | + | |
| 954 | + <step> | |
| 955 | + <name>插入/更新bsth_c_s_ttinfo_detail</name> | |
| 956 | + <type>InsertUpdate</type> | |
| 957 | + <description/> | |
| 958 | + <distribute>Y</distribute> | |
| 959 | + <custom_distribution/> | |
| 960 | + <copies>1</copies> | |
| 961 | + <partitioning> | |
| 962 | + <method>none</method> | |
| 963 | + <schema_name/> | |
| 964 | + </partitioning> | |
| 965 | + <connection>bus_control_variable</connection> | |
| 966 | + <commit>100</commit> | |
| 967 | + <update_bypassed>N</update_bypassed> | |
| 968 | + <lookup> | |
| 969 | + <schema/> | |
| 970 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 971 | + <key> | |
| 972 | + <name>xlid</name> | |
| 973 | + <field>xl</field> | |
| 974 | + <condition>=</condition> | |
| 975 | + <name2/> | |
| 976 | + </key> | |
| 977 | + <key> | |
| 978 | + <name>ttid</name> | |
| 979 | + <field>ttinfo</field> | |
| 980 | + <condition>=</condition> | |
| 981 | + <name2/> | |
| 982 | + </key> | |
| 983 | + <key> | |
| 984 | + <name>lpid</name> | |
| 985 | + <field>lp</field> | |
| 986 | + <condition>=</condition> | |
| 987 | + <name2/> | |
| 988 | + </key> | |
| 989 | + <key> | |
| 990 | + <name>fcno</name> | |
| 991 | + <field>fcno</field> | |
| 992 | + <condition>=</condition> | |
| 993 | + <name2/> | |
| 994 | + </key> | |
| 995 | + <key> | |
| 996 | + <name>bcs</name> | |
| 997 | + <field>bcs</field> | |
| 998 | + <condition>=</condition> | |
| 999 | + <name2/> | |
| 1000 | + </key> | |
| 1001 | + <value> | |
| 1002 | + <name>lp</name> | |
| 1003 | + <rename>lpid</rename> | |
| 1004 | + <update>Y</update> | |
| 1005 | + </value> | |
| 1006 | + <value> | |
| 1007 | + <name>bc_type</name> | |
| 1008 | + <rename>bctype_code</rename> | |
| 1009 | + <update>Y</update> | |
| 1010 | + </value> | |
| 1011 | + <value> | |
| 1012 | + <name>bcs</name> | |
| 1013 | + <rename>bcs</rename> | |
| 1014 | + <update>Y</update> | |
| 1015 | + </value> | |
| 1016 | + <value> | |
| 1017 | + <name>bcsj</name> | |
| 1018 | + <rename>bcsj</rename> | |
| 1019 | + <update>Y</update> | |
| 1020 | + </value> | |
| 1021 | + <value> | |
| 1022 | + <name>fcno</name> | |
| 1023 | + <rename>fcno</rename> | |
| 1024 | + <update>Y</update> | |
| 1025 | + </value> | |
| 1026 | + <value> | |
| 1027 | + <name>jhlc</name> | |
| 1028 | + <rename>jhlc</rename> | |
| 1029 | + <update>Y</update> | |
| 1030 | + </value> | |
| 1031 | + <value> | |
| 1032 | + <name>fcsj</name> | |
| 1033 | + <rename>sendtime_calcu</rename> | |
| 1034 | + <update>Y</update> | |
| 1035 | + </value> | |
| 1036 | + <value> | |
| 1037 | + <name>ttinfo</name> | |
| 1038 | + <rename>ttid</rename> | |
| 1039 | + <update>Y</update> | |
| 1040 | + </value> | |
| 1041 | + <value> | |
| 1042 | + <name>xl</name> | |
| 1043 | + <rename>xlid</rename> | |
| 1044 | + <update>Y</update> | |
| 1045 | + </value> | |
| 1046 | + <value> | |
| 1047 | + <name>qdz</name> | |
| 1048 | + <rename>qdzid</rename> | |
| 1049 | + <update>Y</update> | |
| 1050 | + </value> | |
| 1051 | + <value> | |
| 1052 | + <name>zdz</name> | |
| 1053 | + <rename>zdzid</rename> | |
| 1054 | + <update>Y</update> | |
| 1055 | + </value> | |
| 1056 | + <value> | |
| 1057 | + <name>xl_dir</name> | |
| 1058 | + <rename>sxx</rename> | |
| 1059 | + <update>Y</update> | |
| 1060 | + </value> | |
| 1061 | + <value> | |
| 1062 | + <name>isfb</name> | |
| 1063 | + <rename>isfb</rename> | |
| 1064 | + <update>Y</update> | |
| 1065 | + </value> | |
| 1066 | + <value> | |
| 1067 | + <name>qdz_code</name> | |
| 1068 | + <rename>qdzcode</rename> | |
| 1069 | + <update>Y</update> | |
| 1070 | + </value> | |
| 1071 | + <value> | |
| 1072 | + <name>qdz_name</name> | |
| 1073 | + <rename>qdzname</rename> | |
| 1074 | + <update>Y</update> | |
| 1075 | + </value> | |
| 1076 | + <value> | |
| 1077 | + <name>zdz_code</name> | |
| 1078 | + <rename>zdzcode</rename> | |
| 1079 | + <update>Y</update> | |
| 1080 | + </value> | |
| 1081 | + <value> | |
| 1082 | + <name>zdz_name</name> | |
| 1083 | + <rename>zdzname</rename> | |
| 1084 | + <update>Y</update> | |
| 1085 | + </value> | |
| 1086 | + </lookup> | |
| 1087 | + <cluster_schema/> | |
| 1088 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1089 | + <xloc>143</xloc> | |
| 1090 | + <yloc>860</yloc> | |
| 1091 | + <draw>Y</draw> | |
| 1092 | + </GUI> | |
| 1093 | + </step> | |
| 1094 | + | |
| 1095 | + <step> | |
| 1096 | + <name>插入/更新bsth_c_s_ttinfo_detail 2</name> | |
| 1097 | + <type>InsertUpdate</type> | |
| 1098 | + <description/> | |
| 1099 | + <distribute>Y</distribute> | |
| 1100 | + <custom_distribution/> | |
| 1101 | + <copies>1</copies> | |
| 1102 | + <partitioning> | |
| 1103 | + <method>none</method> | |
| 1104 | + <schema_name/> | |
| 1105 | + </partitioning> | |
| 1106 | + <connection>bus_control_variable</connection> | |
| 1107 | + <commit>100</commit> | |
| 1108 | + <update_bypassed>N</update_bypassed> | |
| 1109 | + <lookup> | |
| 1110 | + <schema/> | |
| 1111 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 1112 | + <key> | |
| 1113 | + <name>xlid</name> | |
| 1114 | + <field>xl</field> | |
| 1115 | + <condition>=</condition> | |
| 1116 | + <name2/> | |
| 1117 | + </key> | |
| 1118 | + <key> | |
| 1119 | + <name>ttid</name> | |
| 1120 | + <field>ttinfo</field> | |
| 1121 | + <condition>=</condition> | |
| 1122 | + <name2/> | |
| 1123 | + </key> | |
| 1124 | + <key> | |
| 1125 | + <name>lpid</name> | |
| 1126 | + <field>lp</field> | |
| 1127 | + <condition>=</condition> | |
| 1128 | + <name2/> | |
| 1129 | + </key> | |
| 1130 | + <key> | |
| 1131 | + <name>fcno</name> | |
| 1132 | + <field>fcno</field> | |
| 1133 | + <condition>=</condition> | |
| 1134 | + <name2/> | |
| 1135 | + </key> | |
| 1136 | + <key> | |
| 1137 | + <name>bcs</name> | |
| 1138 | + <field>bcs</field> | |
| 1139 | + <condition>=</condition> | |
| 1140 | + <name2/> | |
| 1141 | + </key> | |
| 1142 | + <value> | |
| 1143 | + <name>tcc</name> | |
| 1144 | + <rename>qdzid</rename> | |
| 1145 | + <update>Y</update> | |
| 1146 | + </value> | |
| 1147 | + <value> | |
| 1148 | + <name>zdz</name> | |
| 1149 | + <rename>zdzid</rename> | |
| 1150 | + <update>Y</update> | |
| 1151 | + </value> | |
| 1152 | + <value> | |
| 1153 | + <name>xl</name> | |
| 1154 | + <rename>xlid</rename> | |
| 1155 | + <update>Y</update> | |
| 1156 | + </value> | |
| 1157 | + <value> | |
| 1158 | + <name>ttinfo</name> | |
| 1159 | + <rename>ttid</rename> | |
| 1160 | + <update>Y</update> | |
| 1161 | + </value> | |
| 1162 | + <value> | |
| 1163 | + <name>xl_dir</name> | |
| 1164 | + <rename>sxx</rename> | |
| 1165 | + <update>Y</update> | |
| 1166 | + </value> | |
| 1167 | + <value> | |
| 1168 | + <name>lp</name> | |
| 1169 | + <rename>lpid</rename> | |
| 1170 | + <update>Y</update> | |
| 1171 | + </value> | |
| 1172 | + <value> | |
| 1173 | + <name>jhlc</name> | |
| 1174 | + <rename>out_mileage</rename> | |
| 1175 | + <update>Y</update> | |
| 1176 | + </value> | |
| 1177 | + <value> | |
| 1178 | + <name>fcsj</name> | |
| 1179 | + <rename>sendtime_calcu</rename> | |
| 1180 | + <update>Y</update> | |
| 1181 | + </value> | |
| 1182 | + <value> | |
| 1183 | + <name>bcsj</name> | |
| 1184 | + <rename>out_time</rename> | |
| 1185 | + <update>Y</update> | |
| 1186 | + </value> | |
| 1187 | + <value> | |
| 1188 | + <name>bcs</name> | |
| 1189 | + <rename>bcs</rename> | |
| 1190 | + <update>Y</update> | |
| 1191 | + </value> | |
| 1192 | + <value> | |
| 1193 | + <name>fcno</name> | |
| 1194 | + <rename>fcno</rename> | |
| 1195 | + <update>Y</update> | |
| 1196 | + </value> | |
| 1197 | + <value> | |
| 1198 | + <name>bc_type</name> | |
| 1199 | + <rename>bctype_code</rename> | |
| 1200 | + <update>Y</update> | |
| 1201 | + </value> | |
| 1202 | + <value> | |
| 1203 | + <name>isfb</name> | |
| 1204 | + <rename>isfb</rename> | |
| 1205 | + <update>Y</update> | |
| 1206 | + </value> | |
| 1207 | + <value> | |
| 1208 | + <name>qdz_code</name> | |
| 1209 | + <rename>qdzcode</rename> | |
| 1210 | + <update>Y</update> | |
| 1211 | + </value> | |
| 1212 | + <value> | |
| 1213 | + <name>qdz_name</name> | |
| 1214 | + <rename>tn</rename> | |
| 1215 | + <update>Y</update> | |
| 1216 | + </value> | |
| 1217 | + <value> | |
| 1218 | + <name>zdz_code</name> | |
| 1219 | + <rename>zdzcode</rename> | |
| 1220 | + <update>Y</update> | |
| 1221 | + </value> | |
| 1222 | + <value> | |
| 1223 | + <name>zdz_name</name> | |
| 1224 | + <rename>zdzname</rename> | |
| 1225 | + <update>Y</update> | |
| 1226 | + </value> | |
| 1227 | + </lookup> | |
| 1228 | + <cluster_schema/> | |
| 1229 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1230 | + <xloc>340</xloc> | |
| 1231 | + <yloc>1087</yloc> | |
| 1232 | + <draw>Y</draw> | |
| 1233 | + </GUI> | |
| 1234 | + </step> | |
| 1235 | + | |
| 1236 | + <step> | |
| 1237 | + <name>插入/更新bsth_c_s_ttinfo_detail 3</name> | |
| 1238 | + <type>InsertUpdate</type> | |
| 1239 | + <description/> | |
| 1240 | + <distribute>Y</distribute> | |
| 1241 | + <custom_distribution/> | |
| 1242 | + <copies>1</copies> | |
| 1243 | + <partitioning> | |
| 1244 | + <method>none</method> | |
| 1245 | + <schema_name/> | |
| 1246 | + </partitioning> | |
| 1247 | + <connection>bus_control_variable</connection> | |
| 1248 | + <commit>100</commit> | |
| 1249 | + <update_bypassed>N</update_bypassed> | |
| 1250 | + <lookup> | |
| 1251 | + <schema/> | |
| 1252 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 1253 | + <key> | |
| 1254 | + <name>xlid</name> | |
| 1255 | + <field>xl</field> | |
| 1256 | + <condition>=</condition> | |
| 1257 | + <name2/> | |
| 1258 | + </key> | |
| 1259 | + <key> | |
| 1260 | + <name>ttid</name> | |
| 1261 | + <field>ttinfo</field> | |
| 1262 | + <condition>=</condition> | |
| 1263 | + <name2/> | |
| 1264 | + </key> | |
| 1265 | + <key> | |
| 1266 | + <name>lpid</name> | |
| 1267 | + <field>lp</field> | |
| 1268 | + <condition>=</condition> | |
| 1269 | + <name2/> | |
| 1270 | + </key> | |
| 1271 | + <key> | |
| 1272 | + <name>fcno</name> | |
| 1273 | + <field>fcno</field> | |
| 1274 | + <condition>=</condition> | |
| 1275 | + <name2/> | |
| 1276 | + </key> | |
| 1277 | + <key> | |
| 1278 | + <name>bcs</name> | |
| 1279 | + <field>bcs</field> | |
| 1280 | + <condition>=</condition> | |
| 1281 | + <name2/> | |
| 1282 | + </key> | |
| 1283 | + <value> | |
| 1284 | + <name>fcno</name> | |
| 1285 | + <rename>fcno</rename> | |
| 1286 | + <update>Y</update> | |
| 1287 | + </value> | |
| 1288 | + <value> | |
| 1289 | + <name>bcs</name> | |
| 1290 | + <rename>bcs</rename> | |
| 1291 | + <update>Y</update> | |
| 1292 | + </value> | |
| 1293 | + <value> | |
| 1294 | + <name>xl</name> | |
| 1295 | + <rename>xlid</rename> | |
| 1296 | + <update>Y</update> | |
| 1297 | + </value> | |
| 1298 | + <value> | |
| 1299 | + <name>ttinfo</name> | |
| 1300 | + <rename>ttid</rename> | |
| 1301 | + <update>Y</update> | |
| 1302 | + </value> | |
| 1303 | + <value> | |
| 1304 | + <name>lp</name> | |
| 1305 | + <rename>lpid</rename> | |
| 1306 | + <update>Y</update> | |
| 1307 | + </value> | |
| 1308 | + <value> | |
| 1309 | + <name>bc_type</name> | |
| 1310 | + <rename>bctype_code</rename> | |
| 1311 | + <update>Y</update> | |
| 1312 | + </value> | |
| 1313 | + <value> | |
| 1314 | + <name>bcsj</name> | |
| 1315 | + <rename>parade_time</rename> | |
| 1316 | + <update>Y</update> | |
| 1317 | + </value> | |
| 1318 | + <value> | |
| 1319 | + <name>jhlc</name> | |
| 1320 | + <rename>parade_mileage</rename> | |
| 1321 | + <update>Y</update> | |
| 1322 | + </value> | |
| 1323 | + <value> | |
| 1324 | + <name>fcsj</name> | |
| 1325 | + <rename>sendtime_calcu</rename> | |
| 1326 | + <update>Y</update> | |
| 1327 | + </value> | |
| 1328 | + <value> | |
| 1329 | + <name>xl_dir</name> | |
| 1330 | + <rename>sxx2</rename> | |
| 1331 | + <update>Y</update> | |
| 1332 | + </value> | |
| 1333 | + <value> | |
| 1334 | + <name>qdz</name> | |
| 1335 | + <rename>qdzid</rename> | |
| 1336 | + <update>Y</update> | |
| 1337 | + </value> | |
| 1338 | + <value> | |
| 1339 | + <name>tcc</name> | |
| 1340 | + <rename>zdzid</rename> | |
| 1341 | + <update>Y</update> | |
| 1342 | + </value> | |
| 1343 | + <value> | |
| 1344 | + <name>isfb</name> | |
| 1345 | + <rename>isfb</rename> | |
| 1346 | + <update>Y</update> | |
| 1347 | + </value> | |
| 1348 | + <value> | |
| 1349 | + <name>qdz_code</name> | |
| 1350 | + <rename>qdzcode</rename> | |
| 1351 | + <update>Y</update> | |
| 1352 | + </value> | |
| 1353 | + <value> | |
| 1354 | + <name>qdz_name</name> | |
| 1355 | + <rename>qname</rename> | |
| 1356 | + <update>Y</update> | |
| 1357 | + </value> | |
| 1358 | + <value> | |
| 1359 | + <name>zdz_code</name> | |
| 1360 | + <rename>zdzcode</rename> | |
| 1361 | + <update>Y</update> | |
| 1362 | + </value> | |
| 1363 | + <value> | |
| 1364 | + <name>zdz_name</name> | |
| 1365 | + <rename>tn</rename> | |
| 1366 | + <update>Y</update> | |
| 1367 | + </value> | |
| 1368 | + </lookup> | |
| 1369 | + <cluster_schema/> | |
| 1370 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1371 | + <xloc>845</xloc> | |
| 1372 | + <yloc>899</yloc> | |
| 1373 | + <draw>Y</draw> | |
| 1374 | + </GUI> | |
| 1375 | + </step> | |
| 1376 | + | |
| 1377 | + <step> | |
| 1378 | + <name>时刻表明细信息Excel输入</name> | |
| 1379 | + <type>ExcelInput</type> | |
| 1380 | + <description/> | |
| 1381 | + <distribute>N</distribute> | |
| 1382 | + <custom_distribution/> | |
| 1383 | + <copies>1</copies> | |
| 1384 | + <partitioning> | |
| 1385 | + <method>none</method> | |
| 1386 | + <schema_name/> | |
| 1387 | + </partitioning> | |
| 1388 | + <header>Y</header> | |
| 1389 | + <noempty>Y</noempty> | |
| 1390 | + <stoponempty>N</stoponempty> | |
| 1391 | + <filefield/> | |
| 1392 | + <sheetfield/> | |
| 1393 | + <sheetrownumfield/> | |
| 1394 | + <rownumfield/> | |
| 1395 | + <sheetfield/> | |
| 1396 | + <filefield/> | |
| 1397 | + <limit>0</limit> | |
| 1398 | + <encoding/> | |
| 1399 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1400 | + <accept_filenames>N</accept_filenames> | |
| 1401 | + <accept_field/> | |
| 1402 | + <accept_stepname/> | |
| 1403 | + <file> | |
| 1404 | + <name/> | |
| 1405 | + <filemask/> | |
| 1406 | + <exclude_filemask/> | |
| 1407 | + <file_required>N</file_required> | |
| 1408 | + <include_subfolders>N</include_subfolders> | |
| 1409 | + </file> | |
| 1410 | + <fields> | |
| 1411 | + </fields> | |
| 1412 | + <sheets> | |
| 1413 | + <sheet> | |
| 1414 | + <name/> | |
| 1415 | + <startrow>0</startrow> | |
| 1416 | + <startcol>0</startcol> | |
| 1417 | + </sheet> | |
| 1418 | + </sheets> | |
| 1419 | + <strict_types>N</strict_types> | |
| 1420 | + <error_ignored>N</error_ignored> | |
| 1421 | + <error_line_skipped>N</error_line_skipped> | |
| 1422 | + <bad_line_files_destination_directory/> | |
| 1423 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 1424 | + <error_line_files_destination_directory/> | |
| 1425 | + <error_line_files_extension>error</error_line_files_extension> | |
| 1426 | + <line_number_files_destination_directory/> | |
| 1427 | + <line_number_files_extension>line</line_number_files_extension> | |
| 1428 | + <shortFileFieldName/> | |
| 1429 | + <pathFieldName/> | |
| 1430 | + <hiddenFieldName/> | |
| 1431 | + <lastModificationTimeFieldName/> | |
| 1432 | + <uriNameFieldName/> | |
| 1433 | + <rootUriNameFieldName/> | |
| 1434 | + <extensionFieldName/> | |
| 1435 | + <sizeFieldName/> | |
| 1436 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 1437 | + <cluster_schema/> | |
| 1438 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1439 | + <xloc>112</xloc> | |
| 1440 | + <yloc>44</yloc> | |
| 1441 | + <draw>Y</draw> | |
| 1442 | + </GUI> | |
| 1443 | + </step> | |
| 1444 | + | |
| 1445 | + <step> | |
| 1446 | + <name>查找停车场1</name> | |
| 1447 | + <type>DBLookup</type> | |
| 1448 | + <description/> | |
| 1449 | + <distribute>Y</distribute> | |
| 1450 | + <custom_distribution/> | |
| 1451 | + <copies>1</copies> | |
| 1452 | + <partitioning> | |
| 1453 | + <method>none</method> | |
| 1454 | + <schema_name/> | |
| 1455 | + </partitioning> | |
| 1456 | + <connection>bus_control_variable</connection> | |
| 1457 | + <cache>N</cache> | |
| 1458 | + <cache_load_all>N</cache_load_all> | |
| 1459 | + <cache_size>0</cache_size> | |
| 1460 | + <lookup> | |
| 1461 | + <schema/> | |
| 1462 | + <table>bsth_c_car_park</table> | |
| 1463 | + <orderby/> | |
| 1464 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1465 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1466 | + <key> | |
| 1467 | + <name>tccname_</name> | |
| 1468 | + <field>park_name</field> | |
| 1469 | + <condition>=</condition> | |
| 1470 | + <name2/> | |
| 1471 | + </key> | |
| 1472 | + <value> | |
| 1473 | + <name>id</name> | |
| 1474 | + <rename>qdzid</rename> | |
| 1475 | + <default/> | |
| 1476 | + <type>Integer</type> | |
| 1477 | + </value> | |
| 1478 | + <value> | |
| 1479 | + <name>park_code</name> | |
| 1480 | + <rename>qdzcode</rename> | |
| 1481 | + <default/> | |
| 1482 | + <type>String</type> | |
| 1483 | + </value> | |
| 1484 | + <value> | |
| 1485 | + <name>park_name</name> | |
| 1486 | + <rename>tn</rename> | |
| 1487 | + <default/> | |
| 1488 | + <type>String</type> | |
| 1489 | + </value> | |
| 1490 | + </lookup> | |
| 1491 | + <cluster_schema/> | |
| 1492 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1493 | + <xloc>755</xloc> | |
| 1494 | + <yloc>504</yloc> | |
| 1495 | + <draw>Y</draw> | |
| 1496 | + </GUI> | |
| 1497 | + </step> | |
| 1498 | + | |
| 1499 | + <step> | |
| 1500 | + <name>查找停车场2</name> | |
| 1501 | + <type>DBLookup</type> | |
| 1502 | + <description/> | |
| 1503 | + <distribute>Y</distribute> | |
| 1504 | + <custom_distribution/> | |
| 1505 | + <copies>1</copies> | |
| 1506 | + <partitioning> | |
| 1507 | + <method>none</method> | |
| 1508 | + <schema_name/> | |
| 1509 | + </partitioning> | |
| 1510 | + <connection>bus_control_variable</connection> | |
| 1511 | + <cache>N</cache> | |
| 1512 | + <cache_load_all>N</cache_load_all> | |
| 1513 | + <cache_size>0</cache_size> | |
| 1514 | + <lookup> | |
| 1515 | + <schema/> | |
| 1516 | + <table>bsth_c_car_park</table> | |
| 1517 | + <orderby/> | |
| 1518 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1519 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1520 | + <key> | |
| 1521 | + <name>tccname_</name> | |
| 1522 | + <field>park_name</field> | |
| 1523 | + <condition>=</condition> | |
| 1524 | + <name2/> | |
| 1525 | + </key> | |
| 1526 | + <value> | |
| 1527 | + <name>id</name> | |
| 1528 | + <rename>zdzid</rename> | |
| 1529 | + <default/> | |
| 1530 | + <type>Integer</type> | |
| 1531 | + </value> | |
| 1532 | + <value> | |
| 1533 | + <name>park_code</name> | |
| 1534 | + <rename>zdzcode</rename> | |
| 1535 | + <default/> | |
| 1536 | + <type>String</type> | |
| 1537 | + </value> | |
| 1538 | + <value> | |
| 1539 | + <name>park_name</name> | |
| 1540 | + <rename>tn</rename> | |
| 1541 | + <default/> | |
| 1542 | + <type>String</type> | |
| 1543 | + </value> | |
| 1544 | + </lookup> | |
| 1545 | + <cluster_schema/> | |
| 1546 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1547 | + <xloc>887</xloc> | |
| 1548 | + <yloc>608</yloc> | |
| 1549 | + <draw>Y</draw> | |
| 1550 | + </GUI> | |
| 1551 | + </step> | |
| 1552 | + | |
| 1553 | + <step> | |
| 1554 | + <name>查找出场终点站关联并确定上下行</name> | |
| 1555 | + <type>DBLookup</type> | |
| 1556 | + <description/> | |
| 1557 | + <distribute>Y</distribute> | |
| 1558 | + <custom_distribution/> | |
| 1559 | + <copies>1</copies> | |
| 1560 | + <partitioning> | |
| 1561 | + <method>none</method> | |
| 1562 | + <schema_name/> | |
| 1563 | + </partitioning> | |
| 1564 | + <connection>bus_control_variable</connection> | |
| 1565 | + <cache>N</cache> | |
| 1566 | + <cache_load_all>N</cache_load_all> | |
| 1567 | + <cache_size>0</cache_size> | |
| 1568 | + <lookup> | |
| 1569 | + <schema/> | |
| 1570 | + <table>bsth_c_stationroute</table> | |
| 1571 | + <orderby/> | |
| 1572 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1573 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1574 | + <key> | |
| 1575 | + <name>xlid</name> | |
| 1576 | + <field>line</field> | |
| 1577 | + <condition>=</condition> | |
| 1578 | + <name2/> | |
| 1579 | + </key> | |
| 1580 | + <key> | |
| 1581 | + <name>zdzname</name> | |
| 1582 | + <field>station_name</field> | |
| 1583 | + <condition>=</condition> | |
| 1584 | + <name2/> | |
| 1585 | + </key> | |
| 1586 | + <key> | |
| 1587 | + <name>endZdtype</name> | |
| 1588 | + <field>station_mark</field> | |
| 1589 | + <condition>=</condition> | |
| 1590 | + <name2/> | |
| 1591 | + </key> | |
| 1592 | + <key> | |
| 1593 | + <name>destory</name> | |
| 1594 | + <field>destroy</field> | |
| 1595 | + <condition>=</condition> | |
| 1596 | + <name2/> | |
| 1597 | + </key> | |
| 1598 | + <value> | |
| 1599 | + <name>station</name> | |
| 1600 | + <rename>zdzid</rename> | |
| 1601 | + <default/> | |
| 1602 | + <type>Integer</type> | |
| 1603 | + </value> | |
| 1604 | + <value> | |
| 1605 | + <name>directions</name> | |
| 1606 | + <rename>sxx</rename> | |
| 1607 | + <default/> | |
| 1608 | + <type>Integer</type> | |
| 1609 | + </value> | |
| 1610 | + <value> | |
| 1611 | + <name>station_code</name> | |
| 1612 | + <rename>zdzcode</rename> | |
| 1613 | + <default/> | |
| 1614 | + <type>String</type> | |
| 1615 | + </value> | |
| 1616 | + </lookup> | |
| 1617 | + <cluster_schema/> | |
| 1618 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1619 | + <xloc>329</xloc> | |
| 1620 | + <yloc>505</yloc> | |
| 1621 | + <draw>Y</draw> | |
| 1622 | + </GUI> | |
| 1623 | + </step> | |
| 1624 | + | |
| 1625 | + <step> | |
| 1626 | + <name>查找时刻表基础信息关联</name> | |
| 1627 | + <type>DBLookup</type> | |
| 1628 | + <description/> | |
| 1629 | + <distribute>Y</distribute> | |
| 1630 | + <custom_distribution/> | |
| 1631 | + <copies>1</copies> | |
| 1632 | + <partitioning> | |
| 1633 | + <method>none</method> | |
| 1634 | + <schema_name/> | |
| 1635 | + </partitioning> | |
| 1636 | + <connection>bus_control_variable</connection> | |
| 1637 | + <cache>N</cache> | |
| 1638 | + <cache_load_all>N</cache_load_all> | |
| 1639 | + <cache_size>0</cache_size> | |
| 1640 | + <lookup> | |
| 1641 | + <schema/> | |
| 1642 | + <table>bsth_c_s_ttinfo</table> | |
| 1643 | + <orderby/> | |
| 1644 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1645 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1646 | + <key> | |
| 1647 | + <name>xlid</name> | |
| 1648 | + <field>xl</field> | |
| 1649 | + <condition>=</condition> | |
| 1650 | + <name2/> | |
| 1651 | + </key> | |
| 1652 | + <key> | |
| 1653 | + <name>ttinfoname_</name> | |
| 1654 | + <field>name</field> | |
| 1655 | + <condition>=</condition> | |
| 1656 | + <name2/> | |
| 1657 | + </key> | |
| 1658 | + <key> | |
| 1659 | + <name>iscanceled</name> | |
| 1660 | + <field>is_cancel</field> | |
| 1661 | + <condition>=</condition> | |
| 1662 | + <name2/> | |
| 1663 | + </key> | |
| 1664 | + <value> | |
| 1665 | + <name>id</name> | |
| 1666 | + <rename>ttid</rename> | |
| 1667 | + <default/> | |
| 1668 | + <type>Integer</type> | |
| 1669 | + </value> | |
| 1670 | + </lookup> | |
| 1671 | + <cluster_schema/> | |
| 1672 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1673 | + <xloc>1011</xloc> | |
| 1674 | + <yloc>134</yloc> | |
| 1675 | + <draw>Y</draw> | |
| 1676 | + </GUI> | |
| 1677 | + </step> | |
| 1678 | + | |
| 1679 | + <step> | |
| 1680 | + <name>查找线路关联</name> | |
| 1681 | + <type>DBLookup</type> | |
| 1682 | + <description/> | |
| 1683 | + <distribute>Y</distribute> | |
| 1684 | + <custom_distribution/> | |
| 1685 | + <copies>1</copies> | |
| 1686 | + <partitioning> | |
| 1687 | + <method>none</method> | |
| 1688 | + <schema_name/> | |
| 1689 | + </partitioning> | |
| 1690 | + <connection>bus_control_variable</connection> | |
| 1691 | + <cache>N</cache> | |
| 1692 | + <cache_load_all>N</cache_load_all> | |
| 1693 | + <cache_size>0</cache_size> | |
| 1694 | + <lookup> | |
| 1695 | + <schema/> | |
| 1696 | + <table>bsth_c_line</table> | |
| 1697 | + <orderby/> | |
| 1698 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1699 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1700 | + <key> | |
| 1701 | + <name>xlname_</name> | |
| 1702 | + <field>name</field> | |
| 1703 | + <condition>=</condition> | |
| 1704 | + <name2/> | |
| 1705 | + </key> | |
| 1706 | + <key> | |
| 1707 | + <name>iscanceled</name> | |
| 1708 | + <field>destroy</field> | |
| 1709 | + <condition>=</condition> | |
| 1710 | + <name2/> | |
| 1711 | + </key> | |
| 1712 | + <value> | |
| 1713 | + <name>id</name> | |
| 1714 | + <rename>xlid</rename> | |
| 1715 | + <default/> | |
| 1716 | + <type>Integer</type> | |
| 1717 | + </value> | |
| 1718 | + </lookup> | |
| 1719 | + <cluster_schema/> | |
| 1720 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1721 | + <xloc>1007</xloc> | |
| 1722 | + <yloc>43</yloc> | |
| 1723 | + <draw>Y</draw> | |
| 1724 | + </GUI> | |
| 1725 | + </step> | |
| 1726 | + | |
| 1727 | + <step> | |
| 1728 | + <name>查找线路出场里程时间</name> | |
| 1729 | + <type>DBLookup</type> | |
| 1730 | + <description/> | |
| 1731 | + <distribute>Y</distribute> | |
| 1732 | + <custom_distribution/> | |
| 1733 | + <copies>1</copies> | |
| 1734 | + <partitioning> | |
| 1735 | + <method>none</method> | |
| 1736 | + <schema_name/> | |
| 1737 | + </partitioning> | |
| 1738 | + <connection>bus_control_variable</connection> | |
| 1739 | + <cache>N</cache> | |
| 1740 | + <cache_load_all>N</cache_load_all> | |
| 1741 | + <cache_size>0</cache_size> | |
| 1742 | + <lookup> | |
| 1743 | + <schema/> | |
| 1744 | + <table>bsth_c_line_information</table> | |
| 1745 | + <orderby/> | |
| 1746 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1747 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1748 | + <key> | |
| 1749 | + <name>xlid</name> | |
| 1750 | + <field>line</field> | |
| 1751 | + <condition>=</condition> | |
| 1752 | + <name2/> | |
| 1753 | + </key> | |
| 1754 | + <value> | |
| 1755 | + <name>up_out_timer</name> | |
| 1756 | + <rename>up_out_timer</rename> | |
| 1757 | + <default/> | |
| 1758 | + <type>Number</type> | |
| 1759 | + </value> | |
| 1760 | + <value> | |
| 1761 | + <name>up_out_mileage</name> | |
| 1762 | + <rename>up_out_mileage</rename> | |
| 1763 | + <default/> | |
| 1764 | + <type>Number</type> | |
| 1765 | + </value> | |
| 1766 | + <value> | |
| 1767 | + <name>down_out_timer</name> | |
| 1768 | + <rename>down_out_timer</rename> | |
| 1769 | + <default/> | |
| 1770 | + <type>Number</type> | |
| 1771 | + </value> | |
| 1772 | + <value> | |
| 1773 | + <name>down_out_mileage</name> | |
| 1774 | + <rename>down_out_mileage</rename> | |
| 1775 | + <default/> | |
| 1776 | + <type>Number</type> | |
| 1777 | + </value> | |
| 1778 | + </lookup> | |
| 1779 | + <cluster_schema/> | |
| 1780 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1781 | + <xloc>335</xloc> | |
| 1782 | + <yloc>763</yloc> | |
| 1783 | + <draw>Y</draw> | |
| 1784 | + </GUI> | |
| 1785 | + </step> | |
| 1786 | + | |
| 1787 | + <step> | |
| 1788 | + <name>查找线路所有上下行里程时间</name> | |
| 1789 | + <type>DBLookup</type> | |
| 1790 | + <description/> | |
| 1791 | + <distribute>Y</distribute> | |
| 1792 | + <custom_distribution/> | |
| 1793 | + <copies>1</copies> | |
| 1794 | + <partitioning> | |
| 1795 | + <method>none</method> | |
| 1796 | + <schema_name/> | |
| 1797 | + </partitioning> | |
| 1798 | + <connection>bus_control_variable</connection> | |
| 1799 | + <cache>N</cache> | |
| 1800 | + <cache_load_all>N</cache_load_all> | |
| 1801 | + <cache_size>0</cache_size> | |
| 1802 | + <lookup> | |
| 1803 | + <schema/> | |
| 1804 | + <table>bsth_c_line_information</table> | |
| 1805 | + <orderby/> | |
| 1806 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1807 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1808 | + <key> | |
| 1809 | + <name>xlid</name> | |
| 1810 | + <field>line</field> | |
| 1811 | + <condition>=</condition> | |
| 1812 | + <name2/> | |
| 1813 | + </key> | |
| 1814 | + <value> | |
| 1815 | + <name>up_mileage</name> | |
| 1816 | + <rename>up_mileage</rename> | |
| 1817 | + <default/> | |
| 1818 | + <type>Number</type> | |
| 1819 | + </value> | |
| 1820 | + <value> | |
| 1821 | + <name>down_mileage</name> | |
| 1822 | + <rename>down_mileage</rename> | |
| 1823 | + <default/> | |
| 1824 | + <type>Number</type> | |
| 1825 | + </value> | |
| 1826 | + <value> | |
| 1827 | + <name>up_travel_time</name> | |
| 1828 | + <rename>up_travel_time</rename> | |
| 1829 | + <default/> | |
| 1830 | + <type>Number</type> | |
| 1831 | + </value> | |
| 1832 | + <value> | |
| 1833 | + <name>down_travel_time</name> | |
| 1834 | + <rename>down_travel_time</rename> | |
| 1835 | + <default/> | |
| 1836 | + <type>Number</type> | |
| 1837 | + </value> | |
| 1838 | + <value> | |
| 1839 | + <name>early_start_time</name> | |
| 1840 | + <rename>early_start_time</rename> | |
| 1841 | + <default/> | |
| 1842 | + <type>String</type> | |
| 1843 | + </value> | |
| 1844 | + <value> | |
| 1845 | + <name>early_end_time</name> | |
| 1846 | + <rename>early_end_time</rename> | |
| 1847 | + <default/> | |
| 1848 | + <type>String</type> | |
| 1849 | + </value> | |
| 1850 | + <value> | |
| 1851 | + <name>early_up_time</name> | |
| 1852 | + <rename>early_up_time</rename> | |
| 1853 | + <default/> | |
| 1854 | + <type>Number</type> | |
| 1855 | + </value> | |
| 1856 | + <value> | |
| 1857 | + <name>early_down_time</name> | |
| 1858 | + <rename>early_down_time</rename> | |
| 1859 | + <default/> | |
| 1860 | + <type>Number</type> | |
| 1861 | + </value> | |
| 1862 | + <value> | |
| 1863 | + <name>late_start_time</name> | |
| 1864 | + <rename>late_start_time</rename> | |
| 1865 | + <default/> | |
| 1866 | + <type>String</type> | |
| 1867 | + </value> | |
| 1868 | + <value> | |
| 1869 | + <name>late_end_time</name> | |
| 1870 | + <rename>late_end_time</rename> | |
| 1871 | + <default/> | |
| 1872 | + <type>String</type> | |
| 1873 | + </value> | |
| 1874 | + <value> | |
| 1875 | + <name>late_up_time</name> | |
| 1876 | + <rename>late_up_time</rename> | |
| 1877 | + <default/> | |
| 1878 | + <type>Number</type> | |
| 1879 | + </value> | |
| 1880 | + <value> | |
| 1881 | + <name>late_down_time</name> | |
| 1882 | + <rename>late_down_time</rename> | |
| 1883 | + <default/> | |
| 1884 | + <type>Number</type> | |
| 1885 | + </value> | |
| 1886 | + </lookup> | |
| 1887 | + <cluster_schema/> | |
| 1888 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1889 | + <xloc>149</xloc> | |
| 1890 | + <yloc>581</yloc> | |
| 1891 | + <draw>Y</draw> | |
| 1892 | + </GUI> | |
| 1893 | + </step> | |
| 1894 | + | |
| 1895 | + <step> | |
| 1896 | + <name>查找线路进场里程时间</name> | |
| 1897 | + <type>DBLookup</type> | |
| 1898 | + <description/> | |
| 1899 | + <distribute>Y</distribute> | |
| 1900 | + <custom_distribution/> | |
| 1901 | + <copies>1</copies> | |
| 1902 | + <partitioning> | |
| 1903 | + <method>none</method> | |
| 1904 | + <schema_name/> | |
| 1905 | + </partitioning> | |
| 1906 | + <connection>bus_control_variable</connection> | |
| 1907 | + <cache>N</cache> | |
| 1908 | + <cache_load_all>N</cache_load_all> | |
| 1909 | + <cache_size>0</cache_size> | |
| 1910 | + <lookup> | |
| 1911 | + <schema/> | |
| 1912 | + <table>bsth_c_line_information</table> | |
| 1913 | + <orderby/> | |
| 1914 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1915 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1916 | + <key> | |
| 1917 | + <name>xlid</name> | |
| 1918 | + <field>line</field> | |
| 1919 | + <condition>=</condition> | |
| 1920 | + <name2/> | |
| 1921 | + </key> | |
| 1922 | + <value> | |
| 1923 | + <name>up_in_mileage</name> | |
| 1924 | + <rename>up_in_mileage</rename> | |
| 1925 | + <default/> | |
| 1926 | + <type>Number</type> | |
| 1927 | + </value> | |
| 1928 | + <value> | |
| 1929 | + <name>up_in_timer</name> | |
| 1930 | + <rename>up_in_timer</rename> | |
| 1931 | + <default/> | |
| 1932 | + <type>Number</type> | |
| 1933 | + </value> | |
| 1934 | + <value> | |
| 1935 | + <name>down_in_mileage</name> | |
| 1936 | + <rename>down_in_mileage</rename> | |
| 1937 | + <default/> | |
| 1938 | + <type>Number</type> | |
| 1939 | + </value> | |
| 1940 | + <value> | |
| 1941 | + <name>down_in_timer</name> | |
| 1942 | + <rename>down_in_timer</rename> | |
| 1943 | + <default/> | |
| 1944 | + <type>Number</type> | |
| 1945 | + </value> | |
| 1946 | + </lookup> | |
| 1947 | + <cluster_schema/> | |
| 1948 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1949 | + <xloc>553</xloc> | |
| 1950 | + <yloc>1004</yloc> | |
| 1951 | + <draw>Y</draw> | |
| 1952 | + </GUI> | |
| 1953 | + </step> | |
| 1954 | + | |
| 1955 | + <step> | |
| 1956 | + <name>查找终点站关联</name> | |
| 1957 | + <type>DBLookup</type> | |
| 1958 | + <description/> | |
| 1959 | + <distribute>Y</distribute> | |
| 1960 | + <custom_distribution/> | |
| 1961 | + <copies>1</copies> | |
| 1962 | + <partitioning> | |
| 1963 | + <method>none</method> | |
| 1964 | + <schema_name/> | |
| 1965 | + </partitioning> | |
| 1966 | + <connection>bus_control_variable</connection> | |
| 1967 | + <cache>N</cache> | |
| 1968 | + <cache_load_all>N</cache_load_all> | |
| 1969 | + <cache_size>0</cache_size> | |
| 1970 | + <lookup> | |
| 1971 | + <schema/> | |
| 1972 | + <table>bsth_c_stationroute</table> | |
| 1973 | + <orderby/> | |
| 1974 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1975 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1976 | + <key> | |
| 1977 | + <name>xlid</name> | |
| 1978 | + <field>line</field> | |
| 1979 | + <condition>=</condition> | |
| 1980 | + <name2/> | |
| 1981 | + </key> | |
| 1982 | + <key> | |
| 1983 | + <name>sxx</name> | |
| 1984 | + <field>directions</field> | |
| 1985 | + <condition>=</condition> | |
| 1986 | + <name2/> | |
| 1987 | + </key> | |
| 1988 | + <key> | |
| 1989 | + <name>endZdtype</name> | |
| 1990 | + <field>station_mark</field> | |
| 1991 | + <condition>=</condition> | |
| 1992 | + <name2/> | |
| 1993 | + </key> | |
| 1994 | + <key> | |
| 1995 | + <name>destory</name> | |
| 1996 | + <field>destroy</field> | |
| 1997 | + <condition>=</condition> | |
| 1998 | + <name2/> | |
| 1999 | + </key> | |
| 2000 | + <value> | |
| 2001 | + <name>station_name</name> | |
| 2002 | + <rename>zdzname</rename> | |
| 2003 | + <default/> | |
| 2004 | + <type>String</type> | |
| 2005 | + </value> | |
| 2006 | + <value> | |
| 2007 | + <name>station</name> | |
| 2008 | + <rename>zdzid</rename> | |
| 2009 | + <default/> | |
| 2010 | + <type>Integer</type> | |
| 2011 | + </value> | |
| 2012 | + <value> | |
| 2013 | + <name>station_code</name> | |
| 2014 | + <rename>zdzcode</rename> | |
| 2015 | + <default/> | |
| 2016 | + <type>String</type> | |
| 2017 | + </value> | |
| 2018 | + </lookup> | |
| 2019 | + <cluster_schema/> | |
| 2020 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2021 | + <xloc>280</xloc> | |
| 2022 | + <yloc>404</yloc> | |
| 2023 | + <draw>Y</draw> | |
| 2024 | + </GUI> | |
| 2025 | + </step> | |
| 2026 | + | |
| 2027 | + <step> | |
| 2028 | + <name>查找起点站关联并确定上下行</name> | |
| 2029 | + <type>DBLookup</type> | |
| 2030 | + <description/> | |
| 2031 | + <distribute>Y</distribute> | |
| 2032 | + <custom_distribution/> | |
| 2033 | + <copies>1</copies> | |
| 2034 | + <partitioning> | |
| 2035 | + <method>none</method> | |
| 2036 | + <schema_name/> | |
| 2037 | + </partitioning> | |
| 2038 | + <connection>bus_control_variable</connection> | |
| 2039 | + <cache>N</cache> | |
| 2040 | + <cache_load_all>N</cache_load_all> | |
| 2041 | + <cache_size>0</cache_size> | |
| 2042 | + <lookup> | |
| 2043 | + <schema/> | |
| 2044 | + <table>bsth_c_stationroute</table> | |
| 2045 | + <orderby/> | |
| 2046 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2047 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2048 | + <key> | |
| 2049 | + <name>xlid</name> | |
| 2050 | + <field>line</field> | |
| 2051 | + <condition>=</condition> | |
| 2052 | + <name2/> | |
| 2053 | + </key> | |
| 2054 | + <key> | |
| 2055 | + <name>qdzname</name> | |
| 2056 | + <field>station_name</field> | |
| 2057 | + <condition>=</condition> | |
| 2058 | + <name2/> | |
| 2059 | + </key> | |
| 2060 | + <key> | |
| 2061 | + <name>sendZdtype</name> | |
| 2062 | + <field>station_mark</field> | |
| 2063 | + <condition>=</condition> | |
| 2064 | + <name2/> | |
| 2065 | + </key> | |
| 2066 | + <key> | |
| 2067 | + <name>destory</name> | |
| 2068 | + <field>destroy</field> | |
| 2069 | + <condition>=</condition> | |
| 2070 | + <name2/> | |
| 2071 | + </key> | |
| 2072 | + <value> | |
| 2073 | + <name>station</name> | |
| 2074 | + <rename>qdzid</rename> | |
| 2075 | + <default/> | |
| 2076 | + <type>Integer</type> | |
| 2077 | + </value> | |
| 2078 | + <value> | |
| 2079 | + <name>directions</name> | |
| 2080 | + <rename>sxx</rename> | |
| 2081 | + <default/> | |
| 2082 | + <type>Integer</type> | |
| 2083 | + </value> | |
| 2084 | + <value> | |
| 2085 | + <name>station_code</name> | |
| 2086 | + <rename>qdzcode</rename> | |
| 2087 | + <default/> | |
| 2088 | + <type>String</type> | |
| 2089 | + </value> | |
| 2090 | + </lookup> | |
| 2091 | + <cluster_schema/> | |
| 2092 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2093 | + <xloc>430</xloc> | |
| 2094 | + <yloc>403</yloc> | |
| 2095 | + <draw>Y</draw> | |
| 2096 | + </GUI> | |
| 2097 | + </step> | |
| 2098 | + | |
| 2099 | + <step> | |
| 2100 | + <name>查找路牌关联</name> | |
| 2101 | + <type>DBLookup</type> | |
| 2102 | + <description/> | |
| 2103 | + <distribute>Y</distribute> | |
| 2104 | + <custom_distribution/> | |
| 2105 | + <copies>1</copies> | |
| 2106 | + <partitioning> | |
| 2107 | + <method>none</method> | |
| 2108 | + <schema_name/> | |
| 2109 | + </partitioning> | |
| 2110 | + <connection>bus_control_variable</connection> | |
| 2111 | + <cache>N</cache> | |
| 2112 | + <cache_load_all>N</cache_load_all> | |
| 2113 | + <cache_size>0</cache_size> | |
| 2114 | + <lookup> | |
| 2115 | + <schema/> | |
| 2116 | + <table>bsth_c_s_gbi</table> | |
| 2117 | + <orderby/> | |
| 2118 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2119 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2120 | + <key> | |
| 2121 | + <name>xlid</name> | |
| 2122 | + <field>xl</field> | |
| 2123 | + <condition>=</condition> | |
| 2124 | + <name2/> | |
| 2125 | + </key> | |
| 2126 | + <key> | |
| 2127 | + <name>lp</name> | |
| 2128 | + <field>lp_name</field> | |
| 2129 | + <condition>=</condition> | |
| 2130 | + <name2/> | |
| 2131 | + </key> | |
| 2132 | + <key> | |
| 2133 | + <name>iscanceled</name> | |
| 2134 | + <field>is_cancel</field> | |
| 2135 | + <condition>=</condition> | |
| 2136 | + <name2/> | |
| 2137 | + </key> | |
| 2138 | + <value> | |
| 2139 | + <name>id</name> | |
| 2140 | + <rename>lpid</rename> | |
| 2141 | + <default/> | |
| 2142 | + <type>Integer</type> | |
| 2143 | + </value> | |
| 2144 | + </lookup> | |
| 2145 | + <cluster_schema/> | |
| 2146 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2147 | + <xloc>1013</xloc> | |
| 2148 | + <yloc>265</yloc> | |
| 2149 | + <draw>Y</draw> | |
| 2150 | + </GUI> | |
| 2151 | + </step> | |
| 2152 | + | |
| 2153 | + <step> | |
| 2154 | + <name>查找进场班次上一个班次的线路方向</name> | |
| 2155 | + <type>DBLookup</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 | + <connection>bus_control_variable</connection> | |
| 2165 | + <cache>N</cache> | |
| 2166 | + <cache_load_all>N</cache_load_all> | |
| 2167 | + <cache_size>0</cache_size> | |
| 2168 | + <lookup> | |
| 2169 | + <schema/> | |
| 2170 | + <table>bsth_c_stationroute</table> | |
| 2171 | + <orderby/> | |
| 2172 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2173 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2174 | + <key> | |
| 2175 | + <name>xlid</name> | |
| 2176 | + <field>line</field> | |
| 2177 | + <condition>=</condition> | |
| 2178 | + <name2/> | |
| 2179 | + </key> | |
| 2180 | + <key> | |
| 2181 | + <name>startZdtype_calcu</name> | |
| 2182 | + <field>station_mark</field> | |
| 2183 | + <condition>=</condition> | |
| 2184 | + <name2/> | |
| 2185 | + </key> | |
| 2186 | + <key> | |
| 2187 | + <name>qdzname_calcu</name> | |
| 2188 | + <field>station_name</field> | |
| 2189 | + <condition>=</condition> | |
| 2190 | + <name2/> | |
| 2191 | + </key> | |
| 2192 | + <key> | |
| 2193 | + <name>destory</name> | |
| 2194 | + <field>destroy</field> | |
| 2195 | + <condition>=</condition> | |
| 2196 | + <name2/> | |
| 2197 | + </key> | |
| 2198 | + <value> | |
| 2199 | + <name>directions</name> | |
| 2200 | + <rename>sxx</rename> | |
| 2201 | + <default/> | |
| 2202 | + <type>String</type> | |
| 2203 | + </value> | |
| 2204 | + </lookup> | |
| 2205 | + <cluster_schema/> | |
| 2206 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2207 | + <xloc>548</xloc> | |
| 2208 | + <yloc>610</yloc> | |
| 2209 | + <draw>Y</draw> | |
| 2210 | + </GUI> | |
| 2211 | + </step> | |
| 2212 | + | |
| 2213 | + <step> | |
| 2214 | + <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 2215 | + <type>DBLookup</type> | |
| 2216 | + <description/> | |
| 2217 | + <distribute>Y</distribute> | |
| 2218 | + <custom_distribution/> | |
| 2219 | + <copies>1</copies> | |
| 2220 | + <partitioning> | |
| 2221 | + <method>none</method> | |
| 2222 | + <schema_name/> | |
| 2223 | + </partitioning> | |
| 2224 | + <connection>bus_control_variable</connection> | |
| 2225 | + <cache>Y</cache> | |
| 2226 | + <cache_load_all>Y</cache_load_all> | |
| 2227 | + <cache_size>0</cache_size> | |
| 2228 | + <lookup> | |
| 2229 | + <schema/> | |
| 2230 | + <table>bsth_c_stationroute</table> | |
| 2231 | + <orderby/> | |
| 2232 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2233 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2234 | + <key> | |
| 2235 | + <name>xlid</name> | |
| 2236 | + <field>line</field> | |
| 2237 | + <condition>=</condition> | |
| 2238 | + <name2/> | |
| 2239 | + </key> | |
| 2240 | + <key> | |
| 2241 | + <name>endZdtype_calcu</name> | |
| 2242 | + <field>station_mark</field> | |
| 2243 | + <condition>=</condition> | |
| 2244 | + <name2/> | |
| 2245 | + </key> | |
| 2246 | + <key> | |
| 2247 | + <name>sxx</name> | |
| 2248 | + <field>directions</field> | |
| 2249 | + <condition>=</condition> | |
| 2250 | + <name2/> | |
| 2251 | + </key> | |
| 2252 | + <key> | |
| 2253 | + <name>destory</name> | |
| 2254 | + <field>destroy</field> | |
| 2255 | + <condition>=</condition> | |
| 2256 | + <name2/> | |
| 2257 | + </key> | |
| 2258 | + <value> | |
| 2259 | + <name>station_name</name> | |
| 2260 | + <rename>zdzname_calcu</rename> | |
| 2261 | + <default/> | |
| 2262 | + <type>Integer</type> | |
| 2263 | + </value> | |
| 2264 | + </lookup> | |
| 2265 | + <cluster_schema/> | |
| 2266 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2267 | + <xloc>550</xloc> | |
| 2268 | + <yloc>701</yloc> | |
| 2269 | + <draw>Y</draw> | |
| 2270 | + </GUI> | |
| 2271 | + </step> | |
| 2272 | + | |
| 2273 | + <step> | |
| 2274 | + <name>查找进场起点站关联确定上下行</name> | |
| 2275 | + <type>DBLookup</type> | |
| 2276 | + <description/> | |
| 2277 | + <distribute>Y</distribute> | |
| 2278 | + <custom_distribution/> | |
| 2279 | + <copies>1</copies> | |
| 2280 | + <partitioning> | |
| 2281 | + <method>none</method> | |
| 2282 | + <schema_name/> | |
| 2283 | + </partitioning> | |
| 2284 | + <connection>bus_control_variable</connection> | |
| 2285 | + <cache>N</cache> | |
| 2286 | + <cache_load_all>N</cache_load_all> | |
| 2287 | + <cache_size>0</cache_size> | |
| 2288 | + <lookup> | |
| 2289 | + <schema/> | |
| 2290 | + <table>bsth_c_stationroute</table> | |
| 2291 | + <orderby/> | |
| 2292 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2293 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2294 | + <key> | |
| 2295 | + <name>xlid</name> | |
| 2296 | + <field>line</field> | |
| 2297 | + <condition>=</condition> | |
| 2298 | + <name2/> | |
| 2299 | + </key> | |
| 2300 | + <key> | |
| 2301 | + <name>zdzname_calcu</name> | |
| 2302 | + <field>station_name</field> | |
| 2303 | + <condition>=</condition> | |
| 2304 | + <name2/> | |
| 2305 | + </key> | |
| 2306 | + <key> | |
| 2307 | + <name>startZdtype_calcu</name> | |
| 2308 | + <field>station_mark</field> | |
| 2309 | + <condition>=</condition> | |
| 2310 | + <name2/> | |
| 2311 | + </key> | |
| 2312 | + <key> | |
| 2313 | + <name>destory</name> | |
| 2314 | + <field>destroy</field> | |
| 2315 | + <condition>=</condition> | |
| 2316 | + <name2/> | |
| 2317 | + </key> | |
| 2318 | + <value> | |
| 2319 | + <name>directions</name> | |
| 2320 | + <rename>sxx2</rename> | |
| 2321 | + <default/> | |
| 2322 | + <type>Integer</type> | |
| 2323 | + </value> | |
| 2324 | + <value> | |
| 2325 | + <name>station</name> | |
| 2326 | + <rename>qdzid</rename> | |
| 2327 | + <default/> | |
| 2328 | + <type>Integer</type> | |
| 2329 | + </value> | |
| 2330 | + <value> | |
| 2331 | + <name>station_code</name> | |
| 2332 | + <rename>qdzcode</rename> | |
| 2333 | + <default/> | |
| 2334 | + <type>String</type> | |
| 2335 | + </value> | |
| 2336 | + <value> | |
| 2337 | + <name>station_name</name> | |
| 2338 | + <rename>qname</rename> | |
| 2339 | + <default/> | |
| 2340 | + <type>String</type> | |
| 2341 | + </value> | |
| 2342 | + </lookup> | |
| 2343 | + <cluster_schema/> | |
| 2344 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2345 | + <xloc>551</xloc> | |
| 2346 | + <yloc>782</yloc> | |
| 2347 | + <draw>Y</draw> | |
| 2348 | + </GUI> | |
| 2349 | + </step> | |
| 2350 | + | |
| 2351 | + <step> | |
| 2352 | + <name>正常班次_处理数据</name> | |
| 2353 | + <type>ScriptValueMod</type> | |
| 2354 | + <description/> | |
| 2355 | + <distribute>Y</distribute> | |
| 2356 | + <custom_distribution/> | |
| 2357 | + <copies>1</copies> | |
| 2358 | + <partitioning> | |
| 2359 | + <method>none</method> | |
| 2360 | + <schema_name/> | |
| 2361 | + </partitioning> | |
| 2362 | + <compatible>N</compatible> | |
| 2363 | + <optimizationLevel>9</optimizationLevel> | |
| 2364 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2365 | + <jsScript_name>Script 1</jsScript_name> | |
| 2366 | + <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2367 | + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 2368 | + <rename>sendZdtype</rename> | |
| 2369 | + <type>String</type> | |
| 2370 | + <length>-1</length> | |
| 2371 | + <precision>-1</precision> | |
| 2372 | + <replace>N</replace> | |
| 2373 | + </field> <field> <name>endZdtype</name> | |
| 2374 | + <rename>endZdtype</rename> | |
| 2375 | + <type>String</type> | |
| 2376 | + <length>-1</length> | |
| 2377 | + <precision>-1</precision> | |
| 2378 | + <replace>N</replace> | |
| 2379 | + </field> <field> <name>destory</name> | |
| 2380 | + <rename>destory</rename> | |
| 2381 | + <type>Integer</type> | |
| 2382 | + <length>-1</length> | |
| 2383 | + <precision>-1</precision> | |
| 2384 | + <replace>N</replace> | |
| 2385 | + </field> </fields> <cluster_schema/> | |
| 2386 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2387 | + <xloc>588</xloc> | |
| 2388 | + <yloc>403</yloc> | |
| 2389 | + <draw>Y</draw> | |
| 2390 | + </GUI> | |
| 2391 | + </step> | |
| 2392 | + | |
| 2393 | + <step> | |
| 2394 | + <name>正常班次数据</name> | |
| 2395 | + <type>Dummy</type> | |
| 2396 | + <description/> | |
| 2397 | + <distribute>Y</distribute> | |
| 2398 | + <custom_distribution/> | |
| 2399 | + <copies>1</copies> | |
| 2400 | + <partitioning> | |
| 2401 | + <method>none</method> | |
| 2402 | + <schema_name/> | |
| 2403 | + </partitioning> | |
| 2404 | + <cluster_schema/> | |
| 2405 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2406 | + <xloc>725</xloc> | |
| 2407 | + <yloc>404</yloc> | |
| 2408 | + <draw>Y</draw> | |
| 2409 | + </GUI> | |
| 2410 | + </step> | |
| 2411 | + | |
| 2412 | + <step> | |
| 2413 | + <name>添加发车顺序号</name> | |
| 2414 | + <type>GroupBy</type> | |
| 2415 | + <description/> | |
| 2416 | + <distribute>Y</distribute> | |
| 2417 | + <custom_distribution/> | |
| 2418 | + <copies>1</copies> | |
| 2419 | + <partitioning> | |
| 2420 | + <method>none</method> | |
| 2421 | + <schema_name/> | |
| 2422 | + </partitioning> | |
| 2423 | + <all_rows>Y</all_rows> | |
| 2424 | + <ignore_aggregate>N</ignore_aggregate> | |
| 2425 | + <field_ignore/> | |
| 2426 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2427 | + <prefix>grp</prefix> | |
| 2428 | + <add_linenr>Y</add_linenr> | |
| 2429 | + <linenr_fieldname>fcno</linenr_fieldname> | |
| 2430 | + <give_back_row>N</give_back_row> | |
| 2431 | + <group> | |
| 2432 | + <field> | |
| 2433 | + <name>lp</name> | |
| 2434 | + </field> | |
| 2435 | + </group> | |
| 2436 | + <fields> | |
| 2437 | + </fields> | |
| 2438 | + <cluster_schema/> | |
| 2439 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2440 | + <xloc>442</xloc> | |
| 2441 | + <yloc>44</yloc> | |
| 2442 | + <draw>Y</draw> | |
| 2443 | + </GUI> | |
| 2444 | + </step> | |
| 2445 | + | |
| 2446 | + <step> | |
| 2447 | + <name>添加对应班次数</name> | |
| 2448 | + <type>GroupBy</type> | |
| 2449 | + <description/> | |
| 2450 | + <distribute>Y</distribute> | |
| 2451 | + <custom_distribution/> | |
| 2452 | + <copies>1</copies> | |
| 2453 | + <partitioning> | |
| 2454 | + <method>none</method> | |
| 2455 | + <schema_name/> | |
| 2456 | + </partitioning> | |
| 2457 | + <all_rows>Y</all_rows> | |
| 2458 | + <ignore_aggregate>N</ignore_aggregate> | |
| 2459 | + <field_ignore/> | |
| 2460 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2461 | + <prefix>grp</prefix> | |
| 2462 | + <add_linenr>Y</add_linenr> | |
| 2463 | + <linenr_fieldname>bcs</linenr_fieldname> | |
| 2464 | + <give_back_row>N</give_back_row> | |
| 2465 | + <group> | |
| 2466 | + </group> | |
| 2467 | + <fields> | |
| 2468 | + </fields> | |
| 2469 | + <cluster_schema/> | |
| 2470 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2471 | + <xloc>692</xloc> | |
| 2472 | + <yloc>44</yloc> | |
| 2473 | + <draw>Y</draw> | |
| 2474 | + </GUI> | |
| 2475 | + </step> | |
| 2476 | + | |
| 2477 | + <step> | |
| 2478 | + <name>班次数据范式化</name> | |
| 2479 | + <type>Normaliser</type> | |
| 2480 | + <description/> | |
| 2481 | + <distribute>Y</distribute> | |
| 2482 | + <custom_distribution/> | |
| 2483 | + <copies>1</copies> | |
| 2484 | + <partitioning> | |
| 2485 | + <method>none</method> | |
| 2486 | + <schema_name/> | |
| 2487 | + </partitioning> | |
| 2488 | + <typefield>站点名称</typefield> | |
| 2489 | + <fields> </fields> <cluster_schema/> | |
| 2490 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2491 | + <xloc>248</xloc> | |
| 2492 | + <yloc>44</yloc> | |
| 2493 | + <draw>Y</draw> | |
| 2494 | + </GUI> | |
| 2495 | + </step> | |
| 2496 | + | |
| 2497 | + <step> | |
| 2498 | + <name>班次类型字典</name> | |
| 2499 | + <type>ValueMapper</type> | |
| 2500 | + <description/> | |
| 2501 | + <distribute>Y</distribute> | |
| 2502 | + <custom_distribution/> | |
| 2503 | + <copies>1</copies> | |
| 2504 | + <partitioning> | |
| 2505 | + <method>none</method> | |
| 2506 | + <schema_name/> | |
| 2507 | + </partitioning> | |
| 2508 | + <field_to_use>bctype</field_to_use> | |
| 2509 | + <target_field>bctype_code</target_field> | |
| 2510 | + <non_match_default>未知类型</non_match_default> | |
| 2511 | + <fields> | |
| 2512 | + <field> | |
| 2513 | + <source_value>正常班次</source_value> | |
| 2514 | + <target_value>normal</target_value> | |
| 2515 | + </field> | |
| 2516 | + <field> | |
| 2517 | + <source_value>出场</source_value> | |
| 2518 | + <target_value>out</target_value> | |
| 2519 | + </field> | |
| 2520 | + <field> | |
| 2521 | + <source_value>进场</source_value> | |
| 2522 | + <target_value>in</target_value> | |
| 2523 | + </field> | |
| 2524 | + <field> | |
| 2525 | + <source_value>加油</source_value> | |
| 2526 | + <target_value>oil</target_value> | |
| 2527 | + </field> | |
| 2528 | + <field> | |
| 2529 | + <source_value>临加</source_value> | |
| 2530 | + <target_value>temp</target_value> | |
| 2531 | + </field> | |
| 2532 | + <field> | |
| 2533 | + <source_value>区间</source_value> | |
| 2534 | + <target_value>region</target_value> | |
| 2535 | + </field> | |
| 2536 | + <field> | |
| 2537 | + <source_value>放空</source_value> | |
| 2538 | + <target_value>venting</target_value> | |
| 2539 | + </field> | |
| 2540 | + <field> | |
| 2541 | + <source_value>放大站</source_value> | |
| 2542 | + <target_value>major</target_value> | |
| 2543 | + </field> | |
| 2544 | + </fields> | |
| 2545 | + <cluster_schema/> | |
| 2546 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2547 | + <xloc>149</xloc> | |
| 2548 | + <yloc>491</yloc> | |
| 2549 | + <draw>Y</draw> | |
| 2550 | + </GUI> | |
| 2551 | + </step> | |
| 2552 | + | |
| 2553 | + <step> | |
| 2554 | + <name>班次类型字典 2</name> | |
| 2555 | + <type>ValueMapper</type> | |
| 2556 | + <description/> | |
| 2557 | + <distribute>Y</distribute> | |
| 2558 | + <custom_distribution/> | |
| 2559 | + <copies>1</copies> | |
| 2560 | + <partitioning> | |
| 2561 | + <method>none</method> | |
| 2562 | + <schema_name/> | |
| 2563 | + </partitioning> | |
| 2564 | + <field_to_use>bctype</field_to_use> | |
| 2565 | + <target_field>bctype_code</target_field> | |
| 2566 | + <non_match_default>未知类型</non_match_default> | |
| 2567 | + <fields> | |
| 2568 | + <field> | |
| 2569 | + <source_value>正常班次</source_value> | |
| 2570 | + <target_value>normal</target_value> | |
| 2571 | + </field> | |
| 2572 | + <field> | |
| 2573 | + <source_value>出场</source_value> | |
| 2574 | + <target_value>out</target_value> | |
| 2575 | + </field> | |
| 2576 | + <field> | |
| 2577 | + <source_value>进场</source_value> | |
| 2578 | + <target_value>in</target_value> | |
| 2579 | + </field> | |
| 2580 | + <field> | |
| 2581 | + <source_value>加油</source_value> | |
| 2582 | + <target_value>oil</target_value> | |
| 2583 | + </field> | |
| 2584 | + <field> | |
| 2585 | + <source_value>临加</source_value> | |
| 2586 | + <target_value>temp</target_value> | |
| 2587 | + </field> | |
| 2588 | + <field> | |
| 2589 | + <source_value>区间</source_value> | |
| 2590 | + <target_value>region</target_value> | |
| 2591 | + </field> | |
| 2592 | + <field> | |
| 2593 | + <source_value>放空</source_value> | |
| 2594 | + <target_value>venting</target_value> | |
| 2595 | + </field> | |
| 2596 | + <field> | |
| 2597 | + <source_value>放大站</source_value> | |
| 2598 | + <target_value>major</target_value> | |
| 2599 | + </field> | |
| 2600 | + </fields> | |
| 2601 | + <cluster_schema/> | |
| 2602 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2603 | + <xloc>333</xloc> | |
| 2604 | + <yloc>681</yloc> | |
| 2605 | + <draw>Y</draw> | |
| 2606 | + </GUI> | |
| 2607 | + </step> | |
| 2608 | + | |
| 2609 | + <step> | |
| 2610 | + <name>班次类型字典 3</name> | |
| 2611 | + <type>ValueMapper</type> | |
| 2612 | + <description/> | |
| 2613 | + <distribute>Y</distribute> | |
| 2614 | + <custom_distribution/> | |
| 2615 | + <copies>1</copies> | |
| 2616 | + <partitioning> | |
| 2617 | + <method>none</method> | |
| 2618 | + <schema_name/> | |
| 2619 | + </partitioning> | |
| 2620 | + <field_to_use>bctype</field_to_use> | |
| 2621 | + <target_field>bctype_code</target_field> | |
| 2622 | + <non_match_default>未知类型</non_match_default> | |
| 2623 | + <fields> | |
| 2624 | + <field> | |
| 2625 | + <source_value>正常班次</source_value> | |
| 2626 | + <target_value>normal</target_value> | |
| 2627 | + </field> | |
| 2628 | + <field> | |
| 2629 | + <source_value>出场</source_value> | |
| 2630 | + <target_value>out</target_value> | |
| 2631 | + </field> | |
| 2632 | + <field> | |
| 2633 | + <source_value>进场</source_value> | |
| 2634 | + <target_value>in</target_value> | |
| 2635 | + </field> | |
| 2636 | + <field> | |
| 2637 | + <source_value>加油</source_value> | |
| 2638 | + <target_value>oil</target_value> | |
| 2639 | + </field> | |
| 2640 | + <field> | |
| 2641 | + <source_value>临加</source_value> | |
| 2642 | + <target_value>temp</target_value> | |
| 2643 | + </field> | |
| 2644 | + <field> | |
| 2645 | + <source_value>区间</source_value> | |
| 2646 | + <target_value>region</target_value> | |
| 2647 | + </field> | |
| 2648 | + <field> | |
| 2649 | + <source_value>放空</source_value> | |
| 2650 | + <target_value>venting</target_value> | |
| 2651 | + </field> | |
| 2652 | + <field> | |
| 2653 | + <source_value>放大站</source_value> | |
| 2654 | + <target_value>major</target_value> | |
| 2655 | + </field> | |
| 2656 | + </fields> | |
| 2657 | + <cluster_schema/> | |
| 2658 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2659 | + <xloc>551</xloc> | |
| 2660 | + <yloc>928</yloc> | |
| 2661 | + <draw>Y</draw> | |
| 2662 | + </GUI> | |
| 2663 | + </step> | |
| 2664 | + | |
| 2665 | + <step> | |
| 2666 | + <name>类型修正</name> | |
| 2667 | + <type>SelectValues</type> | |
| 2668 | + <description/> | |
| 2669 | + <distribute>Y</distribute> | |
| 2670 | + <custom_distribution/> | |
| 2671 | + <copies>1</copies> | |
| 2672 | + <partitioning> | |
| 2673 | + <method>none</method> | |
| 2674 | + <schema_name/> | |
| 2675 | + </partitioning> | |
| 2676 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2677 | + <meta> <name>jhlc</name> | |
| 2678 | + <rename>jhlc</rename> | |
| 2679 | + <type>Number</type> | |
| 2680 | + <length>-2</length> | |
| 2681 | + <precision>-2</precision> | |
| 2682 | + <conversion_mask/> | |
| 2683 | + <date_format_lenient>false</date_format_lenient> | |
| 2684 | + <date_format_locale/> | |
| 2685 | + <date_format_timezone/> | |
| 2686 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2687 | + <encoding/> | |
| 2688 | + <decimal_symbol/> | |
| 2689 | + <grouping_symbol/> | |
| 2690 | + <currency_symbol/> | |
| 2691 | + <storage_type/> | |
| 2692 | + </meta> <meta> <name>bcsj</name> | |
| 2693 | + <rename>bcsj</rename> | |
| 2694 | + <type>Integer</type> | |
| 2695 | + <length>-2</length> | |
| 2696 | + <precision>-2</precision> | |
| 2697 | + <conversion_mask/> | |
| 2698 | + <date_format_lenient>false</date_format_lenient> | |
| 2699 | + <date_format_locale/> | |
| 2700 | + <date_format_timezone/> | |
| 2701 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2702 | + <encoding/> | |
| 2703 | + <decimal_symbol/> | |
| 2704 | + <grouping_symbol/> | |
| 2705 | + <currency_symbol/> | |
| 2706 | + <storage_type/> | |
| 2707 | + </meta> </fields> <cluster_schema/> | |
| 2708 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2709 | + <xloc>146</xloc> | |
| 2710 | + <yloc>768</yloc> | |
| 2711 | + <draw>Y</draw> | |
| 2712 | + </GUI> | |
| 2713 | + </step> | |
| 2714 | + | |
| 2715 | + <step> | |
| 2716 | + <name>类型修正 2</name> | |
| 2717 | + <type>SelectValues</type> | |
| 2718 | + <description/> | |
| 2719 | + <distribute>Y</distribute> | |
| 2720 | + <custom_distribution/> | |
| 2721 | + <copies>1</copies> | |
| 2722 | + <partitioning> | |
| 2723 | + <method>none</method> | |
| 2724 | + <schema_name/> | |
| 2725 | + </partitioning> | |
| 2726 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2727 | + <meta> <name>out_mileage</name> | |
| 2728 | + <rename>out_mileage</rename> | |
| 2729 | + <type>Number</type> | |
| 2730 | + <length>-2</length> | |
| 2731 | + <precision>-2</precision> | |
| 2732 | + <conversion_mask/> | |
| 2733 | + <date_format_lenient>false</date_format_lenient> | |
| 2734 | + <date_format_locale/> | |
| 2735 | + <date_format_timezone/> | |
| 2736 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2737 | + <encoding/> | |
| 2738 | + <decimal_symbol/> | |
| 2739 | + <grouping_symbol/> | |
| 2740 | + <currency_symbol/> | |
| 2741 | + <storage_type/> | |
| 2742 | + </meta> <meta> <name>out_time</name> | |
| 2743 | + <rename>out_time</rename> | |
| 2744 | + <type>Integer</type> | |
| 2745 | + <length>-2</length> | |
| 2746 | + <precision>-2</precision> | |
| 2747 | + <conversion_mask/> | |
| 2748 | + <date_format_lenient>false</date_format_lenient> | |
| 2749 | + <date_format_locale/> | |
| 2750 | + <date_format_timezone/> | |
| 2751 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2752 | + <encoding/> | |
| 2753 | + <decimal_symbol/> | |
| 2754 | + <grouping_symbol/> | |
| 2755 | + <currency_symbol/> | |
| 2756 | + <storage_type/> | |
| 2757 | + </meta> <meta> <name>sxx</name> | |
| 2758 | + <rename>sxx</rename> | |
| 2759 | + <type>Integer</type> | |
| 2760 | + <length>-2</length> | |
| 2761 | + <precision>-2</precision> | |
| 2762 | + <conversion_mask/> | |
| 2763 | + <date_format_lenient>false</date_format_lenient> | |
| 2764 | + <date_format_locale/> | |
| 2765 | + <date_format_timezone/> | |
| 2766 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2767 | + <encoding/> | |
| 2768 | + <decimal_symbol/> | |
| 2769 | + <grouping_symbol/> | |
| 2770 | + <currency_symbol/> | |
| 2771 | + <storage_type/> | |
| 2772 | + </meta> </fields> <cluster_schema/> | |
| 2773 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2774 | + <xloc>338</xloc> | |
| 2775 | + <yloc>1008</yloc> | |
| 2776 | + <draw>Y</draw> | |
| 2777 | + </GUI> | |
| 2778 | + </step> | |
| 2779 | + | |
| 2780 | + <step> | |
| 2781 | + <name>类型修正 3</name> | |
| 2782 | + <type>SelectValues</type> | |
| 2783 | + <description/> | |
| 2784 | + <distribute>Y</distribute> | |
| 2785 | + <custom_distribution/> | |
| 2786 | + <copies>1</copies> | |
| 2787 | + <partitioning> | |
| 2788 | + <method>none</method> | |
| 2789 | + <schema_name/> | |
| 2790 | + </partitioning> | |
| 2791 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2792 | + <meta> <name>parade_mileage</name> | |
| 2793 | + <rename>parade_mileage</rename> | |
| 2794 | + <type>Number</type> | |
| 2795 | + <length>-2</length> | |
| 2796 | + <precision>-2</precision> | |
| 2797 | + <conversion_mask/> | |
| 2798 | + <date_format_lenient>false</date_format_lenient> | |
| 2799 | + <date_format_locale/> | |
| 2800 | + <date_format_timezone/> | |
| 2801 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2802 | + <encoding/> | |
| 2803 | + <decimal_symbol/> | |
| 2804 | + <grouping_symbol/> | |
| 2805 | + <currency_symbol/> | |
| 2806 | + <storage_type/> | |
| 2807 | + </meta> <meta> <name>parade_time</name> | |
| 2808 | + <rename>parade_time</rename> | |
| 2809 | + <type>Integer</type> | |
| 2810 | + <length>-2</length> | |
| 2811 | + <precision>-2</precision> | |
| 2812 | + <conversion_mask/> | |
| 2813 | + <date_format_lenient>false</date_format_lenient> | |
| 2814 | + <date_format_locale/> | |
| 2815 | + <date_format_timezone/> | |
| 2816 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2817 | + <encoding/> | |
| 2818 | + <decimal_symbol/> | |
| 2819 | + <grouping_symbol/> | |
| 2820 | + <currency_symbol/> | |
| 2821 | + <storage_type/> | |
| 2822 | + </meta> <meta> <name>sxx2</name> | |
| 2823 | + <rename>sxx2</rename> | |
| 2824 | + <type>Integer</type> | |
| 2825 | + <length>-2</length> | |
| 2826 | + <precision>-2</precision> | |
| 2827 | + <conversion_mask/> | |
| 2828 | + <date_format_lenient>false</date_format_lenient> | |
| 2829 | + <date_format_locale/> | |
| 2830 | + <date_format_timezone/> | |
| 2831 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2832 | + <encoding/> | |
| 2833 | + <decimal_symbol/> | |
| 2834 | + <grouping_symbol/> | |
| 2835 | + <currency_symbol/> | |
| 2836 | + <storage_type/> | |
| 2837 | + </meta> </fields> <cluster_schema/> | |
| 2838 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2839 | + <xloc>847</xloc> | |
| 2840 | + <yloc>1003</yloc> | |
| 2841 | + <draw>Y</draw> | |
| 2842 | + </GUI> | |
| 2843 | + </step> | |
| 2844 | + | |
| 2845 | + <step> | |
| 2846 | + <name>计算班次类型</name> | |
| 2847 | + <type>ValueMapper</type> | |
| 2848 | + <description/> | |
| 2849 | + <distribute>Y</distribute> | |
| 2850 | + <custom_distribution/> | |
| 2851 | + <copies>1</copies> | |
| 2852 | + <partitioning> | |
| 2853 | + <method>none</method> | |
| 2854 | + <schema_name/> | |
| 2855 | + </partitioning> | |
| 2856 | + <field_to_use>qdzname</field_to_use> | |
| 2857 | + <target_field>bctype</target_field> | |
| 2858 | + <non_match_default>正常班次</non_match_default> | |
| 2859 | + <fields> | |
| 2860 | + <field> | |
| 2861 | + <source_value>出场</source_value> | |
| 2862 | + <target_value>出场</target_value> | |
| 2863 | + </field> | |
| 2864 | + <field> | |
| 2865 | + <source_value>进场</source_value> | |
| 2866 | + <target_value>进场</target_value> | |
| 2867 | + </field> | |
| 2868 | + </fields> | |
| 2869 | + <cluster_schema/> | |
| 2870 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2871 | + <xloc>1014</xloc> | |
| 2872 | + <yloc>401</yloc> | |
| 2873 | + <draw>Y</draw> | |
| 2874 | + </GUI> | |
| 2875 | + </step> | |
| 2876 | + | |
| 2877 | + <step> | |
| 2878 | + <name>记录关联 (笛卡尔输出)</name> | |
| 2879 | + <type>JoinRows</type> | |
| 2880 | + <description/> | |
| 2881 | + <distribute>Y</distribute> | |
| 2882 | + <custom_distribution/> | |
| 2883 | + <copies>1</copies> | |
| 2884 | + <partitioning> | |
| 2885 | + <method>none</method> | |
| 2886 | + <schema_name/> | |
| 2887 | + </partitioning> | |
| 2888 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2889 | + <prefix>out</prefix> | |
| 2890 | + <cache_size>500</cache_size> | |
| 2891 | + <main/> | |
| 2892 | + <compare> | |
| 2893 | +<condition> | |
| 2894 | + <negated>N</negated> | |
| 2895 | + <leftvalue/> | |
| 2896 | + <function>=</function> | |
| 2897 | + <rightvalue/> | |
| 2898 | + </condition> | |
| 2899 | + </compare> | |
| 2900 | + <cluster_schema/> | |
| 2901 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2902 | + <xloc>310</xloc> | |
| 2903 | + <yloc>133</yloc> | |
| 2904 | + <draw>Y</draw> | |
| 2905 | + </GUI> | |
| 2906 | + </step> | |
| 2907 | + | |
| 2908 | + <step> | |
| 2909 | + <name>过滤记录(发车时间为空)</name> | |
| 2910 | + <type>FilterRows</type> | |
| 2911 | + <description/> | |
| 2912 | + <distribute>Y</distribute> | |
| 2913 | + <custom_distribution/> | |
| 2914 | + <copies>1</copies> | |
| 2915 | + <partitioning> | |
| 2916 | + <method>none</method> | |
| 2917 | + <schema_name/> | |
| 2918 | + </partitioning> | |
| 2919 | +<send_true_to/> | |
| 2920 | +<send_false_to/> | |
| 2921 | + <compare> | |
| 2922 | +<condition> | |
| 2923 | + <negated>N</negated> | |
| 2924 | + <leftvalue>sendtime</leftvalue> | |
| 2925 | + <function>IS NOT NULL</function> | |
| 2926 | + <rightvalue/> | |
| 2927 | + </condition> | |
| 2928 | + </compare> | |
| 2929 | + <cluster_schema/> | |
| 2930 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2931 | + <xloc>571</xloc> | |
| 2932 | + <yloc>44</yloc> | |
| 2933 | + <draw>Y</draw> | |
| 2934 | + </GUI> | |
| 2935 | + </step> | |
| 2936 | + | |
| 2937 | + <step> | |
| 2938 | + <name>进场班次_确定起点站名字</name> | |
| 2939 | + <type>ScriptValueMod</type> | |
| 2940 | + <description/> | |
| 2941 | + <distribute>Y</distribute> | |
| 2942 | + <custom_distribution/> | |
| 2943 | + <copies>1</copies> | |
| 2944 | + <partitioning> | |
| 2945 | + <method>none</method> | |
| 2946 | + <schema_name/> | |
| 2947 | + </partitioning> | |
| 2948 | + <compatible>N</compatible> | |
| 2949 | + <optimizationLevel>9</optimizationLevel> | |
| 2950 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2951 | + <jsScript_name>Script 1</jsScript_name> | |
| 2952 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2953 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 2954 | + <rename>qdzname_calcu</rename> | |
| 2955 | + <type>String</type> | |
| 2956 | + <length>-1</length> | |
| 2957 | + <precision>-1</precision> | |
| 2958 | + <replace>N</replace> | |
| 2959 | + </field> <field> <name>startZdtype_calcu</name> | |
| 2960 | + <rename>startZdtype_calcu</rename> | |
| 2961 | + <type>String</type> | |
| 2962 | + <length>-1</length> | |
| 2963 | + <precision>-1</precision> | |
| 2964 | + <replace>N</replace> | |
| 2965 | + </field> <field> <name>endZdtype_calcu</name> | |
| 2966 | + <rename>endZdtype_calcu</rename> | |
| 2967 | + <type>String</type> | |
| 2968 | + <length>-1</length> | |
| 2969 | + <precision>-1</precision> | |
| 2970 | + <replace>N</replace> | |
| 2971 | + </field> <field> <name>destory</name> | |
| 2972 | + <rename>destory</rename> | |
| 2973 | + <type>Integer</type> | |
| 2974 | + <length>-1</length> | |
| 2975 | + <precision>-1</precision> | |
| 2976 | + <replace>N</replace> | |
| 2977 | + </field> </fields> <cluster_schema/> | |
| 2978 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2979 | + <xloc>754</xloc> | |
| 2980 | + <yloc>610</yloc> | |
| 2981 | + <draw>Y</draw> | |
| 2982 | + </GUI> | |
| 2983 | + </step> | |
| 2984 | + | |
| 2985 | + <step> | |
| 2986 | + <name>进场班次数据</name> | |
| 2987 | + <type>Dummy</type> | |
| 2988 | + <description/> | |
| 2989 | + <distribute>Y</distribute> | |
| 2990 | + <custom_distribution/> | |
| 2991 | + <copies>1</copies> | |
| 2992 | + <partitioning> | |
| 2993 | + <method>none</method> | |
| 2994 | + <schema_name/> | |
| 2995 | + </partitioning> | |
| 2996 | + <cluster_schema/> | |
| 2997 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2998 | + <xloc>997</xloc> | |
| 2999 | + <yloc>606</yloc> | |
| 3000 | + <draw>Y</draw> | |
| 3001 | + </GUI> | |
| 3002 | + </step> | |
| 3003 | + | |
| 3004 | + <step_error_handling> | |
| 3005 | + <error> | |
| 3006 | + <source_step>插入/更新bsth_c_s_ttinfo_detail</source_step> | |
| 3007 | + <target_step/> | |
| 3008 | + <is_enabled>Y</is_enabled> | |
| 3009 | + <nr_valuename>c1</nr_valuename> | |
| 3010 | + <descriptions_valuename>c2</descriptions_valuename> | |
| 3011 | + <fields_valuename>c3</fields_valuename> | |
| 3012 | + <codes_valuename>c4</codes_valuename> | |
| 3013 | + <max_errors/> | |
| 3014 | + <max_pct_errors/> | |
| 3015 | + <min_pct_rows/> | |
| 3016 | + </error> | |
| 3017 | + </step_error_handling> | |
| 3018 | + <slave-step-copy-partition-distribution> | |
| 3019 | +</slave-step-copy-partition-distribution> | |
| 3020 | + <slave_transformation>N</slave_transformation> | |
| 3021 | + | |
| 3022 | +</transformation> | ... | ... |