Commit 67f552da4801b93f0fab0abe9d3414fbcfe8a1c9
Merge branch 'minhang' into pudong
Showing
56 changed files
with
4596 additions
and
3873 deletions
src/main/java/com/bsth/data/LineConfigData.java
src/main/java/com/bsth/data/gpsdata/GpsRealData.java
| ... | ... | @@ -84,6 +84,9 @@ public class GpsRealData implements CommandLineRunner { |
| 84 | 84 | //站点名称 |
| 85 | 85 | gps.setStationName(getStationName(gps)); |
| 86 | 86 | lineCode2Devices.put(gps.getLineId(), device); |
| 87 | + | |
| 88 | + if(old != null && !gps.getLineId().equals(old.getLineId())) | |
| 89 | + lineCode2Devices.remove(old.getLineId(), device); | |
| 87 | 90 | } |
| 88 | 91 | } |
| 89 | 92 | ... | ... |
src/main/java/com/bsth/service/schedule/TTInfoDetailService.java
| ... | ... | @@ -27,6 +27,13 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> { |
| 27 | 27 | /** 是偶分班 */ |
| 28 | 28 | private Boolean isfb; |
| 29 | 29 | |
| 30 | + /** 起点站 */ | |
| 31 | + private Integer qdz; | |
| 32 | + /** 终点站 */ | |
| 33 | + private Integer zdz; | |
| 34 | + /** 停车场 */ | |
| 35 | + private Integer tcc; | |
| 36 | + | |
| 30 | 37 | public FcInfo() { |
| 31 | 38 | } |
| 32 | 39 | |
| ... | ... | @@ -35,7 +42,10 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> { |
| 35 | 42 | String bc_type, |
| 36 | 43 | String fcsj, |
| 37 | 44 | String xldir, |
| 38 | - String isfb) { | |
| 45 | + String isfb, | |
| 46 | + String qdz, | |
| 47 | + String zdz, | |
| 48 | + String tcc) { | |
| 39 | 49 | this.ttdid = StringUtils.isEmpty(ttdid_str) ? null : Long.valueOf(ttdid_str); |
| 40 | 50 | this.bc_type = bc_type; |
| 41 | 51 | this.fcsj = fcsj; |
| ... | ... | @@ -47,6 +57,16 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> { |
| 47 | 57 | else |
| 48 | 58 | this.isfb = false; |
| 49 | 59 | |
| 60 | + if (StringUtils.isNotEmpty(qdz) && !"null".equals(qdz)) { | |
| 61 | + this.qdz = Integer.valueOf(qdz); | |
| 62 | + } | |
| 63 | + if (StringUtils.isNotEmpty(zdz) && !"null".equals(zdz)) { | |
| 64 | + this.zdz = Integer.valueOf(zdz); | |
| 65 | + } | |
| 66 | + if (StringUtils.isNotEmpty(tcc) && !"null".equals(tcc)) { | |
| 67 | + this.tcc = Integer.valueOf(tcc); | |
| 68 | + } | |
| 69 | + | |
| 50 | 70 | } |
| 51 | 71 | |
| 52 | 72 | public Long getTtdid() { |
| ... | ... | @@ -88,6 +108,30 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> { |
| 88 | 108 | public void setIsfb(Boolean isfb) { |
| 89 | 109 | this.isfb = isfb; |
| 90 | 110 | } |
| 111 | + | |
| 112 | + public Integer getQdz() { | |
| 113 | + return qdz; | |
| 114 | + } | |
| 115 | + | |
| 116 | + public void setQdz(Integer qdz) { | |
| 117 | + this.qdz = qdz; | |
| 118 | + } | |
| 119 | + | |
| 120 | + public Integer getZdz() { | |
| 121 | + return zdz; | |
| 122 | + } | |
| 123 | + | |
| 124 | + public void setZdz(Integer zdz) { | |
| 125 | + this.zdz = zdz; | |
| 126 | + } | |
| 127 | + | |
| 128 | + public Integer getTcc() { | |
| 129 | + return tcc; | |
| 130 | + } | |
| 131 | + | |
| 132 | + public void setTcc(Integer tcc) { | |
| 133 | + this.tcc = tcc; | |
| 134 | + } | |
| 91 | 135 | } |
| 92 | 136 | |
| 93 | 137 | /** | ... | ... |
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
| ... | ... | @@ -257,7 +257,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im |
| 257 | 257 | for (int r = 1; r < sheet.getRows(); r++) { |
| 258 | 258 | List<FcInfo> fcInfos = new ArrayList<>(); |
| 259 | 259 | // 每行第一列都是路牌 |
| 260 | - fcInfos.add(new FcInfo(null, null, sheet.getCell(0, r).getContents(), null, null)); // 用fcsj放置路牌显示 | |
| 260 | + fcInfos.add(new FcInfo(null, null, sheet.getCell(0, r).getContents(), null, null, null, null, null)); // 用fcsj放置路牌显示 | |
| 261 | 261 | |
| 262 | 262 | int bc_ks = 0; // 空驶班次 |
| 263 | 263 | int bc_yy = 0; // 营运班次 |
| ... | ... | @@ -277,7 +277,11 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im |
| 277 | 277 | String xldir = content == null ? "" : content[5]; // 线路上下行 |
| 278 | 278 | String isfb = content == null ? "" : content[6]; // 是否分班 |
| 279 | 279 | |
| 280 | - FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb); | |
| 280 | + String qdz = content == null ? "" : content[7]; // 起点站 | |
| 281 | + String zdz = content == null ? "" : content[8]; // 终点站 | |
| 282 | + String tcc = content == null ? "" : content[9]; // 停车场 | |
| 283 | + | |
| 284 | + FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb, qdz, zdz, tcc); | |
| 281 | 285 | |
| 282 | 286 | if (StringUtils.isNotEmpty(fzdname)) |
| 283 | 287 | headarrays[c] = fzdname; |
| ... | ... | @@ -303,17 +307,17 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im |
| 303 | 307 | } |
| 304 | 308 | |
| 305 | 309 | } catch (Exception exp) { |
| 306 | - LOGGER.info("{}行,{}数据有问题,数据={},异常message={}", r, c, content_str, exp); | |
| 310 | + LOGGER.info("第{}行,第{}列数据有问题,数据={},异常message={}", r, c, content_str, exp.getCause()); | |
| 307 | 311 | break; |
| 308 | 312 | } |
| 309 | 313 | |
| 310 | 314 | } |
| 311 | 315 | |
| 312 | 316 | // 添加一列 空驶班次/空驶里程,fcsj放置数据 |
| 313 | - fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_ks, lc_ks), null, null)); | |
| 317 | + fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_ks, lc_ks), null, null, null, null, null)); | |
| 314 | 318 | |
| 315 | 319 | // 添加一列 营运班次/营运里程,fcsj放置数据 |
| 316 | - fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_yy, lc_yy), null, null)); | |
| 320 | + fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_yy, lc_yy), null, null, null, null, null)); | |
| 317 | 321 | |
| 318 | 322 | editInfo.getContents().add(fcInfos); |
| 319 | 323 | } | ... | ... |
src/main/java/com/bsth/service/schedule/rules/strategy/IStrategyImpl.java
| ... | ... | @@ -143,7 +143,6 @@ public class IStrategyImpl implements IStrategy { |
| 143 | 143 | // return结果输出 |
| 144 | 144 | Map<Date, Multimap<Long, TTInfoDetail>> ttInfoDetailMultimap = new HashMap<>(); |
| 145 | 145 | |
| 146 | - Map<String, Object> param = new HashMap<>(); | |
| 147 | 146 | for (DateTime dateTime : outputMultimap.keySet()) { |
| 148 | 147 | Collection<TTInfoResult_output> ttInfoResult_outputs = outputMultimap.get(dateTime); |
| 149 | 148 | // 如果有多个,使用第一个 |
| ... | ... | @@ -154,7 +153,7 @@ public class IStrategyImpl implements IStrategy { |
| 154 | 153 | // 查找时刻表明细 |
| 155 | 154 | Multimap<Long, TTInfoDetail> ttinfodetailMap2 = ArrayListMultimap.create(); |
| 156 | 155 | for (TTInfoDetail ttInfoDetail : ttInfoDetails) { |
| 157 | - if (ttInfoDetail.getTtinfo().getId() == Long.valueOf(ttInfoResult_output.getTtInfoId())) { | |
| 156 | + if (ttInfoDetail.getTtinfo().getId().equals(Long.valueOf(ttInfoResult_output.getTtInfoId()))) { | |
| 158 | 157 | ttinfodetailMap2.put(ttInfoDetail.getLp().getId(), ttInfoDetail); |
| 159 | 158 | } |
| 160 | 159 | } | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>ttinfodetailoutputforedit</name> | |
| 5 | - <description/> | |
| 6 | - <extended_description/> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>tempfilepath</name> | |
| 14 | - <default_value>/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/temp/test</default_value> | |
| 15 | - <description>默认输出的文件路径名</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>ttid</name> | |
| 19 | - <default_value>63</default_value> | |
| 20 | - <description>时刻表id</description> | |
| 21 | - </parameter> | |
| 22 | - <parameter> | |
| 23 | - <name>xlid</name> | |
| 24 | - <default_value>63017</default_value> | |
| 25 | - <description>线路id</description> | |
| 26 | - </parameter> | |
| 27 | - </parameters> | |
| 28 | - <log> | |
| 29 | -<trans-log-table><connection/> | |
| 30 | -<schema/> | |
| 31 | -<table/> | |
| 32 | -<size_limit_lines/> | |
| 33 | -<interval/> | |
| 34 | -<timeout_days/> | |
| 35 | -<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> | |
| 36 | -<perf-log-table><connection/> | |
| 37 | -<schema/> | |
| 38 | -<table/> | |
| 39 | -<interval/> | |
| 40 | -<timeout_days/> | |
| 41 | -<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> | |
| 42 | -<channel-log-table><connection/> | |
| 43 | -<schema/> | |
| 44 | -<table/> | |
| 45 | -<timeout_days/> | |
| 46 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 47 | -<step-log-table><connection/> | |
| 48 | -<schema/> | |
| 49 | -<table/> | |
| 50 | -<timeout_days/> | |
| 51 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 52 | -<metrics-log-table><connection/> | |
| 53 | -<schema/> | |
| 54 | -<table/> | |
| 55 | -<timeout_days/> | |
| 56 | -<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> | |
| 57 | - </log> | |
| 58 | - <maxdate> | |
| 59 | - <connection/> | |
| 60 | - <table/> | |
| 61 | - <field/> | |
| 62 | - <offset>0.0</offset> | |
| 63 | - <maxdiff>0.0</maxdiff> | |
| 64 | - </maxdate> | |
| 65 | - <size_rowset>10000</size_rowset> | |
| 66 | - <sleep_time_empty>50</sleep_time_empty> | |
| 67 | - <sleep_time_full>50</sleep_time_full> | |
| 68 | - <unique_connections>N</unique_connections> | |
| 69 | - <feedback_shown>Y</feedback_shown> | |
| 70 | - <feedback_size>50000</feedback_size> | |
| 71 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 72 | - <shared_objects_file/> | |
| 73 | - <capture_step_performance>N</capture_step_performance> | |
| 74 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 75 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 76 | - <dependencies> | |
| 77 | - </dependencies> | |
| 78 | - <partitionschemas> | |
| 79 | - </partitionschemas> | |
| 80 | - <slaveservers> | |
| 81 | - </slaveservers> | |
| 82 | - <clusterschemas> | |
| 83 | - </clusterschemas> | |
| 84 | - <created_user>-</created_user> | |
| 85 | - <created_date>2016/07/11 21:45:05.041</created_date> | |
| 86 | - <modified_user>-</modified_user> | |
| 87 | - <modified_date>2016/07/11 21:45:05.041</modified_date> | |
| 88 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 89 | - <is_key_private>N</is_key_private> | |
| 90 | - </info> | |
| 91 | - <notepads> | |
| 92 | - <notepad> | |
| 93 | - <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 94 | - <xloc>45</xloc> | |
| 95 | - <yloc>261</yloc> | |
| 96 | - <width>333</width> | |
| 97 | - <heigth>90</heigth> | |
| 98 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 99 | - <fontsize>12</fontsize> | |
| 100 | - <fontbold>N</fontbold> | |
| 101 | - <fontitalic>N</fontitalic> | |
| 102 | - <fontcolorred>0</fontcolorred> | |
| 103 | - <fontcolorgreen>0</fontcolorgreen> | |
| 104 | - <fontcolorblue>0</fontcolorblue> | |
| 105 | - <backgroundcolorred>255</backgroundcolorred> | |
| 106 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 107 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 108 | - <bordercolorred>100</bordercolorred> | |
| 109 | - <bordercolorgreen>100</bordercolorgreen> | |
| 110 | - <bordercolorblue>100</bordercolorblue> | |
| 111 | - <drawshadow>Y</drawshadow> | |
| 112 | - </notepad> | |
| 113 | - <notepad> | |
| 114 | - <note>此处转换excel有问题,
2003格式的xls最多256列,
这里明显超过,所以把所有内容合并成1列,
用,分隔</note> | |
| 115 | - <xloc>256</xloc> | |
| 116 | - <yloc>397</yloc> | |
| 117 | - <width>245</width> | |
| 118 | - <heigth>74</heigth> | |
| 119 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 120 | - <fontsize>12</fontsize> | |
| 121 | - <fontbold>N</fontbold> | |
| 122 | - <fontitalic>N</fontitalic> | |
| 123 | - <fontcolorred>0</fontcolorred> | |
| 124 | - <fontcolorgreen>0</fontcolorgreen> | |
| 125 | - <fontcolorblue>0</fontcolorblue> | |
| 126 | - <backgroundcolorred>255</backgroundcolorred> | |
| 127 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 128 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 129 | - <bordercolorred>100</bordercolorred> | |
| 130 | - <bordercolorgreen>100</bordercolorgreen> | |
| 131 | - <bordercolorblue>100</bordercolorblue> | |
| 132 | - <drawshadow>Y</drawshadow> | |
| 133 | - </notepad> | |
| 134 | - </notepads> | |
| 135 | - <connection> | |
| 136 | - <name>bus_control_variable</name> | |
| 137 | - <server>${v_db_ip}</server> | |
| 138 | - <type>MYSQL</type> | |
| 139 | - <access>Native</access> | |
| 140 | - <database>${v_db_dname}</database> | |
| 141 | - <port>3306</port> | |
| 142 | - <username>${v_db_uname}</username> | |
| 143 | - <password>${v_db_pwd}</password> | |
| 144 | - <servername/> | |
| 145 | - <data_tablespace/> | |
| 146 | - <index_tablespace/> | |
| 147 | - <attributes> | |
| 148 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 149 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | - </attributes> | |
| 162 | - </connection> | |
| 163 | - <connection> | |
| 164 | - <name>bus_control_公司_201</name> | |
| 165 | - <server>localhost</server> | |
| 166 | - <type>MYSQL</type> | |
| 167 | - <access>Native</access> | |
| 168 | - <database>control</database> | |
| 169 | - <port>3306</port> | |
| 170 | - <username>root</username> | |
| 171 | - <password>Encrypted </password> | |
| 172 | - <servername/> | |
| 173 | - <data_tablespace/> | |
| 174 | - <index_tablespace/> | |
| 175 | - <attributes> | |
| 176 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 185 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | - </attributes> | |
| 189 | - </connection> | |
| 190 | - <connection> | |
| 191 | - <name>bus_control_本机</name> | |
| 192 | - <server>localhost</server> | |
| 193 | - <type>MYSQL</type> | |
| 194 | - <access>Native</access> | |
| 195 | - <database>control</database> | |
| 196 | - <port>3306</port> | |
| 197 | - <username>root</username> | |
| 198 | - <password>Encrypted </password> | |
| 199 | - <servername/> | |
| 200 | - <data_tablespace/> | |
| 201 | - <index_tablespace/> | |
| 202 | - <attributes> | |
| 203 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 209 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 213 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 214 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | - </attributes> | |
| 216 | - </connection> | |
| 217 | - <connection> | |
| 218 | - <name>xlab_mysql_youle</name> | |
| 219 | - <server>101.231.124.8</server> | |
| 220 | - <type>MYSQL</type> | |
| 221 | - <access>Native</access> | |
| 222 | - <database>xlab_youle</database> | |
| 223 | - <port>45687</port> | |
| 224 | - <username>xlab-youle</username> | |
| 225 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 226 | - <servername/> | |
| 227 | - <data_tablespace/> | |
| 228 | - <index_tablespace/> | |
| 229 | - <attributes> | |
| 230 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 236 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | - </attributes> | |
| 243 | - </connection> | |
| 244 | - <connection> | |
| 245 | - <name>xlab_mysql_youle(本机)</name> | |
| 246 | - <server>localhost</server> | |
| 247 | - <type>MYSQL</type> | |
| 248 | - <access>Native</access> | |
| 249 | - <database>xlab_youle</database> | |
| 250 | - <port>3306</port> | |
| 251 | - <username>root</username> | |
| 252 | - <password>Encrypted </password> | |
| 253 | - <servername/> | |
| 254 | - <data_tablespace/> | |
| 255 | - <index_tablespace/> | |
| 256 | - <attributes> | |
| 257 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 258 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 259 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 260 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 261 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 262 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 263 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 264 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 265 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 266 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 267 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 268 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 269 | - </attributes> | |
| 270 | - </connection> | |
| 271 | - <connection> | |
| 272 | - <name>xlab_youle</name> | |
| 273 | - <server/> | |
| 274 | - <type>MYSQL</type> | |
| 275 | - <access>JNDI</access> | |
| 276 | - <database>xlab_youle</database> | |
| 277 | - <port>1521</port> | |
| 278 | - <username/> | |
| 279 | - <password>Encrypted </password> | |
| 280 | - <servername/> | |
| 281 | - <data_tablespace/> | |
| 282 | - <index_tablespace/> | |
| 283 | - <attributes> | |
| 284 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 285 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 286 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 287 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 288 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 289 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 290 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 291 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 292 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 293 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 294 | - </attributes> | |
| 295 | - </connection> | |
| 296 | - <order> | |
| 297 | - <hop> <from>表输入</from><to>过滤记录</to><enabled>Y</enabled> </hop> | |
| 298 | - <hop> <from>过滤记录</from><to>正常班次站点查询用数据</to><enabled>Y</enabled> </hop> | |
| 299 | - <hop> <from>过滤记录</from><to>进场出场班次查询用的数据</to><enabled>Y</enabled> </hop> | |
| 300 | - <hop> <from>正常班次站点查询用数据</from><to>查找起点站名称</to><enabled>Y</enabled> </hop> | |
| 301 | - <hop> <from>查找起点站名称</from><to>查找终点站名称</to><enabled>Y</enabled> </hop> | |
| 302 | - <hop> <from>查找终点站名称</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 303 | - <hop> <from>进场出场班次查询用的数据</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | |
| 304 | - <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 305 | - <hop> <from>字段选择 2</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 306 | - <hop> <from>排序记录</from><to>计算发车站名</to><enabled>Y</enabled> </hop> | |
| 307 | - <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> | |
| 308 | - <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 309 | - <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> | |
| 310 | - <hop> <from>计算发车站名</from><to>合并内容</to><enabled>Y</enabled> </hop> | |
| 311 | - <hop> <from>合并内容</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 312 | - <hop> <from>去除字段</from><to>文本文件输出</to><enabled>Y</enabled> </hop> | |
| 313 | - </order> | |
| 314 | - <step> | |
| 315 | - <name>Excel输出</name> | |
| 316 | - <type>ExcelOutput</type> | |
| 317 | - <description/> | |
| 318 | - <distribute>Y</distribute> | |
| 319 | - <custom_distribution/> | |
| 320 | - <copies>1</copies> | |
| 321 | - <partitioning> | |
| 322 | - <method>none</method> | |
| 323 | - <schema_name/> | |
| 324 | - </partitioning> | |
| 325 | - <header>Y</header> | |
| 326 | - <footer>N</footer> | |
| 327 | - <encoding/> | |
| 328 | - <append>N</append> | |
| 329 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 330 | - <file> | |
| 331 | - <name>${tempfilepath}</name> | |
| 332 | - <extention>xls</extention> | |
| 333 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 334 | - <create_parent_folder>N</create_parent_folder> | |
| 335 | - <split>N</split> | |
| 336 | - <add_date>N</add_date> | |
| 337 | - <add_time>N</add_time> | |
| 338 | - <SpecifyFormat>N</SpecifyFormat> | |
| 339 | - <date_time_format/> | |
| 340 | - <sheetname>Sheet1</sheetname> | |
| 341 | - <autosizecolums>N</autosizecolums> | |
| 342 | - <nullisblank>N</nullisblank> | |
| 343 | - <protect_sheet>N</protect_sheet> | |
| 344 | - <password>Encrypted </password> | |
| 345 | - <splitevery>0</splitevery> | |
| 346 | - <usetempfiles>N</usetempfiles> | |
| 347 | - <tempdirectory/> | |
| 348 | - </file> | |
| 349 | - <template> | |
| 350 | - <enabled>N</enabled> | |
| 351 | - <append>N</append> | |
| 352 | - <filename>template.xls</filename> | |
| 353 | - </template> | |
| 354 | - <fields> | |
| 355 | - <field> | |
| 356 | - <name>lp</name> | |
| 357 | - <type>String</type> | |
| 358 | - <format/> | |
| 359 | - </field> | |
| 360 | - <field> | |
| 361 | - <name>fcno1</name> | |
| 362 | - <type>String</type> | |
| 363 | - <format/> | |
| 364 | - </field> | |
| 365 | - <field> | |
| 366 | - <name>fcno2</name> | |
| 367 | - <type>String</type> | |
| 368 | - <format/> | |
| 369 | - </field> | |
| 370 | - <field> | |
| 371 | - <name>fcno3</name> | |
| 372 | - <type>String</type> | |
| 373 | - <format/> | |
| 374 | - </field> | |
| 375 | - <field> | |
| 376 | - <name>fcno4</name> | |
| 377 | - <type>String</type> | |
| 378 | - <format/> | |
| 379 | - </field> | |
| 380 | - <field> | |
| 381 | - <name>fcno5</name> | |
| 382 | - <type>String</type> | |
| 383 | - <format/> | |
| 384 | - </field> | |
| 385 | - <field> | |
| 386 | - <name>fcno6</name> | |
| 387 | - <type>String</type> | |
| 388 | - <format/> | |
| 389 | - </field> | |
| 390 | - <field> | |
| 391 | - <name>fcno7</name> | |
| 392 | - <type>String</type> | |
| 393 | - <format/> | |
| 394 | - </field> | |
| 395 | - <field> | |
| 396 | - <name>fcno8</name> | |
| 397 | - <type>String</type> | |
| 398 | - <format/> | |
| 399 | - </field> | |
| 400 | - <field> | |
| 401 | - <name>fcno9</name> | |
| 402 | - <type>String</type> | |
| 403 | - <format/> | |
| 404 | - </field> | |
| 405 | - <field> | |
| 406 | - <name>fcno10</name> | |
| 407 | - <type>String</type> | |
| 408 | - <format/> | |
| 409 | - </field> | |
| 410 | - <field> | |
| 411 | - <name>fcno11</name> | |
| 412 | - <type>String</type> | |
| 413 | - <format/> | |
| 414 | - </field> | |
| 415 | - <field> | |
| 416 | - <name>fcno12</name> | |
| 417 | - <type>String</type> | |
| 418 | - <format/> | |
| 419 | - </field> | |
| 420 | - <field> | |
| 421 | - <name>fcno13</name> | |
| 422 | - <type>String</type> | |
| 423 | - <format/> | |
| 424 | - </field> | |
| 425 | - <field> | |
| 426 | - <name>fcno14</name> | |
| 427 | - <type>String</type> | |
| 428 | - <format/> | |
| 429 | - </field> | |
| 430 | - <field> | |
| 431 | - <name>fcno15</name> | |
| 432 | - <type>String</type> | |
| 433 | - <format/> | |
| 434 | - </field> | |
| 435 | - <field> | |
| 436 | - <name>fcno16</name> | |
| 437 | - <type>String</type> | |
| 438 | - <format/> | |
| 439 | - </field> | |
| 440 | - <field> | |
| 441 | - <name>fcno17</name> | |
| 442 | - <type>String</type> | |
| 443 | - <format/> | |
| 444 | - </field> | |
| 445 | - <field> | |
| 446 | - <name>fcno18</name> | |
| 447 | - <type>String</type> | |
| 448 | - <format/> | |
| 449 | - </field> | |
| 450 | - <field> | |
| 451 | - <name>fcno19</name> | |
| 452 | - <type>String</type> | |
| 453 | - <format/> | |
| 454 | - </field> | |
| 455 | - <field> | |
| 456 | - <name>fcno20</name> | |
| 457 | - <type>String</type> | |
| 458 | - <format/> | |
| 459 | - </field> | |
| 460 | - <field> | |
| 461 | - <name>fcno21</name> | |
| 462 | - <type>String</type> | |
| 463 | - <format/> | |
| 464 | - </field> | |
| 465 | - <field> | |
| 466 | - <name>fcno22</name> | |
| 467 | - <type>String</type> | |
| 468 | - <format/> | |
| 469 | - </field> | |
| 470 | - <field> | |
| 471 | - <name>fcno23</name> | |
| 472 | - <type>String</type> | |
| 473 | - <format/> | |
| 474 | - </field> | |
| 475 | - <field> | |
| 476 | - <name>fcno24</name> | |
| 477 | - <type>String</type> | |
| 478 | - <format/> | |
| 479 | - </field> | |
| 480 | - <field> | |
| 481 | - <name>fcno25</name> | |
| 482 | - <type>String</type> | |
| 483 | - <format/> | |
| 484 | - </field> | |
| 485 | - <field> | |
| 486 | - <name>fcno26</name> | |
| 487 | - <type>String</type> | |
| 488 | - <format/> | |
| 489 | - </field> | |
| 490 | - <field> | |
| 491 | - <name>fcno27</name> | |
| 492 | - <type>String</type> | |
| 493 | - <format/> | |
| 494 | - </field> | |
| 495 | - <field> | |
| 496 | - <name>fcno28</name> | |
| 497 | - <type>String</type> | |
| 498 | - <format/> | |
| 499 | - </field> | |
| 500 | - <field> | |
| 501 | - <name>fcno29</name> | |
| 502 | - <type>String</type> | |
| 503 | - <format/> | |
| 504 | - </field> | |
| 505 | - <field> | |
| 506 | - <name>fcno30</name> | |
| 507 | - <type>String</type> | |
| 508 | - <format/> | |
| 509 | - </field> | |
| 510 | - <field> | |
| 511 | - <name>fcno31</name> | |
| 512 | - <type>String</type> | |
| 513 | - <format/> | |
| 514 | - </field> | |
| 515 | - <field> | |
| 516 | - <name>fcno32</name> | |
| 517 | - <type>String</type> | |
| 518 | - <format/> | |
| 519 | - </field> | |
| 520 | - <field> | |
| 521 | - <name>fcno33</name> | |
| 522 | - <type>String</type> | |
| 523 | - <format/> | |
| 524 | - </field> | |
| 525 | - <field> | |
| 526 | - <name>fcno34</name> | |
| 527 | - <type>String</type> | |
| 528 | - <format/> | |
| 529 | - </field> | |
| 530 | - <field> | |
| 531 | - <name>fcno35</name> | |
| 532 | - <type>String</type> | |
| 533 | - <format/> | |
| 534 | - </field> | |
| 535 | - <field> | |
| 536 | - <name>fcno36</name> | |
| 537 | - <type>String</type> | |
| 538 | - <format/> | |
| 539 | - </field> | |
| 540 | - <field> | |
| 541 | - <name>fcno37</name> | |
| 542 | - <type>String</type> | |
| 543 | - <format/> | |
| 544 | - </field> | |
| 545 | - <field> | |
| 546 | - <name>fcno38</name> | |
| 547 | - <type>String</type> | |
| 548 | - <format/> | |
| 549 | - </field> | |
| 550 | - <field> | |
| 551 | - <name>fcno39</name> | |
| 552 | - <type>String</type> | |
| 553 | - <format/> | |
| 554 | - </field> | |
| 555 | - <field> | |
| 556 | - <name>fcno40</name> | |
| 557 | - <type>String</type> | |
| 558 | - <format/> | |
| 559 | - </field> | |
| 560 | - <field> | |
| 561 | - <name>fcno41</name> | |
| 562 | - <type>String</type> | |
| 563 | - <format/> | |
| 564 | - </field> | |
| 565 | - <field> | |
| 566 | - <name>fcno42</name> | |
| 567 | - <type>String</type> | |
| 568 | - <format/> | |
| 569 | - </field> | |
| 570 | - <field> | |
| 571 | - <name>fcno43</name> | |
| 572 | - <type>String</type> | |
| 573 | - <format/> | |
| 574 | - </field> | |
| 575 | - <field> | |
| 576 | - <name>fcno44</name> | |
| 577 | - <type>String</type> | |
| 578 | - <format/> | |
| 579 | - </field> | |
| 580 | - <field> | |
| 581 | - <name>fcno45</name> | |
| 582 | - <type>String</type> | |
| 583 | - <format/> | |
| 584 | - </field> | |
| 585 | - <field> | |
| 586 | - <name>fcno46</name> | |
| 587 | - <type>String</type> | |
| 588 | - <format/> | |
| 589 | - </field> | |
| 590 | - <field> | |
| 591 | - <name>fcno47</name> | |
| 592 | - <type>String</type> | |
| 593 | - <format/> | |
| 594 | - </field> | |
| 595 | - <field> | |
| 596 | - <name>fcno48</name> | |
| 597 | - <type>String</type> | |
| 598 | - <format/> | |
| 599 | - </field> | |
| 600 | - <field> | |
| 601 | - <name>fcno49</name> | |
| 602 | - <type>String</type> | |
| 603 | - <format/> | |
| 604 | - </field> | |
| 605 | - <field> | |
| 606 | - <name>fcno50</name> | |
| 607 | - <type>String</type> | |
| 608 | - <format/> | |
| 609 | - </field> | |
| 610 | - <field> | |
| 611 | - <name>fcno51</name> | |
| 612 | - <type>String</type> | |
| 613 | - <format/> | |
| 614 | - </field> | |
| 615 | - <field> | |
| 616 | - <name>fcno52</name> | |
| 617 | - <type>String</type> | |
| 618 | - <format/> | |
| 619 | - </field> | |
| 620 | - <field> | |
| 621 | - <name>fcno53</name> | |
| 622 | - <type>String</type> | |
| 623 | - <format/> | |
| 624 | - </field> | |
| 625 | - <field> | |
| 626 | - <name>fcno54</name> | |
| 627 | - <type>String</type> | |
| 628 | - <format/> | |
| 629 | - </field> | |
| 630 | - <field> | |
| 631 | - <name>fcno55</name> | |
| 632 | - <type>String</type> | |
| 633 | - <format/> | |
| 634 | - </field> | |
| 635 | - <field> | |
| 636 | - <name>fcno56</name> | |
| 637 | - <type>String</type> | |
| 638 | - <format/> | |
| 639 | - </field> | |
| 640 | - <field> | |
| 641 | - <name>fcno57</name> | |
| 642 | - <type>String</type> | |
| 643 | - <format/> | |
| 644 | - </field> | |
| 645 | - <field> | |
| 646 | - <name>fcno58</name> | |
| 647 | - <type>String</type> | |
| 648 | - <format/> | |
| 649 | - </field> | |
| 650 | - <field> | |
| 651 | - <name>fcno59</name> | |
| 652 | - <type>String</type> | |
| 653 | - <format/> | |
| 654 | - </field> | |
| 655 | - <field> | |
| 656 | - <name>fcno60</name> | |
| 657 | - <type>String</type> | |
| 658 | - <format/> | |
| 659 | - </field> | |
| 660 | - <field> | |
| 661 | - <name>fcno61</name> | |
| 662 | - <type>String</type> | |
| 663 | - <format/> | |
| 664 | - </field> | |
| 665 | - <field> | |
| 666 | - <name>fcno62</name> | |
| 667 | - <type>String</type> | |
| 668 | - <format/> | |
| 669 | - </field> | |
| 670 | - <field> | |
| 671 | - <name>fcno63</name> | |
| 672 | - <type>String</type> | |
| 673 | - <format/> | |
| 674 | - </field> | |
| 675 | - <field> | |
| 676 | - <name>fcno64</name> | |
| 677 | - <type>String</type> | |
| 678 | - <format/> | |
| 679 | - </field> | |
| 680 | - <field> | |
| 681 | - <name>fcno65</name> | |
| 682 | - <type>String</type> | |
| 683 | - <format/> | |
| 684 | - </field> | |
| 685 | - <field> | |
| 686 | - <name>fcno66</name> | |
| 687 | - <type>String</type> | |
| 688 | - <format/> | |
| 689 | - </field> | |
| 690 | - <field> | |
| 691 | - <name>fcno67</name> | |
| 692 | - <type>String</type> | |
| 693 | - <format/> | |
| 694 | - </field> | |
| 695 | - <field> | |
| 696 | - <name>fcno68</name> | |
| 697 | - <type>String</type> | |
| 698 | - <format/> | |
| 699 | - </field> | |
| 700 | - <field> | |
| 701 | - <name>fcno69</name> | |
| 702 | - <type>String</type> | |
| 703 | - <format/> | |
| 704 | - </field> | |
| 705 | - <field> | |
| 706 | - <name>fcno70</name> | |
| 707 | - <type>String</type> | |
| 708 | - <format/> | |
| 709 | - </field> | |
| 710 | - </fields> | |
| 711 | - <custom> | |
| 712 | - <header_font_name>arial</header_font_name> | |
| 713 | - <header_font_size>10</header_font_size> | |
| 714 | - <header_font_bold>N</header_font_bold> | |
| 715 | - <header_font_italic>N</header_font_italic> | |
| 716 | - <header_font_underline>no</header_font_underline> | |
| 717 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 718 | - <header_font_color>black</header_font_color> | |
| 719 | - <header_background_color>none</header_background_color> | |
| 720 | - <header_row_height>255</header_row_height> | |
| 721 | - <header_alignment>left</header_alignment> | |
| 722 | - <header_image/> | |
| 723 | - <row_font_name>arial</row_font_name> | |
| 724 | - <row_font_size>10</row_font_size> | |
| 725 | - <row_font_color>black</row_font_color> | |
| 726 | - <row_background_color>none</row_background_color> | |
| 727 | - </custom> | |
| 728 | - <cluster_schema/> | |
| 729 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 730 | - <xloc>692</xloc> | |
| 731 | - <yloc>514</yloc> | |
| 732 | - <draw>Y</draw> | |
| 733 | - </GUI> | |
| 734 | - </step> | |
| 735 | - | |
| 736 | - <step> | |
| 737 | - <name>列转行</name> | |
| 738 | - <type>Denormaliser</type> | |
| 739 | - <description/> | |
| 740 | - <distribute>N</distribute> | |
| 741 | - <custom_distribution/> | |
| 742 | - <copies>1</copies> | |
| 743 | - <partitioning> | |
| 744 | - <method>none</method> | |
| 745 | - <schema_name/> | |
| 746 | - </partitioning> | |
| 747 | - <key_field>fcno</key_field> | |
| 748 | - <group> | |
| 749 | - <field> | |
| 750 | - <name>lp</name> | |
| 751 | - </field> | |
| 752 | - </group> | |
| 753 | - <fields> | |
| 754 | - <field> | |
| 755 | - <field_name>all_content</field_name> | |
| 756 | - <key_value>1</key_value> | |
| 757 | - <target_name>fcno1</target_name> | |
| 758 | - <target_type>String</target_type> | |
| 759 | - <target_format/> | |
| 760 | - <target_length>-1</target_length> | |
| 761 | - <target_precision>-1</target_precision> | |
| 762 | - <target_decimal_symbol/> | |
| 763 | - <target_grouping_symbol/> | |
| 764 | - <target_currency_symbol/> | |
| 765 | - <target_null_string/> | |
| 766 | - <target_aggregation_type>-</target_aggregation_type> | |
| 767 | - </field> | |
| 768 | - <field> | |
| 769 | - <field_name>all_content</field_name> | |
| 770 | - <key_value>2</key_value> | |
| 771 | - <target_name>fcno2</target_name> | |
| 772 | - <target_type>String</target_type> | |
| 773 | - <target_format/> | |
| 774 | - <target_length>-1</target_length> | |
| 775 | - <target_precision>-1</target_precision> | |
| 776 | - <target_decimal_symbol/> | |
| 777 | - <target_grouping_symbol/> | |
| 778 | - <target_currency_symbol/> | |
| 779 | - <target_null_string/> | |
| 780 | - <target_aggregation_type>-</target_aggregation_type> | |
| 781 | - </field> | |
| 782 | - <field> | |
| 783 | - <field_name>all_content</field_name> | |
| 784 | - <key_value>3</key_value> | |
| 785 | - <target_name>fcno3</target_name> | |
| 786 | - <target_type>String</target_type> | |
| 787 | - <target_format/> | |
| 788 | - <target_length>-1</target_length> | |
| 789 | - <target_precision>-1</target_precision> | |
| 790 | - <target_decimal_symbol/> | |
| 791 | - <target_grouping_symbol/> | |
| 792 | - <target_currency_symbol/> | |
| 793 | - <target_null_string/> | |
| 794 | - <target_aggregation_type>-</target_aggregation_type> | |
| 795 | - </field> | |
| 796 | - <field> | |
| 797 | - <field_name>all_content</field_name> | |
| 798 | - <key_value>4</key_value> | |
| 799 | - <target_name>fcno4</target_name> | |
| 800 | - <target_type>String</target_type> | |
| 801 | - <target_format/> | |
| 802 | - <target_length>-1</target_length> | |
| 803 | - <target_precision>-1</target_precision> | |
| 804 | - <target_decimal_symbol/> | |
| 805 | - <target_grouping_symbol/> | |
| 806 | - <target_currency_symbol/> | |
| 807 | - <target_null_string/> | |
| 808 | - <target_aggregation_type>-</target_aggregation_type> | |
| 809 | - </field> | |
| 810 | - <field> | |
| 811 | - <field_name>all_content</field_name> | |
| 812 | - <key_value>5</key_value> | |
| 813 | - <target_name>fcno5</target_name> | |
| 814 | - <target_type>String</target_type> | |
| 815 | - <target_format/> | |
| 816 | - <target_length>-1</target_length> | |
| 817 | - <target_precision>-1</target_precision> | |
| 818 | - <target_decimal_symbol/> | |
| 819 | - <target_grouping_symbol/> | |
| 820 | - <target_currency_symbol/> | |
| 821 | - <target_null_string/> | |
| 822 | - <target_aggregation_type>-</target_aggregation_type> | |
| 823 | - </field> | |
| 824 | - <field> | |
| 825 | - <field_name>all_content</field_name> | |
| 826 | - <key_value>6</key_value> | |
| 827 | - <target_name>fcno6</target_name> | |
| 828 | - <target_type>String</target_type> | |
| 829 | - <target_format/> | |
| 830 | - <target_length>-1</target_length> | |
| 831 | - <target_precision>-1</target_precision> | |
| 832 | - <target_decimal_symbol/> | |
| 833 | - <target_grouping_symbol/> | |
| 834 | - <target_currency_symbol/> | |
| 835 | - <target_null_string/> | |
| 836 | - <target_aggregation_type>-</target_aggregation_type> | |
| 837 | - </field> | |
| 838 | - <field> | |
| 839 | - <field_name>all_content</field_name> | |
| 840 | - <key_value>7</key_value> | |
| 841 | - <target_name>fcno7</target_name> | |
| 842 | - <target_type>String</target_type> | |
| 843 | - <target_format/> | |
| 844 | - <target_length>-1</target_length> | |
| 845 | - <target_precision>-1</target_precision> | |
| 846 | - <target_decimal_symbol/> | |
| 847 | - <target_grouping_symbol/> | |
| 848 | - <target_currency_symbol/> | |
| 849 | - <target_null_string/> | |
| 850 | - <target_aggregation_type>-</target_aggregation_type> | |
| 851 | - </field> | |
| 852 | - <field> | |
| 853 | - <field_name>all_content</field_name> | |
| 854 | - <key_value>8</key_value> | |
| 855 | - <target_name>fcno8</target_name> | |
| 856 | - <target_type>String</target_type> | |
| 857 | - <target_format/> | |
| 858 | - <target_length>-1</target_length> | |
| 859 | - <target_precision>-1</target_precision> | |
| 860 | - <target_decimal_symbol/> | |
| 861 | - <target_grouping_symbol/> | |
| 862 | - <target_currency_symbol/> | |
| 863 | - <target_null_string/> | |
| 864 | - <target_aggregation_type>-</target_aggregation_type> | |
| 865 | - </field> | |
| 866 | - <field> | |
| 867 | - <field_name>all_content</field_name> | |
| 868 | - <key_value>9</key_value> | |
| 869 | - <target_name>fcno9</target_name> | |
| 870 | - <target_type>String</target_type> | |
| 871 | - <target_format/> | |
| 872 | - <target_length>-1</target_length> | |
| 873 | - <target_precision>-1</target_precision> | |
| 874 | - <target_decimal_symbol/> | |
| 875 | - <target_grouping_symbol/> | |
| 876 | - <target_currency_symbol/> | |
| 877 | - <target_null_string/> | |
| 878 | - <target_aggregation_type>-</target_aggregation_type> | |
| 879 | - </field> | |
| 880 | - <field> | |
| 881 | - <field_name>all_content</field_name> | |
| 882 | - <key_value>10</key_value> | |
| 883 | - <target_name>fcno10</target_name> | |
| 884 | - <target_type>String</target_type> | |
| 885 | - <target_format/> | |
| 886 | - <target_length>-1</target_length> | |
| 887 | - <target_precision>-1</target_precision> | |
| 888 | - <target_decimal_symbol/> | |
| 889 | - <target_grouping_symbol/> | |
| 890 | - <target_currency_symbol/> | |
| 891 | - <target_null_string/> | |
| 892 | - <target_aggregation_type>-</target_aggregation_type> | |
| 893 | - </field> | |
| 894 | - <field> | |
| 895 | - <field_name>all_content</field_name> | |
| 896 | - <key_value>11</key_value> | |
| 897 | - <target_name>fcno11</target_name> | |
| 898 | - <target_type>String</target_type> | |
| 899 | - <target_format/> | |
| 900 | - <target_length>-1</target_length> | |
| 901 | - <target_precision>-1</target_precision> | |
| 902 | - <target_decimal_symbol/> | |
| 903 | - <target_grouping_symbol/> | |
| 904 | - <target_currency_symbol/> | |
| 905 | - <target_null_string/> | |
| 906 | - <target_aggregation_type>-</target_aggregation_type> | |
| 907 | - </field> | |
| 908 | - <field> | |
| 909 | - <field_name>all_content</field_name> | |
| 910 | - <key_value>12</key_value> | |
| 911 | - <target_name>fcno12</target_name> | |
| 912 | - <target_type>String</target_type> | |
| 913 | - <target_format/> | |
| 914 | - <target_length>-1</target_length> | |
| 915 | - <target_precision>-1</target_precision> | |
| 916 | - <target_decimal_symbol/> | |
| 917 | - <target_grouping_symbol/> | |
| 918 | - <target_currency_symbol/> | |
| 919 | - <target_null_string/> | |
| 920 | - <target_aggregation_type>-</target_aggregation_type> | |
| 921 | - </field> | |
| 922 | - <field> | |
| 923 | - <field_name>all_content</field_name> | |
| 924 | - <key_value>13</key_value> | |
| 925 | - <target_name>fcno13</target_name> | |
| 926 | - <target_type>String</target_type> | |
| 927 | - <target_format/> | |
| 928 | - <target_length>-1</target_length> | |
| 929 | - <target_precision>-1</target_precision> | |
| 930 | - <target_decimal_symbol/> | |
| 931 | - <target_grouping_symbol/> | |
| 932 | - <target_currency_symbol/> | |
| 933 | - <target_null_string/> | |
| 934 | - <target_aggregation_type>-</target_aggregation_type> | |
| 935 | - </field> | |
| 936 | - <field> | |
| 937 | - <field_name>all_content</field_name> | |
| 938 | - <key_value>14</key_value> | |
| 939 | - <target_name>fcno14</target_name> | |
| 940 | - <target_type>String</target_type> | |
| 941 | - <target_format/> | |
| 942 | - <target_length>-1</target_length> | |
| 943 | - <target_precision>-1</target_precision> | |
| 944 | - <target_decimal_symbol/> | |
| 945 | - <target_grouping_symbol/> | |
| 946 | - <target_currency_symbol/> | |
| 947 | - <target_null_string/> | |
| 948 | - <target_aggregation_type>-</target_aggregation_type> | |
| 949 | - </field> | |
| 950 | - <field> | |
| 951 | - <field_name>all_content</field_name> | |
| 952 | - <key_value>15</key_value> | |
| 953 | - <target_name>fcno15</target_name> | |
| 954 | - <target_type>String</target_type> | |
| 955 | - <target_format/> | |
| 956 | - <target_length>-1</target_length> | |
| 957 | - <target_precision>-1</target_precision> | |
| 958 | - <target_decimal_symbol/> | |
| 959 | - <target_grouping_symbol/> | |
| 960 | - <target_currency_symbol/> | |
| 961 | - <target_null_string/> | |
| 962 | - <target_aggregation_type>-</target_aggregation_type> | |
| 963 | - </field> | |
| 964 | - <field> | |
| 965 | - <field_name>all_content</field_name> | |
| 966 | - <key_value>16</key_value> | |
| 967 | - <target_name>fcno16</target_name> | |
| 968 | - <target_type>String</target_type> | |
| 969 | - <target_format/> | |
| 970 | - <target_length>-1</target_length> | |
| 971 | - <target_precision>-1</target_precision> | |
| 972 | - <target_decimal_symbol/> | |
| 973 | - <target_grouping_symbol/> | |
| 974 | - <target_currency_symbol/> | |
| 975 | - <target_null_string/> | |
| 976 | - <target_aggregation_type>-</target_aggregation_type> | |
| 977 | - </field> | |
| 978 | - <field> | |
| 979 | - <field_name>all_content</field_name> | |
| 980 | - <key_value>17</key_value> | |
| 981 | - <target_name>fcno17</target_name> | |
| 982 | - <target_type>String</target_type> | |
| 983 | - <target_format/> | |
| 984 | - <target_length>-1</target_length> | |
| 985 | - <target_precision>-1</target_precision> | |
| 986 | - <target_decimal_symbol/> | |
| 987 | - <target_grouping_symbol/> | |
| 988 | - <target_currency_symbol/> | |
| 989 | - <target_null_string/> | |
| 990 | - <target_aggregation_type>-</target_aggregation_type> | |
| 991 | - </field> | |
| 992 | - <field> | |
| 993 | - <field_name>all_content</field_name> | |
| 994 | - <key_value>18</key_value> | |
| 995 | - <target_name>fcno18</target_name> | |
| 996 | - <target_type>String</target_type> | |
| 997 | - <target_format/> | |
| 998 | - <target_length>-1</target_length> | |
| 999 | - <target_precision>-1</target_precision> | |
| 1000 | - <target_decimal_symbol/> | |
| 1001 | - <target_grouping_symbol/> | |
| 1002 | - <target_currency_symbol/> | |
| 1003 | - <target_null_string/> | |
| 1004 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1005 | - </field> | |
| 1006 | - <field> | |
| 1007 | - <field_name>all_content</field_name> | |
| 1008 | - <key_value>19</key_value> | |
| 1009 | - <target_name>fcno19</target_name> | |
| 1010 | - <target_type>String</target_type> | |
| 1011 | - <target_format/> | |
| 1012 | - <target_length>-1</target_length> | |
| 1013 | - <target_precision>-1</target_precision> | |
| 1014 | - <target_decimal_symbol/> | |
| 1015 | - <target_grouping_symbol/> | |
| 1016 | - <target_currency_symbol/> | |
| 1017 | - <target_null_string/> | |
| 1018 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1019 | - </field> | |
| 1020 | - <field> | |
| 1021 | - <field_name>all_content</field_name> | |
| 1022 | - <key_value>20</key_value> | |
| 1023 | - <target_name>fcno20</target_name> | |
| 1024 | - <target_type>String</target_type> | |
| 1025 | - <target_format/> | |
| 1026 | - <target_length>-1</target_length> | |
| 1027 | - <target_precision>-1</target_precision> | |
| 1028 | - <target_decimal_symbol/> | |
| 1029 | - <target_grouping_symbol/> | |
| 1030 | - <target_currency_symbol/> | |
| 1031 | - <target_null_string/> | |
| 1032 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1033 | - </field> | |
| 1034 | - <field> | |
| 1035 | - <field_name>all_content</field_name> | |
| 1036 | - <key_value>21</key_value> | |
| 1037 | - <target_name>fcno21</target_name> | |
| 1038 | - <target_type>String</target_type> | |
| 1039 | - <target_format/> | |
| 1040 | - <target_length>-1</target_length> | |
| 1041 | - <target_precision>-1</target_precision> | |
| 1042 | - <target_decimal_symbol/> | |
| 1043 | - <target_grouping_symbol/> | |
| 1044 | - <target_currency_symbol/> | |
| 1045 | - <target_null_string/> | |
| 1046 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1047 | - </field> | |
| 1048 | - <field> | |
| 1049 | - <field_name>all_content</field_name> | |
| 1050 | - <key_value>22</key_value> | |
| 1051 | - <target_name>fcno22</target_name> | |
| 1052 | - <target_type>String</target_type> | |
| 1053 | - <target_format/> | |
| 1054 | - <target_length>-1</target_length> | |
| 1055 | - <target_precision>-1</target_precision> | |
| 1056 | - <target_decimal_symbol/> | |
| 1057 | - <target_grouping_symbol/> | |
| 1058 | - <target_currency_symbol/> | |
| 1059 | - <target_null_string/> | |
| 1060 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1061 | - </field> | |
| 1062 | - <field> | |
| 1063 | - <field_name>all_content</field_name> | |
| 1064 | - <key_value>23</key_value> | |
| 1065 | - <target_name>fcno23</target_name> | |
| 1066 | - <target_type>String</target_type> | |
| 1067 | - <target_format/> | |
| 1068 | - <target_length>-1</target_length> | |
| 1069 | - <target_precision>-1</target_precision> | |
| 1070 | - <target_decimal_symbol/> | |
| 1071 | - <target_grouping_symbol/> | |
| 1072 | - <target_currency_symbol/> | |
| 1073 | - <target_null_string/> | |
| 1074 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1075 | - </field> | |
| 1076 | - <field> | |
| 1077 | - <field_name>all_content</field_name> | |
| 1078 | - <key_value>24</key_value> | |
| 1079 | - <target_name>fcno24</target_name> | |
| 1080 | - <target_type>String</target_type> | |
| 1081 | - <target_format/> | |
| 1082 | - <target_length>-1</target_length> | |
| 1083 | - <target_precision>-1</target_precision> | |
| 1084 | - <target_decimal_symbol/> | |
| 1085 | - <target_grouping_symbol/> | |
| 1086 | - <target_currency_symbol/> | |
| 1087 | - <target_null_string/> | |
| 1088 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1089 | - </field> | |
| 1090 | - <field> | |
| 1091 | - <field_name>all_content</field_name> | |
| 1092 | - <key_value>25</key_value> | |
| 1093 | - <target_name>fcno25</target_name> | |
| 1094 | - <target_type>String</target_type> | |
| 1095 | - <target_format/> | |
| 1096 | - <target_length>-1</target_length> | |
| 1097 | - <target_precision>-1</target_precision> | |
| 1098 | - <target_decimal_symbol/> | |
| 1099 | - <target_grouping_symbol/> | |
| 1100 | - <target_currency_symbol/> | |
| 1101 | - <target_null_string/> | |
| 1102 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1103 | - </field> | |
| 1104 | - <field> | |
| 1105 | - <field_name>all_content</field_name> | |
| 1106 | - <key_value>26</key_value> | |
| 1107 | - <target_name>fcno26</target_name> | |
| 1108 | - <target_type>String</target_type> | |
| 1109 | - <target_format/> | |
| 1110 | - <target_length>-1</target_length> | |
| 1111 | - <target_precision>-1</target_precision> | |
| 1112 | - <target_decimal_symbol/> | |
| 1113 | - <target_grouping_symbol/> | |
| 1114 | - <target_currency_symbol/> | |
| 1115 | - <target_null_string/> | |
| 1116 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1117 | - </field> | |
| 1118 | - <field> | |
| 1119 | - <field_name>all_content</field_name> | |
| 1120 | - <key_value>27</key_value> | |
| 1121 | - <target_name>fcno27</target_name> | |
| 1122 | - <target_type>String</target_type> | |
| 1123 | - <target_format/> | |
| 1124 | - <target_length>-1</target_length> | |
| 1125 | - <target_precision>-1</target_precision> | |
| 1126 | - <target_decimal_symbol/> | |
| 1127 | - <target_grouping_symbol/> | |
| 1128 | - <target_currency_symbol/> | |
| 1129 | - <target_null_string/> | |
| 1130 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1131 | - </field> | |
| 1132 | - <field> | |
| 1133 | - <field_name>all_content</field_name> | |
| 1134 | - <key_value>28</key_value> | |
| 1135 | - <target_name>fcno28</target_name> | |
| 1136 | - <target_type>String</target_type> | |
| 1137 | - <target_format/> | |
| 1138 | - <target_length>-1</target_length> | |
| 1139 | - <target_precision>-1</target_precision> | |
| 1140 | - <target_decimal_symbol/> | |
| 1141 | - <target_grouping_symbol/> | |
| 1142 | - <target_currency_symbol/> | |
| 1143 | - <target_null_string/> | |
| 1144 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1145 | - </field> | |
| 1146 | - <field> | |
| 1147 | - <field_name>all_content</field_name> | |
| 1148 | - <key_value>29</key_value> | |
| 1149 | - <target_name>fcno29</target_name> | |
| 1150 | - <target_type>String</target_type> | |
| 1151 | - <target_format/> | |
| 1152 | - <target_length>-1</target_length> | |
| 1153 | - <target_precision>-1</target_precision> | |
| 1154 | - <target_decimal_symbol/> | |
| 1155 | - <target_grouping_symbol/> | |
| 1156 | - <target_currency_symbol/> | |
| 1157 | - <target_null_string/> | |
| 1158 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1159 | - </field> | |
| 1160 | - <field> | |
| 1161 | - <field_name>all_content</field_name> | |
| 1162 | - <key_value>30</key_value> | |
| 1163 | - <target_name>fcno30</target_name> | |
| 1164 | - <target_type>String</target_type> | |
| 1165 | - <target_format/> | |
| 1166 | - <target_length>-1</target_length> | |
| 1167 | - <target_precision>-1</target_precision> | |
| 1168 | - <target_decimal_symbol/> | |
| 1169 | - <target_grouping_symbol/> | |
| 1170 | - <target_currency_symbol/> | |
| 1171 | - <target_null_string/> | |
| 1172 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1173 | - </field> | |
| 1174 | - <field> | |
| 1175 | - <field_name>all_content</field_name> | |
| 1176 | - <key_value>31</key_value> | |
| 1177 | - <target_name>fcno31</target_name> | |
| 1178 | - <target_type>String</target_type> | |
| 1179 | - <target_format/> | |
| 1180 | - <target_length>-1</target_length> | |
| 1181 | - <target_precision>-1</target_precision> | |
| 1182 | - <target_decimal_symbol/> | |
| 1183 | - <target_grouping_symbol/> | |
| 1184 | - <target_currency_symbol/> | |
| 1185 | - <target_null_string/> | |
| 1186 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1187 | - </field> | |
| 1188 | - <field> | |
| 1189 | - <field_name>all_content</field_name> | |
| 1190 | - <key_value>32</key_value> | |
| 1191 | - <target_name>fcno32</target_name> | |
| 1192 | - <target_type>String</target_type> | |
| 1193 | - <target_format/> | |
| 1194 | - <target_length>-1</target_length> | |
| 1195 | - <target_precision>-1</target_precision> | |
| 1196 | - <target_decimal_symbol/> | |
| 1197 | - <target_grouping_symbol/> | |
| 1198 | - <target_currency_symbol/> | |
| 1199 | - <target_null_string/> | |
| 1200 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1201 | - </field> | |
| 1202 | - <field> | |
| 1203 | - <field_name>all_content</field_name> | |
| 1204 | - <key_value>33</key_value> | |
| 1205 | - <target_name>fcno33</target_name> | |
| 1206 | - <target_type>String</target_type> | |
| 1207 | - <target_format/> | |
| 1208 | - <target_length>-1</target_length> | |
| 1209 | - <target_precision>-1</target_precision> | |
| 1210 | - <target_decimal_symbol/> | |
| 1211 | - <target_grouping_symbol/> | |
| 1212 | - <target_currency_symbol/> | |
| 1213 | - <target_null_string/> | |
| 1214 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1215 | - </field> | |
| 1216 | - <field> | |
| 1217 | - <field_name>all_content</field_name> | |
| 1218 | - <key_value>34</key_value> | |
| 1219 | - <target_name>fcno34</target_name> | |
| 1220 | - <target_type>String</target_type> | |
| 1221 | - <target_format/> | |
| 1222 | - <target_length>-1</target_length> | |
| 1223 | - <target_precision>-1</target_precision> | |
| 1224 | - <target_decimal_symbol/> | |
| 1225 | - <target_grouping_symbol/> | |
| 1226 | - <target_currency_symbol/> | |
| 1227 | - <target_null_string/> | |
| 1228 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1229 | - </field> | |
| 1230 | - <field> | |
| 1231 | - <field_name>all_content</field_name> | |
| 1232 | - <key_value>35</key_value> | |
| 1233 | - <target_name>fcno35</target_name> | |
| 1234 | - <target_type>String</target_type> | |
| 1235 | - <target_format/> | |
| 1236 | - <target_length>-1</target_length> | |
| 1237 | - <target_precision>-1</target_precision> | |
| 1238 | - <target_decimal_symbol/> | |
| 1239 | - <target_grouping_symbol/> | |
| 1240 | - <target_currency_symbol/> | |
| 1241 | - <target_null_string/> | |
| 1242 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1243 | - </field> | |
| 1244 | - <field> | |
| 1245 | - <field_name>all_content</field_name> | |
| 1246 | - <key_value>36</key_value> | |
| 1247 | - <target_name>fcno36</target_name> | |
| 1248 | - <target_type>String</target_type> | |
| 1249 | - <target_format/> | |
| 1250 | - <target_length>-1</target_length> | |
| 1251 | - <target_precision>-1</target_precision> | |
| 1252 | - <target_decimal_symbol/> | |
| 1253 | - <target_grouping_symbol/> | |
| 1254 | - <target_currency_symbol/> | |
| 1255 | - <target_null_string/> | |
| 1256 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1257 | - </field> | |
| 1258 | - <field> | |
| 1259 | - <field_name>all_content</field_name> | |
| 1260 | - <key_value>37</key_value> | |
| 1261 | - <target_name>fcno37</target_name> | |
| 1262 | - <target_type>String</target_type> | |
| 1263 | - <target_format/> | |
| 1264 | - <target_length>-1</target_length> | |
| 1265 | - <target_precision>-1</target_precision> | |
| 1266 | - <target_decimal_symbol/> | |
| 1267 | - <target_grouping_symbol/> | |
| 1268 | - <target_currency_symbol/> | |
| 1269 | - <target_null_string/> | |
| 1270 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1271 | - </field> | |
| 1272 | - <field> | |
| 1273 | - <field_name>all_content</field_name> | |
| 1274 | - <key_value>38</key_value> | |
| 1275 | - <target_name>fcno38</target_name> | |
| 1276 | - <target_type>String</target_type> | |
| 1277 | - <target_format/> | |
| 1278 | - <target_length>-1</target_length> | |
| 1279 | - <target_precision>-1</target_precision> | |
| 1280 | - <target_decimal_symbol/> | |
| 1281 | - <target_grouping_symbol/> | |
| 1282 | - <target_currency_symbol/> | |
| 1283 | - <target_null_string/> | |
| 1284 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1285 | - </field> | |
| 1286 | - <field> | |
| 1287 | - <field_name>all_content</field_name> | |
| 1288 | - <key_value>39</key_value> | |
| 1289 | - <target_name>fcno39</target_name> | |
| 1290 | - <target_type>String</target_type> | |
| 1291 | - <target_format/> | |
| 1292 | - <target_length>-1</target_length> | |
| 1293 | - <target_precision>-1</target_precision> | |
| 1294 | - <target_decimal_symbol/> | |
| 1295 | - <target_grouping_symbol/> | |
| 1296 | - <target_currency_symbol/> | |
| 1297 | - <target_null_string/> | |
| 1298 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1299 | - </field> | |
| 1300 | - <field> | |
| 1301 | - <field_name>all_content</field_name> | |
| 1302 | - <key_value>40</key_value> | |
| 1303 | - <target_name>fcno40</target_name> | |
| 1304 | - <target_type>String</target_type> | |
| 1305 | - <target_format/> | |
| 1306 | - <target_length>-1</target_length> | |
| 1307 | - <target_precision>-1</target_precision> | |
| 1308 | - <target_decimal_symbol/> | |
| 1309 | - <target_grouping_symbol/> | |
| 1310 | - <target_currency_symbol/> | |
| 1311 | - <target_null_string/> | |
| 1312 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1313 | - </field> | |
| 1314 | - <field> | |
| 1315 | - <field_name>all_content</field_name> | |
| 1316 | - <key_value>41</key_value> | |
| 1317 | - <target_name>fcno41</target_name> | |
| 1318 | - <target_type>String</target_type> | |
| 1319 | - <target_format/> | |
| 1320 | - <target_length>-1</target_length> | |
| 1321 | - <target_precision>-1</target_precision> | |
| 1322 | - <target_decimal_symbol/> | |
| 1323 | - <target_grouping_symbol/> | |
| 1324 | - <target_currency_symbol/> | |
| 1325 | - <target_null_string/> | |
| 1326 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1327 | - </field> | |
| 1328 | - <field> | |
| 1329 | - <field_name>all_content</field_name> | |
| 1330 | - <key_value>42</key_value> | |
| 1331 | - <target_name>fcno42</target_name> | |
| 1332 | - <target_type>String</target_type> | |
| 1333 | - <target_format/> | |
| 1334 | - <target_length>-1</target_length> | |
| 1335 | - <target_precision>-1</target_precision> | |
| 1336 | - <target_decimal_symbol/> | |
| 1337 | - <target_grouping_symbol/> | |
| 1338 | - <target_currency_symbol/> | |
| 1339 | - <target_null_string/> | |
| 1340 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1341 | - </field> | |
| 1342 | - <field> | |
| 1343 | - <field_name>all_content</field_name> | |
| 1344 | - <key_value>43</key_value> | |
| 1345 | - <target_name>fcno43</target_name> | |
| 1346 | - <target_type>String</target_type> | |
| 1347 | - <target_format/> | |
| 1348 | - <target_length>-1</target_length> | |
| 1349 | - <target_precision>-1</target_precision> | |
| 1350 | - <target_decimal_symbol/> | |
| 1351 | - <target_grouping_symbol/> | |
| 1352 | - <target_currency_symbol/> | |
| 1353 | - <target_null_string/> | |
| 1354 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1355 | - </field> | |
| 1356 | - <field> | |
| 1357 | - <field_name>all_content</field_name> | |
| 1358 | - <key_value>44</key_value> | |
| 1359 | - <target_name>fcno44</target_name> | |
| 1360 | - <target_type>String</target_type> | |
| 1361 | - <target_format/> | |
| 1362 | - <target_length>-1</target_length> | |
| 1363 | - <target_precision>-1</target_precision> | |
| 1364 | - <target_decimal_symbol/> | |
| 1365 | - <target_grouping_symbol/> | |
| 1366 | - <target_currency_symbol/> | |
| 1367 | - <target_null_string/> | |
| 1368 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1369 | - </field> | |
| 1370 | - <field> | |
| 1371 | - <field_name>all_content</field_name> | |
| 1372 | - <key_value>45</key_value> | |
| 1373 | - <target_name>fcno45</target_name> | |
| 1374 | - <target_type>String</target_type> | |
| 1375 | - <target_format/> | |
| 1376 | - <target_length>-1</target_length> | |
| 1377 | - <target_precision>-1</target_precision> | |
| 1378 | - <target_decimal_symbol/> | |
| 1379 | - <target_grouping_symbol/> | |
| 1380 | - <target_currency_symbol/> | |
| 1381 | - <target_null_string/> | |
| 1382 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1383 | - </field> | |
| 1384 | - <field> | |
| 1385 | - <field_name>all_content</field_name> | |
| 1386 | - <key_value>46</key_value> | |
| 1387 | - <target_name>fcno46</target_name> | |
| 1388 | - <target_type>String</target_type> | |
| 1389 | - <target_format/> | |
| 1390 | - <target_length>-1</target_length> | |
| 1391 | - <target_precision>-1</target_precision> | |
| 1392 | - <target_decimal_symbol/> | |
| 1393 | - <target_grouping_symbol/> | |
| 1394 | - <target_currency_symbol/> | |
| 1395 | - <target_null_string/> | |
| 1396 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1397 | - </field> | |
| 1398 | - <field> | |
| 1399 | - <field_name>all_content</field_name> | |
| 1400 | - <key_value>47</key_value> | |
| 1401 | - <target_name>fcno47</target_name> | |
| 1402 | - <target_type>String</target_type> | |
| 1403 | - <target_format/> | |
| 1404 | - <target_length>-1</target_length> | |
| 1405 | - <target_precision>-1</target_precision> | |
| 1406 | - <target_decimal_symbol/> | |
| 1407 | - <target_grouping_symbol/> | |
| 1408 | - <target_currency_symbol/> | |
| 1409 | - <target_null_string/> | |
| 1410 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1411 | - </field> | |
| 1412 | - <field> | |
| 1413 | - <field_name>all_content</field_name> | |
| 1414 | - <key_value>48</key_value> | |
| 1415 | - <target_name>fcno48</target_name> | |
| 1416 | - <target_type>String</target_type> | |
| 1417 | - <target_format/> | |
| 1418 | - <target_length>-1</target_length> | |
| 1419 | - <target_precision>-1</target_precision> | |
| 1420 | - <target_decimal_symbol/> | |
| 1421 | - <target_grouping_symbol/> | |
| 1422 | - <target_currency_symbol/> | |
| 1423 | - <target_null_string/> | |
| 1424 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1425 | - </field> | |
| 1426 | - <field> | |
| 1427 | - <field_name>all_content</field_name> | |
| 1428 | - <key_value>49</key_value> | |
| 1429 | - <target_name>fcno49</target_name> | |
| 1430 | - <target_type>String</target_type> | |
| 1431 | - <target_format/> | |
| 1432 | - <target_length>-1</target_length> | |
| 1433 | - <target_precision>-1</target_precision> | |
| 1434 | - <target_decimal_symbol/> | |
| 1435 | - <target_grouping_symbol/> | |
| 1436 | - <target_currency_symbol/> | |
| 1437 | - <target_null_string/> | |
| 1438 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1439 | - </field> | |
| 1440 | - <field> | |
| 1441 | - <field_name>all_content</field_name> | |
| 1442 | - <key_value>50</key_value> | |
| 1443 | - <target_name>fcno50</target_name> | |
| 1444 | - <target_type>String</target_type> | |
| 1445 | - <target_format/> | |
| 1446 | - <target_length>-1</target_length> | |
| 1447 | - <target_precision>-1</target_precision> | |
| 1448 | - <target_decimal_symbol/> | |
| 1449 | - <target_grouping_symbol/> | |
| 1450 | - <target_currency_symbol/> | |
| 1451 | - <target_null_string/> | |
| 1452 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1453 | - </field> | |
| 1454 | - <field> | |
| 1455 | - <field_name>all_content</field_name> | |
| 1456 | - <key_value>51</key_value> | |
| 1457 | - <target_name>fcno51</target_name> | |
| 1458 | - <target_type>String</target_type> | |
| 1459 | - <target_format/> | |
| 1460 | - <target_length>-1</target_length> | |
| 1461 | - <target_precision>-1</target_precision> | |
| 1462 | - <target_decimal_symbol/> | |
| 1463 | - <target_grouping_symbol/> | |
| 1464 | - <target_currency_symbol/> | |
| 1465 | - <target_null_string/> | |
| 1466 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1467 | - </field> | |
| 1468 | - <field> | |
| 1469 | - <field_name>all_content</field_name> | |
| 1470 | - <key_value>52</key_value> | |
| 1471 | - <target_name>fcno52</target_name> | |
| 1472 | - <target_type>String</target_type> | |
| 1473 | - <target_format/> | |
| 1474 | - <target_length>-1</target_length> | |
| 1475 | - <target_precision>-1</target_precision> | |
| 1476 | - <target_decimal_symbol/> | |
| 1477 | - <target_grouping_symbol/> | |
| 1478 | - <target_currency_symbol/> | |
| 1479 | - <target_null_string/> | |
| 1480 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1481 | - </field> | |
| 1482 | - <field> | |
| 1483 | - <field_name>all_content</field_name> | |
| 1484 | - <key_value>53</key_value> | |
| 1485 | - <target_name>fcno53</target_name> | |
| 1486 | - <target_type>String</target_type> | |
| 1487 | - <target_format/> | |
| 1488 | - <target_length>-1</target_length> | |
| 1489 | - <target_precision>-1</target_precision> | |
| 1490 | - <target_decimal_symbol/> | |
| 1491 | - <target_grouping_symbol/> | |
| 1492 | - <target_currency_symbol/> | |
| 1493 | - <target_null_string/> | |
| 1494 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1495 | - </field> | |
| 1496 | - <field> | |
| 1497 | - <field_name>all_content</field_name> | |
| 1498 | - <key_value>54</key_value> | |
| 1499 | - <target_name>fcno54</target_name> | |
| 1500 | - <target_type>String</target_type> | |
| 1501 | - <target_format/> | |
| 1502 | - <target_length>-1</target_length> | |
| 1503 | - <target_precision>-1</target_precision> | |
| 1504 | - <target_decimal_symbol/> | |
| 1505 | - <target_grouping_symbol/> | |
| 1506 | - <target_currency_symbol/> | |
| 1507 | - <target_null_string/> | |
| 1508 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1509 | - </field> | |
| 1510 | - <field> | |
| 1511 | - <field_name>all_content</field_name> | |
| 1512 | - <key_value>55</key_value> | |
| 1513 | - <target_name>fcno55</target_name> | |
| 1514 | - <target_type>String</target_type> | |
| 1515 | - <target_format/> | |
| 1516 | - <target_length>-1</target_length> | |
| 1517 | - <target_precision>-1</target_precision> | |
| 1518 | - <target_decimal_symbol/> | |
| 1519 | - <target_grouping_symbol/> | |
| 1520 | - <target_currency_symbol/> | |
| 1521 | - <target_null_string/> | |
| 1522 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1523 | - </field> | |
| 1524 | - <field> | |
| 1525 | - <field_name>all_content</field_name> | |
| 1526 | - <key_value>56</key_value> | |
| 1527 | - <target_name>fcno56</target_name> | |
| 1528 | - <target_type>String</target_type> | |
| 1529 | - <target_format/> | |
| 1530 | - <target_length>-1</target_length> | |
| 1531 | - <target_precision>-1</target_precision> | |
| 1532 | - <target_decimal_symbol/> | |
| 1533 | - <target_grouping_symbol/> | |
| 1534 | - <target_currency_symbol/> | |
| 1535 | - <target_null_string/> | |
| 1536 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1537 | - </field> | |
| 1538 | - <field> | |
| 1539 | - <field_name>all_content</field_name> | |
| 1540 | - <key_value>57</key_value> | |
| 1541 | - <target_name>fcno57</target_name> | |
| 1542 | - <target_type>String</target_type> | |
| 1543 | - <target_format/> | |
| 1544 | - <target_length>-1</target_length> | |
| 1545 | - <target_precision>-1</target_precision> | |
| 1546 | - <target_decimal_symbol/> | |
| 1547 | - <target_grouping_symbol/> | |
| 1548 | - <target_currency_symbol/> | |
| 1549 | - <target_null_string/> | |
| 1550 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1551 | - </field> | |
| 1552 | - <field> | |
| 1553 | - <field_name>all_content</field_name> | |
| 1554 | - <key_value>58</key_value> | |
| 1555 | - <target_name>fcno58</target_name> | |
| 1556 | - <target_type>String</target_type> | |
| 1557 | - <target_format/> | |
| 1558 | - <target_length>-1</target_length> | |
| 1559 | - <target_precision>-1</target_precision> | |
| 1560 | - <target_decimal_symbol/> | |
| 1561 | - <target_grouping_symbol/> | |
| 1562 | - <target_currency_symbol/> | |
| 1563 | - <target_null_string/> | |
| 1564 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1565 | - </field> | |
| 1566 | - <field> | |
| 1567 | - <field_name>all_content</field_name> | |
| 1568 | - <key_value>59</key_value> | |
| 1569 | - <target_name>fcno59</target_name> | |
| 1570 | - <target_type>String</target_type> | |
| 1571 | - <target_format/> | |
| 1572 | - <target_length>-1</target_length> | |
| 1573 | - <target_precision>-1</target_precision> | |
| 1574 | - <target_decimal_symbol/> | |
| 1575 | - <target_grouping_symbol/> | |
| 1576 | - <target_currency_symbol/> | |
| 1577 | - <target_null_string/> | |
| 1578 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1579 | - </field> | |
| 1580 | - <field> | |
| 1581 | - <field_name>all_content</field_name> | |
| 1582 | - <key_value>60</key_value> | |
| 1583 | - <target_name>fcno60</target_name> | |
| 1584 | - <target_type>String</target_type> | |
| 1585 | - <target_format/> | |
| 1586 | - <target_length>-1</target_length> | |
| 1587 | - <target_precision>-1</target_precision> | |
| 1588 | - <target_decimal_symbol/> | |
| 1589 | - <target_grouping_symbol/> | |
| 1590 | - <target_currency_symbol/> | |
| 1591 | - <target_null_string/> | |
| 1592 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1593 | - </field> | |
| 1594 | - <field> | |
| 1595 | - <field_name>all_content</field_name> | |
| 1596 | - <key_value>61</key_value> | |
| 1597 | - <target_name>fcno61</target_name> | |
| 1598 | - <target_type>String</target_type> | |
| 1599 | - <target_format/> | |
| 1600 | - <target_length>-1</target_length> | |
| 1601 | - <target_precision>-1</target_precision> | |
| 1602 | - <target_decimal_symbol/> | |
| 1603 | - <target_grouping_symbol/> | |
| 1604 | - <target_currency_symbol/> | |
| 1605 | - <target_null_string/> | |
| 1606 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1607 | - </field> | |
| 1608 | - <field> | |
| 1609 | - <field_name>all_content</field_name> | |
| 1610 | - <key_value>62</key_value> | |
| 1611 | - <target_name>fcno62</target_name> | |
| 1612 | - <target_type>String</target_type> | |
| 1613 | - <target_format/> | |
| 1614 | - <target_length>-1</target_length> | |
| 1615 | - <target_precision>-1</target_precision> | |
| 1616 | - <target_decimal_symbol/> | |
| 1617 | - <target_grouping_symbol/> | |
| 1618 | - <target_currency_symbol/> | |
| 1619 | - <target_null_string/> | |
| 1620 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1621 | - </field> | |
| 1622 | - <field> | |
| 1623 | - <field_name>all_content</field_name> | |
| 1624 | - <key_value>63</key_value> | |
| 1625 | - <target_name>fcno63</target_name> | |
| 1626 | - <target_type>String</target_type> | |
| 1627 | - <target_format/> | |
| 1628 | - <target_length>-1</target_length> | |
| 1629 | - <target_precision>-1</target_precision> | |
| 1630 | - <target_decimal_symbol/> | |
| 1631 | - <target_grouping_symbol/> | |
| 1632 | - <target_currency_symbol/> | |
| 1633 | - <target_null_string/> | |
| 1634 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1635 | - </field> | |
| 1636 | - <field> | |
| 1637 | - <field_name>all_content</field_name> | |
| 1638 | - <key_value>64</key_value> | |
| 1639 | - <target_name>fcno64</target_name> | |
| 1640 | - <target_type>String</target_type> | |
| 1641 | - <target_format/> | |
| 1642 | - <target_length>-1</target_length> | |
| 1643 | - <target_precision>-1</target_precision> | |
| 1644 | - <target_decimal_symbol/> | |
| 1645 | - <target_grouping_symbol/> | |
| 1646 | - <target_currency_symbol/> | |
| 1647 | - <target_null_string/> | |
| 1648 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1649 | - </field> | |
| 1650 | - <field> | |
| 1651 | - <field_name>all_content</field_name> | |
| 1652 | - <key_value>65</key_value> | |
| 1653 | - <target_name>fcno65</target_name> | |
| 1654 | - <target_type>String</target_type> | |
| 1655 | - <target_format/> | |
| 1656 | - <target_length>-1</target_length> | |
| 1657 | - <target_precision>-1</target_precision> | |
| 1658 | - <target_decimal_symbol/> | |
| 1659 | - <target_grouping_symbol/> | |
| 1660 | - <target_currency_symbol/> | |
| 1661 | - <target_null_string/> | |
| 1662 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1663 | - </field> | |
| 1664 | - <field> | |
| 1665 | - <field_name>all_content</field_name> | |
| 1666 | - <key_value>66</key_value> | |
| 1667 | - <target_name>fcno66</target_name> | |
| 1668 | - <target_type>String</target_type> | |
| 1669 | - <target_format/> | |
| 1670 | - <target_length>-1</target_length> | |
| 1671 | - <target_precision>-1</target_precision> | |
| 1672 | - <target_decimal_symbol/> | |
| 1673 | - <target_grouping_symbol/> | |
| 1674 | - <target_currency_symbol/> | |
| 1675 | - <target_null_string/> | |
| 1676 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1677 | - </field> | |
| 1678 | - <field> | |
| 1679 | - <field_name>all_content</field_name> | |
| 1680 | - <key_value>67</key_value> | |
| 1681 | - <target_name>fcno67</target_name> | |
| 1682 | - <target_type>String</target_type> | |
| 1683 | - <target_format/> | |
| 1684 | - <target_length>-1</target_length> | |
| 1685 | - <target_precision>-1</target_precision> | |
| 1686 | - <target_decimal_symbol/> | |
| 1687 | - <target_grouping_symbol/> | |
| 1688 | - <target_currency_symbol/> | |
| 1689 | - <target_null_string/> | |
| 1690 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1691 | - </field> | |
| 1692 | - <field> | |
| 1693 | - <field_name>all_content</field_name> | |
| 1694 | - <key_value>68</key_value> | |
| 1695 | - <target_name>fcno68</target_name> | |
| 1696 | - <target_type>String</target_type> | |
| 1697 | - <target_format/> | |
| 1698 | - <target_length>-1</target_length> | |
| 1699 | - <target_precision>-1</target_precision> | |
| 1700 | - <target_decimal_symbol/> | |
| 1701 | - <target_grouping_symbol/> | |
| 1702 | - <target_currency_symbol/> | |
| 1703 | - <target_null_string/> | |
| 1704 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1705 | - </field> | |
| 1706 | - <field> | |
| 1707 | - <field_name>all_content</field_name> | |
| 1708 | - <key_value>69</key_value> | |
| 1709 | - <target_name>fcno69</target_name> | |
| 1710 | - <target_type>String</target_type> | |
| 1711 | - <target_format/> | |
| 1712 | - <target_length>-1</target_length> | |
| 1713 | - <target_precision>-1</target_precision> | |
| 1714 | - <target_decimal_symbol/> | |
| 1715 | - <target_grouping_symbol/> | |
| 1716 | - <target_currency_symbol/> | |
| 1717 | - <target_null_string/> | |
| 1718 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1719 | - </field> | |
| 1720 | - <field> | |
| 1721 | - <field_name>all_content</field_name> | |
| 1722 | - <key_value>70</key_value> | |
| 1723 | - <target_name>fcno70</target_name> | |
| 1724 | - <target_type>String</target_type> | |
| 1725 | - <target_format/> | |
| 1726 | - <target_length>-1</target_length> | |
| 1727 | - <target_precision>-1</target_precision> | |
| 1728 | - <target_decimal_symbol/> | |
| 1729 | - <target_grouping_symbol/> | |
| 1730 | - <target_currency_symbol/> | |
| 1731 | - <target_null_string/> | |
| 1732 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1733 | - </field> | |
| 1734 | - </fields> | |
| 1735 | - <cluster_schema/> | |
| 1736 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1737 | - <xloc>690</xloc> | |
| 1738 | - <yloc>272</yloc> | |
| 1739 | - <draw>Y</draw> | |
| 1740 | - </GUI> | |
| 1741 | - </step> | |
| 1742 | - | |
| 1743 | - <step> | |
| 1744 | - <name>去除字段</name> | |
| 1745 | - <type>SelectValues</type> | |
| 1746 | - <description/> | |
| 1747 | - <distribute>N</distribute> | |
| 1748 | - <custom_distribution/> | |
| 1749 | - <copies>1</copies> | |
| 1750 | - <partitioning> | |
| 1751 | - <method>none</method> | |
| 1752 | - <schema_name/> | |
| 1753 | - </partitioning> | |
| 1754 | - <fields> <field> <name>lp</name> | |
| 1755 | - <rename/> | |
| 1756 | - <length>-2</length> | |
| 1757 | - <precision>-2</precision> | |
| 1758 | - </field> <field> <name>fcno1</name> | |
| 1759 | - <rename/> | |
| 1760 | - <length>-2</length> | |
| 1761 | - <precision>-2</precision> | |
| 1762 | - </field> <field> <name>fcno2</name> | |
| 1763 | - <rename/> | |
| 1764 | - <length>-2</length> | |
| 1765 | - <precision>-2</precision> | |
| 1766 | - </field> <field> <name>fcno3</name> | |
| 1767 | - <rename/> | |
| 1768 | - <length>-2</length> | |
| 1769 | - <precision>-2</precision> | |
| 1770 | - </field> <field> <name>fcno4</name> | |
| 1771 | - <rename/> | |
| 1772 | - <length>-2</length> | |
| 1773 | - <precision>-2</precision> | |
| 1774 | - </field> <field> <name>fcno5</name> | |
| 1775 | - <rename/> | |
| 1776 | - <length>-2</length> | |
| 1777 | - <precision>-2</precision> | |
| 1778 | - </field> <field> <name>fcno6</name> | |
| 1779 | - <rename/> | |
| 1780 | - <length>-2</length> | |
| 1781 | - <precision>-2</precision> | |
| 1782 | - </field> <field> <name>fcno7</name> | |
| 1783 | - <rename/> | |
| 1784 | - <length>-2</length> | |
| 1785 | - <precision>-2</precision> | |
| 1786 | - </field> <field> <name>fcno8</name> | |
| 1787 | - <rename/> | |
| 1788 | - <length>-2</length> | |
| 1789 | - <precision>-2</precision> | |
| 1790 | - </field> <field> <name>fcno9</name> | |
| 1791 | - <rename/> | |
| 1792 | - <length>-2</length> | |
| 1793 | - <precision>-2</precision> | |
| 1794 | - </field> <field> <name>fcno10</name> | |
| 1795 | - <rename/> | |
| 1796 | - <length>-2</length> | |
| 1797 | - <precision>-2</precision> | |
| 1798 | - </field> <field> <name>fcno11</name> | |
| 1799 | - <rename/> | |
| 1800 | - <length>-2</length> | |
| 1801 | - <precision>-2</precision> | |
| 1802 | - </field> <field> <name>fcno12</name> | |
| 1803 | - <rename/> | |
| 1804 | - <length>-2</length> | |
| 1805 | - <precision>-2</precision> | |
| 1806 | - </field> <field> <name>fcno13</name> | |
| 1807 | - <rename/> | |
| 1808 | - <length>-2</length> | |
| 1809 | - <precision>-2</precision> | |
| 1810 | - </field> <field> <name>fcno14</name> | |
| 1811 | - <rename/> | |
| 1812 | - <length>-2</length> | |
| 1813 | - <precision>-2</precision> | |
| 1814 | - </field> <field> <name>fcno15</name> | |
| 1815 | - <rename/> | |
| 1816 | - <length>-2</length> | |
| 1817 | - <precision>-2</precision> | |
| 1818 | - </field> <field> <name>fcno16</name> | |
| 1819 | - <rename/> | |
| 1820 | - <length>-2</length> | |
| 1821 | - <precision>-2</precision> | |
| 1822 | - </field> <field> <name>fcno17</name> | |
| 1823 | - <rename/> | |
| 1824 | - <length>-2</length> | |
| 1825 | - <precision>-2</precision> | |
| 1826 | - </field> <field> <name>fcno18</name> | |
| 1827 | - <rename/> | |
| 1828 | - <length>-2</length> | |
| 1829 | - <precision>-2</precision> | |
| 1830 | - </field> <field> <name>fcno19</name> | |
| 1831 | - <rename/> | |
| 1832 | - <length>-2</length> | |
| 1833 | - <precision>-2</precision> | |
| 1834 | - </field> <field> <name>fcno20</name> | |
| 1835 | - <rename/> | |
| 1836 | - <length>-2</length> | |
| 1837 | - <precision>-2</precision> | |
| 1838 | - </field> <field> <name>fcno21</name> | |
| 1839 | - <rename/> | |
| 1840 | - <length>-2</length> | |
| 1841 | - <precision>-2</precision> | |
| 1842 | - </field> <field> <name>fcno22</name> | |
| 1843 | - <rename/> | |
| 1844 | - <length>-2</length> | |
| 1845 | - <precision>-2</precision> | |
| 1846 | - </field> <field> <name>fcno23</name> | |
| 1847 | - <rename/> | |
| 1848 | - <length>-2</length> | |
| 1849 | - <precision>-2</precision> | |
| 1850 | - </field> <field> <name>fcno24</name> | |
| 1851 | - <rename/> | |
| 1852 | - <length>-2</length> | |
| 1853 | - <precision>-2</precision> | |
| 1854 | - </field> <field> <name>fcno25</name> | |
| 1855 | - <rename/> | |
| 1856 | - <length>-2</length> | |
| 1857 | - <precision>-2</precision> | |
| 1858 | - </field> <field> <name>fcno26</name> | |
| 1859 | - <rename/> | |
| 1860 | - <length>-2</length> | |
| 1861 | - <precision>-2</precision> | |
| 1862 | - </field> <field> <name>fcno27</name> | |
| 1863 | - <rename/> | |
| 1864 | - <length>-2</length> | |
| 1865 | - <precision>-2</precision> | |
| 1866 | - </field> <field> <name>fcno28</name> | |
| 1867 | - <rename/> | |
| 1868 | - <length>-2</length> | |
| 1869 | - <precision>-2</precision> | |
| 1870 | - </field> <field> <name>fcno29</name> | |
| 1871 | - <rename/> | |
| 1872 | - <length>-2</length> | |
| 1873 | - <precision>-2</precision> | |
| 1874 | - </field> <field> <name>fcno30</name> | |
| 1875 | - <rename/> | |
| 1876 | - <length>-2</length> | |
| 1877 | - <precision>-2</precision> | |
| 1878 | - </field> <field> <name>fcno31</name> | |
| 1879 | - <rename/> | |
| 1880 | - <length>-2</length> | |
| 1881 | - <precision>-2</precision> | |
| 1882 | - </field> <field> <name>fcno32</name> | |
| 1883 | - <rename/> | |
| 1884 | - <length>-2</length> | |
| 1885 | - <precision>-2</precision> | |
| 1886 | - </field> <field> <name>fcno33</name> | |
| 1887 | - <rename/> | |
| 1888 | - <length>-2</length> | |
| 1889 | - <precision>-2</precision> | |
| 1890 | - </field> <field> <name>fcno34</name> | |
| 1891 | - <rename/> | |
| 1892 | - <length>-2</length> | |
| 1893 | - <precision>-2</precision> | |
| 1894 | - </field> <field> <name>fcno35</name> | |
| 1895 | - <rename/> | |
| 1896 | - <length>-2</length> | |
| 1897 | - <precision>-2</precision> | |
| 1898 | - </field> <field> <name>fcno36</name> | |
| 1899 | - <rename/> | |
| 1900 | - <length>-2</length> | |
| 1901 | - <precision>-2</precision> | |
| 1902 | - </field> <field> <name>fcno37</name> | |
| 1903 | - <rename/> | |
| 1904 | - <length>-2</length> | |
| 1905 | - <precision>-2</precision> | |
| 1906 | - </field> <field> <name>fcno38</name> | |
| 1907 | - <rename/> | |
| 1908 | - <length>-2</length> | |
| 1909 | - <precision>-2</precision> | |
| 1910 | - </field> <field> <name>fcno39</name> | |
| 1911 | - <rename/> | |
| 1912 | - <length>-2</length> | |
| 1913 | - <precision>-2</precision> | |
| 1914 | - </field> <field> <name>fcno40</name> | |
| 1915 | - <rename/> | |
| 1916 | - <length>-2</length> | |
| 1917 | - <precision>-2</precision> | |
| 1918 | - </field> <field> <name>fcno41</name> | |
| 1919 | - <rename/> | |
| 1920 | - <length>-2</length> | |
| 1921 | - <precision>-2</precision> | |
| 1922 | - </field> <field> <name>fcno42</name> | |
| 1923 | - <rename/> | |
| 1924 | - <length>-2</length> | |
| 1925 | - <precision>-2</precision> | |
| 1926 | - </field> <field> <name>fcno43</name> | |
| 1927 | - <rename/> | |
| 1928 | - <length>-2</length> | |
| 1929 | - <precision>-2</precision> | |
| 1930 | - </field> <field> <name>fcno44</name> | |
| 1931 | - <rename/> | |
| 1932 | - <length>-2</length> | |
| 1933 | - <precision>-2</precision> | |
| 1934 | - </field> <field> <name>fcno45</name> | |
| 1935 | - <rename/> | |
| 1936 | - <length>-2</length> | |
| 1937 | - <precision>-2</precision> | |
| 1938 | - </field> <field> <name>fcno46</name> | |
| 1939 | - <rename/> | |
| 1940 | - <length>-2</length> | |
| 1941 | - <precision>-2</precision> | |
| 1942 | - </field> <field> <name>fcno47</name> | |
| 1943 | - <rename/> | |
| 1944 | - <length>-2</length> | |
| 1945 | - <precision>-2</precision> | |
| 1946 | - </field> <field> <name>fcno48</name> | |
| 1947 | - <rename/> | |
| 1948 | - <length>-2</length> | |
| 1949 | - <precision>-2</precision> | |
| 1950 | - </field> <field> <name>fcno49</name> | |
| 1951 | - <rename/> | |
| 1952 | - <length>-2</length> | |
| 1953 | - <precision>-2</precision> | |
| 1954 | - </field> <field> <name>fcno50</name> | |
| 1955 | - <rename/> | |
| 1956 | - <length>-2</length> | |
| 1957 | - <precision>-2</precision> | |
| 1958 | - </field> <field> <name>fcno51</name> | |
| 1959 | - <rename/> | |
| 1960 | - <length>-2</length> | |
| 1961 | - <precision>-2</precision> | |
| 1962 | - </field> <field> <name>fcno52</name> | |
| 1963 | - <rename/> | |
| 1964 | - <length>-2</length> | |
| 1965 | - <precision>-2</precision> | |
| 1966 | - </field> <field> <name>fcno53</name> | |
| 1967 | - <rename/> | |
| 1968 | - <length>-2</length> | |
| 1969 | - <precision>-2</precision> | |
| 1970 | - </field> <field> <name>fcno54</name> | |
| 1971 | - <rename/> | |
| 1972 | - <length>-2</length> | |
| 1973 | - <precision>-2</precision> | |
| 1974 | - </field> <field> <name>fcno55</name> | |
| 1975 | - <rename/> | |
| 1976 | - <length>-2</length> | |
| 1977 | - <precision>-2</precision> | |
| 1978 | - </field> <field> <name>fcno56</name> | |
| 1979 | - <rename/> | |
| 1980 | - <length>-2</length> | |
| 1981 | - <precision>-2</precision> | |
| 1982 | - </field> <field> <name>fcno57</name> | |
| 1983 | - <rename/> | |
| 1984 | - <length>-2</length> | |
| 1985 | - <precision>-2</precision> | |
| 1986 | - </field> <field> <name>fcno58</name> | |
| 1987 | - <rename/> | |
| 1988 | - <length>-2</length> | |
| 1989 | - <precision>-2</precision> | |
| 1990 | - </field> <field> <name>fcno59</name> | |
| 1991 | - <rename/> | |
| 1992 | - <length>-2</length> | |
| 1993 | - <precision>-2</precision> | |
| 1994 | - </field> <field> <name>fcno60</name> | |
| 1995 | - <rename/> | |
| 1996 | - <length>-2</length> | |
| 1997 | - <precision>-2</precision> | |
| 1998 | - </field> <field> <name>fcno61</name> | |
| 1999 | - <rename/> | |
| 2000 | - <length>-2</length> | |
| 2001 | - <precision>-2</precision> | |
| 2002 | - </field> <field> <name>fcno62</name> | |
| 2003 | - <rename/> | |
| 2004 | - <length>-2</length> | |
| 2005 | - <precision>-2</precision> | |
| 2006 | - </field> <field> <name>fcno63</name> | |
| 2007 | - <rename/> | |
| 2008 | - <length>-2</length> | |
| 2009 | - <precision>-2</precision> | |
| 2010 | - </field> <field> <name>fcno64</name> | |
| 2011 | - <rename/> | |
| 2012 | - <length>-2</length> | |
| 2013 | - <precision>-2</precision> | |
| 2014 | - </field> <field> <name>fcno65</name> | |
| 2015 | - <rename/> | |
| 2016 | - <length>-2</length> | |
| 2017 | - <precision>-2</precision> | |
| 2018 | - </field> <field> <name>fcno66</name> | |
| 2019 | - <rename/> | |
| 2020 | - <length>-2</length> | |
| 2021 | - <precision>-2</precision> | |
| 2022 | - </field> <field> <name>fcno67</name> | |
| 2023 | - <rename/> | |
| 2024 | - <length>-2</length> | |
| 2025 | - <precision>-2</precision> | |
| 2026 | - </field> <field> <name>fcno68</name> | |
| 2027 | - <rename/> | |
| 2028 | - <length>-2</length> | |
| 2029 | - <precision>-2</precision> | |
| 2030 | - </field> <field> <name>fcno69</name> | |
| 2031 | - <rename/> | |
| 2032 | - <length>-2</length> | |
| 2033 | - <precision>-2</precision> | |
| 2034 | - </field> <field> <name>fcno70</name> | |
| 2035 | - <rename/> | |
| 2036 | - <length>-2</length> | |
| 2037 | - <precision>-2</precision> | |
| 2038 | - </field> <select_unspecified>N</select_unspecified> | |
| 2039 | - </fields> <cluster_schema/> | |
| 2040 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2041 | - <xloc>691</xloc> | |
| 2042 | - <yloc>361</yloc> | |
| 2043 | - <draw>Y</draw> | |
| 2044 | - </GUI> | |
| 2045 | - </step> | |
| 2046 | - | |
| 2047 | - <step> | |
| 2048 | - <name>字段选择</name> | |
| 2049 | - <type>SelectValues</type> | |
| 2050 | - <description/> | |
| 2051 | - <distribute>Y</distribute> | |
| 2052 | - <custom_distribution/> | |
| 2053 | - <copies>1</copies> | |
| 2054 | - <partitioning> | |
| 2055 | - <method>none</method> | |
| 2056 | - <schema_name/> | |
| 2057 | - </partitioning> | |
| 2058 | - <fields> <field> <name>id</name> | |
| 2059 | - <rename/> | |
| 2060 | - <length>-2</length> | |
| 2061 | - <precision>-2</precision> | |
| 2062 | - </field> <field> <name>lp</name> | |
| 2063 | - <rename/> | |
| 2064 | - <length>-2</length> | |
| 2065 | - <precision>-2</precision> | |
| 2066 | - </field> <field> <name>fcsj</name> | |
| 2067 | - <rename/> | |
| 2068 | - <length>-2</length> | |
| 2069 | - <precision>-2</precision> | |
| 2070 | - </field> <field> <name>fcno</name> | |
| 2071 | - <rename/> | |
| 2072 | - <length>-2</length> | |
| 2073 | - <precision>-2</precision> | |
| 2074 | - </field> <field> <name>bcs</name> | |
| 2075 | - <rename/> | |
| 2076 | - <length>-2</length> | |
| 2077 | - <precision>-2</precision> | |
| 2078 | - </field> <field> <name>bc_type</name> | |
| 2079 | - <rename/> | |
| 2080 | - <length>-2</length> | |
| 2081 | - <precision>-2</precision> | |
| 2082 | - </field> <field> <name>qdzName</name> | |
| 2083 | - <rename/> | |
| 2084 | - <length>-2</length> | |
| 2085 | - <precision>-2</precision> | |
| 2086 | - </field> <field> <name>zdzName</name> | |
| 2087 | - <rename/> | |
| 2088 | - <length>-2</length> | |
| 2089 | - <precision>-2</precision> | |
| 2090 | - </field> <field> <name>xl_dir</name> | |
| 2091 | - <rename/> | |
| 2092 | - <length>-2</length> | |
| 2093 | - <precision>-2</precision> | |
| 2094 | - </field> <field> <name>isfb</name> | |
| 2095 | - <rename/> | |
| 2096 | - <length>-2</length> | |
| 2097 | - <precision>-2</precision> | |
| 2098 | - </field> <field> <name>jhlc</name> | |
| 2099 | - <rename/> | |
| 2100 | - <length>-2</length> | |
| 2101 | - <precision>-2</precision> | |
| 2102 | - </field> <select_unspecified>N</select_unspecified> | |
| 2103 | - </fields> <cluster_schema/> | |
| 2104 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2105 | - <xloc>690</xloc> | |
| 2106 | - <yloc>188</yloc> | |
| 2107 | - <draw>Y</draw> | |
| 2108 | - </GUI> | |
| 2109 | - </step> | |
| 2110 | - | |
| 2111 | - <step> | |
| 2112 | - <name>字段选择 2</name> | |
| 2113 | - <type>SelectValues</type> | |
| 2114 | - <description/> | |
| 2115 | - <distribute>Y</distribute> | |
| 2116 | - <custom_distribution/> | |
| 2117 | - <copies>1</copies> | |
| 2118 | - <partitioning> | |
| 2119 | - <method>none</method> | |
| 2120 | - <schema_name/> | |
| 2121 | - </partitioning> | |
| 2122 | - <fields> <field> <name>id</name> | |
| 2123 | - <rename/> | |
| 2124 | - <length>-2</length> | |
| 2125 | - <precision>-2</precision> | |
| 2126 | - </field> <field> <name>lp</name> | |
| 2127 | - <rename/> | |
| 2128 | - <length>-2</length> | |
| 2129 | - <precision>-2</precision> | |
| 2130 | - </field> <field> <name>fcsj</name> | |
| 2131 | - <rename/> | |
| 2132 | - <length>-2</length> | |
| 2133 | - <precision>-2</precision> | |
| 2134 | - </field> <field> <name>fcno</name> | |
| 2135 | - <rename/> | |
| 2136 | - <length>-2</length> | |
| 2137 | - <precision>-2</precision> | |
| 2138 | - </field> <field> <name>bcs</name> | |
| 2139 | - <rename/> | |
| 2140 | - <length>-2</length> | |
| 2141 | - <precision>-2</precision> | |
| 2142 | - </field> <field> <name>bc_type</name> | |
| 2143 | - <rename/> | |
| 2144 | - <length>-2</length> | |
| 2145 | - <precision>-2</precision> | |
| 2146 | - </field> <field> <name>qdzName</name> | |
| 2147 | - <rename/> | |
| 2148 | - <length>-2</length> | |
| 2149 | - <precision>-2</precision> | |
| 2150 | - </field> <field> <name>zdzName</name> | |
| 2151 | - <rename/> | |
| 2152 | - <length>-2</length> | |
| 2153 | - <precision>-2</precision> | |
| 2154 | - </field> <field> <name>xl_dir</name> | |
| 2155 | - <rename/> | |
| 2156 | - <length>-2</length> | |
| 2157 | - <precision>-2</precision> | |
| 2158 | - </field> <field> <name>isfb</name> | |
| 2159 | - <rename/> | |
| 2160 | - <length>-2</length> | |
| 2161 | - <precision>-2</precision> | |
| 2162 | - </field> <field> <name>jhlc</name> | |
| 2163 | - <rename/> | |
| 2164 | - <length>-2</length> | |
| 2165 | - <precision>-2</precision> | |
| 2166 | - </field> <select_unspecified>N</select_unspecified> | |
| 2167 | - </fields> <cluster_schema/> | |
| 2168 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2169 | - <xloc>402</xloc> | |
| 2170 | - <yloc>189</yloc> | |
| 2171 | - <draw>Y</draw> | |
| 2172 | - </GUI> | |
| 2173 | - </step> | |
| 2174 | - | |
| 2175 | - <step> | |
| 2176 | - <name>排序记录</name> | |
| 2177 | - <type>SortRows</type> | |
| 2178 | - <description/> | |
| 2179 | - <distribute>Y</distribute> | |
| 2180 | - <custom_distribution/> | |
| 2181 | - <copies>1</copies> | |
| 2182 | - <partitioning> | |
| 2183 | - <method>none</method> | |
| 2184 | - <schema_name/> | |
| 2185 | - </partitioning> | |
| 2186 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2187 | - <prefix>out</prefix> | |
| 2188 | - <sort_size>1000000</sort_size> | |
| 2189 | - <free_memory/> | |
| 2190 | - <compress>N</compress> | |
| 2191 | - <compress_variable/> | |
| 2192 | - <unique_rows>N</unique_rows> | |
| 2193 | - <fields> | |
| 2194 | - <field> | |
| 2195 | - <name>bcs</name> | |
| 2196 | - <ascending>Y</ascending> | |
| 2197 | - <case_sensitive>N</case_sensitive> | |
| 2198 | - <presorted>N</presorted> | |
| 2199 | - </field> | |
| 2200 | - </fields> | |
| 2201 | - <cluster_schema/> | |
| 2202 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2203 | - <xloc>549</xloc> | |
| 2204 | - <yloc>191</yloc> | |
| 2205 | - <draw>Y</draw> | |
| 2206 | - </GUI> | |
| 2207 | - </step> | |
| 2208 | - | |
| 2209 | - <step> | |
| 2210 | - <name>查找终点站名称</name> | |
| 2211 | - <type>DBLookup</type> | |
| 2212 | - <description/> | |
| 2213 | - <distribute>Y</distribute> | |
| 2214 | - <custom_distribution/> | |
| 2215 | - <copies>1</copies> | |
| 2216 | - <partitioning> | |
| 2217 | - <method>none</method> | |
| 2218 | - <schema_name/> | |
| 2219 | - </partitioning> | |
| 2220 | - <connection>bus_control_variable</connection> | |
| 2221 | - <cache>Y</cache> | |
| 2222 | - <cache_load_all>Y</cache_load_all> | |
| 2223 | - <cache_size>0</cache_size> | |
| 2224 | - <lookup> | |
| 2225 | - <schema/> | |
| 2226 | - <table>bsth_c_stationroute</table> | |
| 2227 | - <orderby/> | |
| 2228 | - <fail_on_multiple>N</fail_on_multiple> | |
| 2229 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 2230 | - <key> | |
| 2231 | - <name>xl</name> | |
| 2232 | - <field>line</field> | |
| 2233 | - <condition>=</condition> | |
| 2234 | - <name2/> | |
| 2235 | - </key> | |
| 2236 | - <key> | |
| 2237 | - <name>xl_dir</name> | |
| 2238 | - <field>directions</field> | |
| 2239 | - <condition>=</condition> | |
| 2240 | - <name2/> | |
| 2241 | - </key> | |
| 2242 | - <key> | |
| 2243 | - <name>endZdType</name> | |
| 2244 | - <field>station_mark</field> | |
| 2245 | - <condition>=</condition> | |
| 2246 | - <name2/> | |
| 2247 | - </key> | |
| 2248 | - <value> | |
| 2249 | - <name>station_name</name> | |
| 2250 | - <rename>zdzName</rename> | |
| 2251 | - <default/> | |
| 2252 | - <type>String</type> | |
| 2253 | - </value> | |
| 2254 | - </lookup> | |
| 2255 | - <cluster_schema/> | |
| 2256 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2257 | - <xloc>688</xloc> | |
| 2258 | - <yloc>86</yloc> | |
| 2259 | - <draw>Y</draw> | |
| 2260 | - </GUI> | |
| 2261 | - </step> | |
| 2262 | - | |
| 2263 | - <step> | |
| 2264 | - <name>查找起点站名称</name> | |
| 2265 | - <type>DBLookup</type> | |
| 2266 | - <description/> | |
| 2267 | - <distribute>Y</distribute> | |
| 2268 | - <custom_distribution/> | |
| 2269 | - <copies>1</copies> | |
| 2270 | - <partitioning> | |
| 2271 | - <method>none</method> | |
| 2272 | - <schema_name/> | |
| 2273 | - </partitioning> | |
| 2274 | - <connection>bus_control_variable</connection> | |
| 2275 | - <cache>Y</cache> | |
| 2276 | - <cache_load_all>Y</cache_load_all> | |
| 2277 | - <cache_size>0</cache_size> | |
| 2278 | - <lookup> | |
| 2279 | - <schema/> | |
| 2280 | - <table>bsth_c_stationroute</table> | |
| 2281 | - <orderby/> | |
| 2282 | - <fail_on_multiple>N</fail_on_multiple> | |
| 2283 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 2284 | - <key> | |
| 2285 | - <name>xl</name> | |
| 2286 | - <field>line</field> | |
| 2287 | - <condition>=</condition> | |
| 2288 | - <name2/> | |
| 2289 | - </key> | |
| 2290 | - <key> | |
| 2291 | - <name>xl_dir</name> | |
| 2292 | - <field>directions</field> | |
| 2293 | - <condition>=</condition> | |
| 2294 | - <name2/> | |
| 2295 | - </key> | |
| 2296 | - <key> | |
| 2297 | - <name>startZdType</name> | |
| 2298 | - <field>station_mark</field> | |
| 2299 | - <condition>=</condition> | |
| 2300 | - <name2/> | |
| 2301 | - </key> | |
| 2302 | - <value> | |
| 2303 | - <name>station_name</name> | |
| 2304 | - <rename>qdzName</rename> | |
| 2305 | - <default/> | |
| 2306 | - <type>String</type> | |
| 2307 | - </value> | |
| 2308 | - </lookup> | |
| 2309 | - <cluster_schema/> | |
| 2310 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2311 | - <xloc>553</xloc> | |
| 2312 | - <yloc>86</yloc> | |
| 2313 | - <draw>Y</draw> | |
| 2314 | - </GUI> | |
| 2315 | - </step> | |
| 2316 | - | |
| 2317 | - <step> | |
| 2318 | - <name>正常班次站点查询用数据</name> | |
| 2319 | - <type>ScriptValueMod</type> | |
| 2320 | - <description/> | |
| 2321 | - <distribute>Y</distribute> | |
| 2322 | - <custom_distribution/> | |
| 2323 | - <copies>1</copies> | |
| 2324 | - <partitioning> | |
| 2325 | - <method>none</method> | |
| 2326 | - <schema_name/> | |
| 2327 | - </partitioning> | |
| 2328 | - <compatible>N</compatible> | |
| 2329 | - <optimizationLevel>9</optimizationLevel> | |
| 2330 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2331 | - <jsScript_name>Script 1</jsScript_name> | |
| 2332 | - <jsScript_script>//Script here

var startZdType = 'B'; // 起点站站点类型标识别
var endZdType = 'E'; // 终点站站点类型标识</jsScript_script> | |
| 2333 | - </jsScript> </jsScripts> <fields> <field> <name>startZdType</name> | |
| 2334 | - <rename>startZdType</rename> | |
| 2335 | - <type>String</type> | |
| 2336 | - <length>-1</length> | |
| 2337 | - <precision>-1</precision> | |
| 2338 | - <replace>N</replace> | |
| 2339 | - </field> <field> <name>endZdType</name> | |
| 2340 | - <rename>endZdType</rename> | |
| 2341 | - <type>String</type> | |
| 2342 | - <length>-1</length> | |
| 2343 | - <precision>-1</precision> | |
| 2344 | - <replace>N</replace> | |
| 2345 | - </field> </fields> <cluster_schema/> | |
| 2346 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2347 | - <xloc>391</xloc> | |
| 2348 | - <yloc>87</yloc> | |
| 2349 | - <draw>Y</draw> | |
| 2350 | - </GUI> | |
| 2351 | - </step> | |
| 2352 | - | |
| 2353 | - <step> | |
| 2354 | - <name>获取变量</name> | |
| 2355 | - <type>GetVariable</type> | |
| 2356 | - <description/> | |
| 2357 | - <distribute>Y</distribute> | |
| 2358 | - <custom_distribution/> | |
| 2359 | - <copies>1</copies> | |
| 2360 | - <partitioning> | |
| 2361 | - <method>none</method> | |
| 2362 | - <schema_name/> | |
| 2363 | - </partitioning> | |
| 2364 | - <fields> | |
| 2365 | - <field> | |
| 2366 | - <name>xlid_</name> | |
| 2367 | - <variable>${xlid}</variable> | |
| 2368 | - <type>Integer</type> | |
| 2369 | - <format/> | |
| 2370 | - <currency/> | |
| 2371 | - <decimal/> | |
| 2372 | - <group/> | |
| 2373 | - <length>-1</length> | |
| 2374 | - <precision>-1</precision> | |
| 2375 | - <trim_type>none</trim_type> | |
| 2376 | - </field> | |
| 2377 | - <field> | |
| 2378 | - <name>ttid_</name> | |
| 2379 | - <variable>${ttid}</variable> | |
| 2380 | - <type>Number</type> | |
| 2381 | - <format/> | |
| 2382 | - <currency/> | |
| 2383 | - <decimal/> | |
| 2384 | - <group/> | |
| 2385 | - <length>-1</length> | |
| 2386 | - <precision>-1</precision> | |
| 2387 | - <trim_type>none</trim_type> | |
| 2388 | - </field> | |
| 2389 | - </fields> | |
| 2390 | - <cluster_schema/> | |
| 2391 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2392 | - <xloc>45</xloc> | |
| 2393 | - <yloc>189</yloc> | |
| 2394 | - <draw>Y</draw> | |
| 2395 | - </GUI> | |
| 2396 | - </step> | |
| 2397 | - | |
| 2398 | - <step> | |
| 2399 | - <name>表输入</name> | |
| 2400 | - <type>TableInput</type> | |
| 2401 | - <description/> | |
| 2402 | - <distribute>Y</distribute> | |
| 2403 | - <custom_distribution/> | |
| 2404 | - <copies>1</copies> | |
| 2405 | - <partitioning> | |
| 2406 | - <method>none</method> | |
| 2407 | - <schema_name/> | |
| 2408 | - </partitioning> | |
| 2409 | - <connection>bus_control_variable</connection> | |
| 2410 | - <sql>select 
t.id as id
, g.lp_name as lp
, g.xl as xl
, qdz
, zdz
, tcc
, fcsj
, jhlc
, bc_type 
, bcs
, fcno
, xl_dir
, isfb
from bsth_c_s_ttinfo_detail t left join 
bsth_c_s_gbi g on t.lp = g.id 
where 
g.xl = ? and
t.ttinfo = ? 
order by t.bcs asc</sql> | |
| 2411 | - <limit>0</limit> | |
| 2412 | - <lookup>获取变量</lookup> | |
| 2413 | - <execute_each_row>N</execute_each_row> | |
| 2414 | - <variables_active>Y</variables_active> | |
| 2415 | - <lazy_conversion_active>N</lazy_conversion_active> | |
| 2416 | - <cluster_schema/> | |
| 2417 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2418 | - <xloc>130</xloc> | |
| 2419 | - <yloc>85</yloc> | |
| 2420 | - <draw>Y</draw> | |
| 2421 | - </GUI> | |
| 2422 | - </step> | |
| 2423 | - | |
| 2424 | - <step> | |
| 2425 | - <name>计算发车站名</name> | |
| 2426 | - <type>ScriptValueMod</type> | |
| 2427 | - <description/> | |
| 2428 | - <distribute>Y</distribute> | |
| 2429 | - <custom_distribution/> | |
| 2430 | - <copies>1</copies> | |
| 2431 | - <partitioning> | |
| 2432 | - <method>none</method> | |
| 2433 | - <schema_name/> | |
| 2434 | - </partitioning> | |
| 2435 | - <compatible>N</compatible> | |
| 2436 | - <optimizationLevel>9</optimizationLevel> | |
| 2437 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2438 | - <jsScript_name>Script 1</jsScript_name> | |
| 2439 | - <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdzName;
}</jsScript_script> | |
| 2440 | - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 2441 | - <rename>fczdName</rename> | |
| 2442 | - <type>String</type> | |
| 2443 | - <length>-1</length> | |
| 2444 | - <precision>-1</precision> | |
| 2445 | - <replace>N</replace> | |
| 2446 | - </field> </fields> <cluster_schema/> | |
| 2447 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2448 | - <xloc>550</xloc> | |
| 2449 | - <yloc>276</yloc> | |
| 2450 | - <draw>Y</draw> | |
| 2451 | - </GUI> | |
| 2452 | - </step> | |
| 2453 | - | |
| 2454 | - <step> | |
| 2455 | - <name>过滤记录</name> | |
| 2456 | - <type>FilterRows</type> | |
| 2457 | - <description/> | |
| 2458 | - <distribute>Y</distribute> | |
| 2459 | - <custom_distribution/> | |
| 2460 | - <copies>1</copies> | |
| 2461 | - <partitioning> | |
| 2462 | - <method>none</method> | |
| 2463 | - <schema_name/> | |
| 2464 | - </partitioning> | |
| 2465 | -<send_true_to>正常班次站点查询用数据</send_true_to> | |
| 2466 | -<send_false_to>进场出场班次查询用的数据</send_false_to> | |
| 2467 | - <compare> | |
| 2468 | -<condition> | |
| 2469 | - <negated>N</negated> | |
| 2470 | - <leftvalue>bc_type</leftvalue> | |
| 2471 | - <function>=</function> | |
| 2472 | - <rightvalue/> | |
| 2473 | - <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 2474 | - </compare> | |
| 2475 | - <cluster_schema/> | |
| 2476 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2477 | - <xloc>248</xloc> | |
| 2478 | - <yloc>87</yloc> | |
| 2479 | - <draw>Y</draw> | |
| 2480 | - </GUI> | |
| 2481 | - </step> | |
| 2482 | - | |
| 2483 | - <step> | |
| 2484 | - <name>进场出场班次查询用的数据</name> | |
| 2485 | - <type>ScriptValueMod</type> | |
| 2486 | - <description/> | |
| 2487 | - <distribute>Y</distribute> | |
| 2488 | - <custom_distribution/> | |
| 2489 | - <copies>1</copies> | |
| 2490 | - <partitioning> | |
| 2491 | - <method>none</method> | |
| 2492 | - <schema_name/> | |
| 2493 | - </partitioning> | |
| 2494 | - <compatible>N</compatible> | |
| 2495 | - <optimizationLevel>9</optimizationLevel> | |
| 2496 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2497 | - <jsScript_name>Script 1</jsScript_name> | |
| 2498 | - <jsScript_script>//Script here

var qdzName = null; // 起点站名字
var zdzName = null; // 终点站名字</jsScript_script> | |
| 2499 | - </jsScript> </jsScripts> <fields> <field> <name>qdzName</name> | |
| 2500 | - <rename>qdzName</rename> | |
| 2501 | - <type>String</type> | |
| 2502 | - <length>-1</length> | |
| 2503 | - <precision>-1</precision> | |
| 2504 | - <replace>N</replace> | |
| 2505 | - </field> <field> <name>zdzName</name> | |
| 2506 | - <rename>zdzName</rename> | |
| 2507 | - <type>String</type> | |
| 2508 | - <length>-1</length> | |
| 2509 | - <precision>-1</precision> | |
| 2510 | - <replace>N</replace> | |
| 2511 | - </field> </fields> <cluster_schema/> | |
| 2512 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2513 | - <xloc>250</xloc> | |
| 2514 | - <yloc>188</yloc> | |
| 2515 | - <draw>Y</draw> | |
| 2516 | - </GUI> | |
| 2517 | - </step> | |
| 2518 | - | |
| 2519 | - <step> | |
| 2520 | - <name>文本文件输出</name> | |
| 2521 | - <type>TextFileOutput</type> | |
| 2522 | - <description/> | |
| 2523 | - <distribute>Y</distribute> | |
| 2524 | - <custom_distribution/> | |
| 2525 | - <copies>1</copies> | |
| 2526 | - <partitioning> | |
| 2527 | - <method>none</method> | |
| 2528 | - <schema_name/> | |
| 2529 | - </partitioning> | |
| 2530 | - <separator>;</separator> | |
| 2531 | - <enclosure>"</enclosure> | |
| 2532 | - <enclosure_forced>N</enclosure_forced> | |
| 2533 | - <enclosure_fix_disabled>N</enclosure_fix_disabled> | |
| 2534 | - <header>Y</header> | |
| 2535 | - <footer>N</footer> | |
| 2536 | - <format>DOS</format> | |
| 2537 | - <compression>None</compression> | |
| 2538 | - <encoding/> | |
| 2539 | - <endedLine/> | |
| 2540 | - <fileNameInField>N</fileNameInField> | |
| 2541 | - <fileNameField/> | |
| 2542 | - <create_parent_folder>Y</create_parent_folder> | |
| 2543 | - <file> | |
| 2544 | - <name>${tempfilepath}</name> | |
| 2545 | - <is_command>N</is_command> | |
| 2546 | - <servlet_output>N</servlet_output> | |
| 2547 | - <do_not_open_new_file_init>N</do_not_open_new_file_init> | |
| 2548 | - <extention>txt</extention> | |
| 2549 | - <append>N</append> | |
| 2550 | - <split>N</split> | |
| 2551 | - <haspartno>N</haspartno> | |
| 2552 | - <add_date>N</add_date> | |
| 2553 | - <add_time>N</add_time> | |
| 2554 | - <SpecifyFormat>N</SpecifyFormat> | |
| 2555 | - <date_time_format/> | |
| 2556 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 2557 | - <pad>N</pad> | |
| 2558 | - <fast_dump>N</fast_dump> | |
| 2559 | - <splitevery>0</splitevery> | |
| 2560 | - </file> | |
| 2561 | - <fields> | |
| 2562 | - <field> | |
| 2563 | - <name>lp</name> | |
| 2564 | - <type>String</type> | |
| 2565 | - <format/> | |
| 2566 | - <currency/> | |
| 2567 | - <decimal/> | |
| 2568 | - <group/> | |
| 2569 | - <nullif/> | |
| 2570 | - <trim_type>none</trim_type> | |
| 2571 | - <length>255</length> | |
| 2572 | - <precision>-1</precision> | |
| 2573 | - </field> | |
| 2574 | - <field> | |
| 2575 | - <name>fcno1</name> | |
| 2576 | - <type>String</type> | |
| 2577 | - <format/> | |
| 2578 | - <currency/> | |
| 2579 | - <decimal/> | |
| 2580 | - <group/> | |
| 2581 | - <nullif/> | |
| 2582 | - <trim_type>none</trim_type> | |
| 2583 | - <length>-1</length> | |
| 2584 | - <precision>-1</precision> | |
| 2585 | - </field> | |
| 2586 | - <field> | |
| 2587 | - <name>fcno2</name> | |
| 2588 | - <type>String</type> | |
| 2589 | - <format/> | |
| 2590 | - <currency/> | |
| 2591 | - <decimal/> | |
| 2592 | - <group/> | |
| 2593 | - <nullif/> | |
| 2594 | - <trim_type>none</trim_type> | |
| 2595 | - <length>-1</length> | |
| 2596 | - <precision>-1</precision> | |
| 2597 | - </field> | |
| 2598 | - <field> | |
| 2599 | - <name>fcno3</name> | |
| 2600 | - <type>String</type> | |
| 2601 | - <format/> | |
| 2602 | - <currency/> | |
| 2603 | - <decimal/> | |
| 2604 | - <group/> | |
| 2605 | - <nullif/> | |
| 2606 | - <trim_type>none</trim_type> | |
| 2607 | - <length>-1</length> | |
| 2608 | - <precision>-1</precision> | |
| 2609 | - </field> | |
| 2610 | - <field> | |
| 2611 | - <name>fcno4</name> | |
| 2612 | - <type>String</type> | |
| 2613 | - <format/> | |
| 2614 | - <currency/> | |
| 2615 | - <decimal/> | |
| 2616 | - <group/> | |
| 2617 | - <nullif/> | |
| 2618 | - <trim_type>none</trim_type> | |
| 2619 | - <length>-1</length> | |
| 2620 | - <precision>-1</precision> | |
| 2621 | - </field> | |
| 2622 | - <field> | |
| 2623 | - <name>fcno5</name> | |
| 2624 | - <type>String</type> | |
| 2625 | - <format/> | |
| 2626 | - <currency/> | |
| 2627 | - <decimal/> | |
| 2628 | - <group/> | |
| 2629 | - <nullif/> | |
| 2630 | - <trim_type>none</trim_type> | |
| 2631 | - <length>-1</length> | |
| 2632 | - <precision>-1</precision> | |
| 2633 | - </field> | |
| 2634 | - <field> | |
| 2635 | - <name>fcno6</name> | |
| 2636 | - <type>String</type> | |
| 2637 | - <format/> | |
| 2638 | - <currency/> | |
| 2639 | - <decimal/> | |
| 2640 | - <group/> | |
| 2641 | - <nullif/> | |
| 2642 | - <trim_type>none</trim_type> | |
| 2643 | - <length>-1</length> | |
| 2644 | - <precision>-1</precision> | |
| 2645 | - </field> | |
| 2646 | - <field> | |
| 2647 | - <name>fcno7</name> | |
| 2648 | - <type>String</type> | |
| 2649 | - <format/> | |
| 2650 | - <currency/> | |
| 2651 | - <decimal/> | |
| 2652 | - <group/> | |
| 2653 | - <nullif/> | |
| 2654 | - <trim_type>none</trim_type> | |
| 2655 | - <length>-1</length> | |
| 2656 | - <precision>-1</precision> | |
| 2657 | - </field> | |
| 2658 | - <field> | |
| 2659 | - <name>fcno8</name> | |
| 2660 | - <type>String</type> | |
| 2661 | - <format/> | |
| 2662 | - <currency/> | |
| 2663 | - <decimal/> | |
| 2664 | - <group/> | |
| 2665 | - <nullif/> | |
| 2666 | - <trim_type>none</trim_type> | |
| 2667 | - <length>-1</length> | |
| 2668 | - <precision>-1</precision> | |
| 2669 | - </field> | |
| 2670 | - <field> | |
| 2671 | - <name>fcno9</name> | |
| 2672 | - <type>String</type> | |
| 2673 | - <format/> | |
| 2674 | - <currency/> | |
| 2675 | - <decimal/> | |
| 2676 | - <group/> | |
| 2677 | - <nullif/> | |
| 2678 | - <trim_type>none</trim_type> | |
| 2679 | - <length>-1</length> | |
| 2680 | - <precision>-1</precision> | |
| 2681 | - </field> | |
| 2682 | - <field> | |
| 2683 | - <name>fcno10</name> | |
| 2684 | - <type>String</type> | |
| 2685 | - <format/> | |
| 2686 | - <currency/> | |
| 2687 | - <decimal/> | |
| 2688 | - <group/> | |
| 2689 | - <nullif/> | |
| 2690 | - <trim_type>none</trim_type> | |
| 2691 | - <length>-1</length> | |
| 2692 | - <precision>-1</precision> | |
| 2693 | - </field> | |
| 2694 | - <field> | |
| 2695 | - <name>fcno11</name> | |
| 2696 | - <type>String</type> | |
| 2697 | - <format/> | |
| 2698 | - <currency/> | |
| 2699 | - <decimal/> | |
| 2700 | - <group/> | |
| 2701 | - <nullif/> | |
| 2702 | - <trim_type>none</trim_type> | |
| 2703 | - <length>-1</length> | |
| 2704 | - <precision>-1</precision> | |
| 2705 | - </field> | |
| 2706 | - <field> | |
| 2707 | - <name>fcno12</name> | |
| 2708 | - <type>String</type> | |
| 2709 | - <format/> | |
| 2710 | - <currency/> | |
| 2711 | - <decimal/> | |
| 2712 | - <group/> | |
| 2713 | - <nullif/> | |
| 2714 | - <trim_type>none</trim_type> | |
| 2715 | - <length>-1</length> | |
| 2716 | - <precision>-1</precision> | |
| 2717 | - </field> | |
| 2718 | - <field> | |
| 2719 | - <name>fcno13</name> | |
| 2720 | - <type>String</type> | |
| 2721 | - <format/> | |
| 2722 | - <currency/> | |
| 2723 | - <decimal/> | |
| 2724 | - <group/> | |
| 2725 | - <nullif/> | |
| 2726 | - <trim_type>none</trim_type> | |
| 2727 | - <length>-1</length> | |
| 2728 | - <precision>-1</precision> | |
| 2729 | - </field> | |
| 2730 | - <field> | |
| 2731 | - <name>fcno14</name> | |
| 2732 | - <type>String</type> | |
| 2733 | - <format/> | |
| 2734 | - <currency/> | |
| 2735 | - <decimal/> | |
| 2736 | - <group/> | |
| 2737 | - <nullif/> | |
| 2738 | - <trim_type>none</trim_type> | |
| 2739 | - <length>-1</length> | |
| 2740 | - <precision>-1</precision> | |
| 2741 | - </field> | |
| 2742 | - <field> | |
| 2743 | - <name>fcno15</name> | |
| 2744 | - <type>String</type> | |
| 2745 | - <format/> | |
| 2746 | - <currency/> | |
| 2747 | - <decimal/> | |
| 2748 | - <group/> | |
| 2749 | - <nullif/> | |
| 2750 | - <trim_type>none</trim_type> | |
| 2751 | - <length>-1</length> | |
| 2752 | - <precision>-1</precision> | |
| 2753 | - </field> | |
| 2754 | - <field> | |
| 2755 | - <name>fcno16</name> | |
| 2756 | - <type>String</type> | |
| 2757 | - <format/> | |
| 2758 | - <currency/> | |
| 2759 | - <decimal/> | |
| 2760 | - <group/> | |
| 2761 | - <nullif/> | |
| 2762 | - <trim_type>none</trim_type> | |
| 2763 | - <length>-1</length> | |
| 2764 | - <precision>-1</precision> | |
| 2765 | - </field> | |
| 2766 | - <field> | |
| 2767 | - <name>fcno17</name> | |
| 2768 | - <type>String</type> | |
| 2769 | - <format/> | |
| 2770 | - <currency/> | |
| 2771 | - <decimal/> | |
| 2772 | - <group/> | |
| 2773 | - <nullif/> | |
| 2774 | - <trim_type>none</trim_type> | |
| 2775 | - <length>-1</length> | |
| 2776 | - <precision>-1</precision> | |
| 2777 | - </field> | |
| 2778 | - <field> | |
| 2779 | - <name>fcno18</name> | |
| 2780 | - <type>String</type> | |
| 2781 | - <format/> | |
| 2782 | - <currency/> | |
| 2783 | - <decimal/> | |
| 2784 | - <group/> | |
| 2785 | - <nullif/> | |
| 2786 | - <trim_type>none</trim_type> | |
| 2787 | - <length>-1</length> | |
| 2788 | - <precision>-1</precision> | |
| 2789 | - </field> | |
| 2790 | - <field> | |
| 2791 | - <name>fcno19</name> | |
| 2792 | - <type>String</type> | |
| 2793 | - <format/> | |
| 2794 | - <currency/> | |
| 2795 | - <decimal/> | |
| 2796 | - <group/> | |
| 2797 | - <nullif/> | |
| 2798 | - <trim_type>none</trim_type> | |
| 2799 | - <length>-1</length> | |
| 2800 | - <precision>-1</precision> | |
| 2801 | - </field> | |
| 2802 | - <field> | |
| 2803 | - <name>fcno20</name> | |
| 2804 | - <type>String</type> | |
| 2805 | - <format/> | |
| 2806 | - <currency/> | |
| 2807 | - <decimal/> | |
| 2808 | - <group/> | |
| 2809 | - <nullif/> | |
| 2810 | - <trim_type>none</trim_type> | |
| 2811 | - <length>-1</length> | |
| 2812 | - <precision>-1</precision> | |
| 2813 | - </field> | |
| 2814 | - <field> | |
| 2815 | - <name>fcno21</name> | |
| 2816 | - <type>String</type> | |
| 2817 | - <format/> | |
| 2818 | - <currency/> | |
| 2819 | - <decimal/> | |
| 2820 | - <group/> | |
| 2821 | - <nullif/> | |
| 2822 | - <trim_type>none</trim_type> | |
| 2823 | - <length>-1</length> | |
| 2824 | - <precision>-1</precision> | |
| 2825 | - </field> | |
| 2826 | - <field> | |
| 2827 | - <name>fcno22</name> | |
| 2828 | - <type>String</type> | |
| 2829 | - <format/> | |
| 2830 | - <currency/> | |
| 2831 | - <decimal/> | |
| 2832 | - <group/> | |
| 2833 | - <nullif/> | |
| 2834 | - <trim_type>none</trim_type> | |
| 2835 | - <length>-1</length> | |
| 2836 | - <precision>-1</precision> | |
| 2837 | - </field> | |
| 2838 | - <field> | |
| 2839 | - <name>fcno23</name> | |
| 2840 | - <type>String</type> | |
| 2841 | - <format/> | |
| 2842 | - <currency/> | |
| 2843 | - <decimal/> | |
| 2844 | - <group/> | |
| 2845 | - <nullif/> | |
| 2846 | - <trim_type>none</trim_type> | |
| 2847 | - <length>-1</length> | |
| 2848 | - <precision>-1</precision> | |
| 2849 | - </field> | |
| 2850 | - <field> | |
| 2851 | - <name>fcno24</name> | |
| 2852 | - <type>String</type> | |
| 2853 | - <format/> | |
| 2854 | - <currency/> | |
| 2855 | - <decimal/> | |
| 2856 | - <group/> | |
| 2857 | - <nullif/> | |
| 2858 | - <trim_type>none</trim_type> | |
| 2859 | - <length>-1</length> | |
| 2860 | - <precision>-1</precision> | |
| 2861 | - </field> | |
| 2862 | - <field> | |
| 2863 | - <name>fcno25</name> | |
| 2864 | - <type>String</type> | |
| 2865 | - <format/> | |
| 2866 | - <currency/> | |
| 2867 | - <decimal/> | |
| 2868 | - <group/> | |
| 2869 | - <nullif/> | |
| 2870 | - <trim_type>none</trim_type> | |
| 2871 | - <length>-1</length> | |
| 2872 | - <precision>-1</precision> | |
| 2873 | - </field> | |
| 2874 | - <field> | |
| 2875 | - <name>fcno26</name> | |
| 2876 | - <type>String</type> | |
| 2877 | - <format/> | |
| 2878 | - <currency/> | |
| 2879 | - <decimal/> | |
| 2880 | - <group/> | |
| 2881 | - <nullif/> | |
| 2882 | - <trim_type>none</trim_type> | |
| 2883 | - <length>-1</length> | |
| 2884 | - <precision>-1</precision> | |
| 2885 | - </field> | |
| 2886 | - <field> | |
| 2887 | - <name>fcno27</name> | |
| 2888 | - <type>String</type> | |
| 2889 | - <format/> | |
| 2890 | - <currency/> | |
| 2891 | - <decimal/> | |
| 2892 | - <group/> | |
| 2893 | - <nullif/> | |
| 2894 | - <trim_type>none</trim_type> | |
| 2895 | - <length>-1</length> | |
| 2896 | - <precision>-1</precision> | |
| 2897 | - </field> | |
| 2898 | - <field> | |
| 2899 | - <name>fcno28</name> | |
| 2900 | - <type>String</type> | |
| 2901 | - <format/> | |
| 2902 | - <currency/> | |
| 2903 | - <decimal/> | |
| 2904 | - <group/> | |
| 2905 | - <nullif/> | |
| 2906 | - <trim_type>none</trim_type> | |
| 2907 | - <length>-1</length> | |
| 2908 | - <precision>-1</precision> | |
| 2909 | - </field> | |
| 2910 | - <field> | |
| 2911 | - <name>fcno29</name> | |
| 2912 | - <type>String</type> | |
| 2913 | - <format/> | |
| 2914 | - <currency/> | |
| 2915 | - <decimal/> | |
| 2916 | - <group/> | |
| 2917 | - <nullif/> | |
| 2918 | - <trim_type>none</trim_type> | |
| 2919 | - <length>-1</length> | |
| 2920 | - <precision>-1</precision> | |
| 2921 | - </field> | |
| 2922 | - <field> | |
| 2923 | - <name>fcno30</name> | |
| 2924 | - <type>String</type> | |
| 2925 | - <format/> | |
| 2926 | - <currency/> | |
| 2927 | - <decimal/> | |
| 2928 | - <group/> | |
| 2929 | - <nullif/> | |
| 2930 | - <trim_type>none</trim_type> | |
| 2931 | - <length>-1</length> | |
| 2932 | - <precision>-1</precision> | |
| 2933 | - </field> | |
| 2934 | - <field> | |
| 2935 | - <name>fcno31</name> | |
| 2936 | - <type>String</type> | |
| 2937 | - <format/> | |
| 2938 | - <currency/> | |
| 2939 | - <decimal/> | |
| 2940 | - <group/> | |
| 2941 | - <nullif/> | |
| 2942 | - <trim_type>none</trim_type> | |
| 2943 | - <length>-1</length> | |
| 2944 | - <precision>-1</precision> | |
| 2945 | - </field> | |
| 2946 | - <field> | |
| 2947 | - <name>fcno32</name> | |
| 2948 | - <type>String</type> | |
| 2949 | - <format/> | |
| 2950 | - <currency/> | |
| 2951 | - <decimal/> | |
| 2952 | - <group/> | |
| 2953 | - <nullif/> | |
| 2954 | - <trim_type>none</trim_type> | |
| 2955 | - <length>-1</length> | |
| 2956 | - <precision>-1</precision> | |
| 2957 | - </field> | |
| 2958 | - <field> | |
| 2959 | - <name>fcno33</name> | |
| 2960 | - <type>String</type> | |
| 2961 | - <format/> | |
| 2962 | - <currency/> | |
| 2963 | - <decimal/> | |
| 2964 | - <group/> | |
| 2965 | - <nullif/> | |
| 2966 | - <trim_type>none</trim_type> | |
| 2967 | - <length>-1</length> | |
| 2968 | - <precision>-1</precision> | |
| 2969 | - </field> | |
| 2970 | - <field> | |
| 2971 | - <name>fcno34</name> | |
| 2972 | - <type>String</type> | |
| 2973 | - <format/> | |
| 2974 | - <currency/> | |
| 2975 | - <decimal/> | |
| 2976 | - <group/> | |
| 2977 | - <nullif/> | |
| 2978 | - <trim_type>none</trim_type> | |
| 2979 | - <length>-1</length> | |
| 2980 | - <precision>-1</precision> | |
| 2981 | - </field> | |
| 2982 | - <field> | |
| 2983 | - <name>fcno35</name> | |
| 2984 | - <type>String</type> | |
| 2985 | - <format/> | |
| 2986 | - <currency/> | |
| 2987 | - <decimal/> | |
| 2988 | - <group/> | |
| 2989 | - <nullif/> | |
| 2990 | - <trim_type>none</trim_type> | |
| 2991 | - <length>-1</length> | |
| 2992 | - <precision>-1</precision> | |
| 2993 | - </field> | |
| 2994 | - <field> | |
| 2995 | - <name>fcno36</name> | |
| 2996 | - <type>String</type> | |
| 2997 | - <format/> | |
| 2998 | - <currency/> | |
| 2999 | - <decimal/> | |
| 3000 | - <group/> | |
| 3001 | - <nullif/> | |
| 3002 | - <trim_type>none</trim_type> | |
| 3003 | - <length>-1</length> | |
| 3004 | - <precision>-1</precision> | |
| 3005 | - </field> | |
| 3006 | - <field> | |
| 3007 | - <name>fcno37</name> | |
| 3008 | - <type>String</type> | |
| 3009 | - <format/> | |
| 3010 | - <currency/> | |
| 3011 | - <decimal/> | |
| 3012 | - <group/> | |
| 3013 | - <nullif/> | |
| 3014 | - <trim_type>none</trim_type> | |
| 3015 | - <length>-1</length> | |
| 3016 | - <precision>-1</precision> | |
| 3017 | - </field> | |
| 3018 | - <field> | |
| 3019 | - <name>fcno38</name> | |
| 3020 | - <type>String</type> | |
| 3021 | - <format/> | |
| 3022 | - <currency/> | |
| 3023 | - <decimal/> | |
| 3024 | - <group/> | |
| 3025 | - <nullif/> | |
| 3026 | - <trim_type>none</trim_type> | |
| 3027 | - <length>-1</length> | |
| 3028 | - <precision>-1</precision> | |
| 3029 | - </field> | |
| 3030 | - <field> | |
| 3031 | - <name>fcno39</name> | |
| 3032 | - <type>String</type> | |
| 3033 | - <format/> | |
| 3034 | - <currency/> | |
| 3035 | - <decimal/> | |
| 3036 | - <group/> | |
| 3037 | - <nullif/> | |
| 3038 | - <trim_type>none</trim_type> | |
| 3039 | - <length>-1</length> | |
| 3040 | - <precision>-1</precision> | |
| 3041 | - </field> | |
| 3042 | - <field> | |
| 3043 | - <name>fcno40</name> | |
| 3044 | - <type>String</type> | |
| 3045 | - <format/> | |
| 3046 | - <currency/> | |
| 3047 | - <decimal/> | |
| 3048 | - <group/> | |
| 3049 | - <nullif/> | |
| 3050 | - <trim_type>none</trim_type> | |
| 3051 | - <length>-1</length> | |
| 3052 | - <precision>-1</precision> | |
| 3053 | - </field> | |
| 3054 | - <field> | |
| 3055 | - <name>fcno41</name> | |
| 3056 | - <type>String</type> | |
| 3057 | - <format/> | |
| 3058 | - <currency/> | |
| 3059 | - <decimal/> | |
| 3060 | - <group/> | |
| 3061 | - <nullif/> | |
| 3062 | - <trim_type>none</trim_type> | |
| 3063 | - <length>-1</length> | |
| 3064 | - <precision>-1</precision> | |
| 3065 | - </field> | |
| 3066 | - <field> | |
| 3067 | - <name>fcno42</name> | |
| 3068 | - <type>String</type> | |
| 3069 | - <format/> | |
| 3070 | - <currency/> | |
| 3071 | - <decimal/> | |
| 3072 | - <group/> | |
| 3073 | - <nullif/> | |
| 3074 | - <trim_type>none</trim_type> | |
| 3075 | - <length>-1</length> | |
| 3076 | - <precision>-1</precision> | |
| 3077 | - </field> | |
| 3078 | - <field> | |
| 3079 | - <name>fcno43</name> | |
| 3080 | - <type>String</type> | |
| 3081 | - <format/> | |
| 3082 | - <currency/> | |
| 3083 | - <decimal/> | |
| 3084 | - <group/> | |
| 3085 | - <nullif/> | |
| 3086 | - <trim_type>none</trim_type> | |
| 3087 | - <length>-1</length> | |
| 3088 | - <precision>-1</precision> | |
| 3089 | - </field> | |
| 3090 | - <field> | |
| 3091 | - <name>fcno44</name> | |
| 3092 | - <type>String</type> | |
| 3093 | - <format/> | |
| 3094 | - <currency/> | |
| 3095 | - <decimal/> | |
| 3096 | - <group/> | |
| 3097 | - <nullif/> | |
| 3098 | - <trim_type>none</trim_type> | |
| 3099 | - <length>-1</length> | |
| 3100 | - <precision>-1</precision> | |
| 3101 | - </field> | |
| 3102 | - <field> | |
| 3103 | - <name>fcno45</name> | |
| 3104 | - <type>String</type> | |
| 3105 | - <format/> | |
| 3106 | - <currency/> | |
| 3107 | - <decimal/> | |
| 3108 | - <group/> | |
| 3109 | - <nullif/> | |
| 3110 | - <trim_type>none</trim_type> | |
| 3111 | - <length>-1</length> | |
| 3112 | - <precision>-1</precision> | |
| 3113 | - </field> | |
| 3114 | - <field> | |
| 3115 | - <name>fcno46</name> | |
| 3116 | - <type>String</type> | |
| 3117 | - <format/> | |
| 3118 | - <currency/> | |
| 3119 | - <decimal/> | |
| 3120 | - <group/> | |
| 3121 | - <nullif/> | |
| 3122 | - <trim_type>none</trim_type> | |
| 3123 | - <length>-1</length> | |
| 3124 | - <precision>-1</precision> | |
| 3125 | - </field> | |
| 3126 | - <field> | |
| 3127 | - <name>fcno47</name> | |
| 3128 | - <type>String</type> | |
| 3129 | - <format/> | |
| 3130 | - <currency/> | |
| 3131 | - <decimal/> | |
| 3132 | - <group/> | |
| 3133 | - <nullif/> | |
| 3134 | - <trim_type>none</trim_type> | |
| 3135 | - <length>-1</length> | |
| 3136 | - <precision>-1</precision> | |
| 3137 | - </field> | |
| 3138 | - <field> | |
| 3139 | - <name>fcno48</name> | |
| 3140 | - <type>String</type> | |
| 3141 | - <format/> | |
| 3142 | - <currency/> | |
| 3143 | - <decimal/> | |
| 3144 | - <group/> | |
| 3145 | - <nullif/> | |
| 3146 | - <trim_type>none</trim_type> | |
| 3147 | - <length>-1</length> | |
| 3148 | - <precision>-1</precision> | |
| 3149 | - </field> | |
| 3150 | - <field> | |
| 3151 | - <name>fcno49</name> | |
| 3152 | - <type>String</type> | |
| 3153 | - <format/> | |
| 3154 | - <currency/> | |
| 3155 | - <decimal/> | |
| 3156 | - <group/> | |
| 3157 | - <nullif/> | |
| 3158 | - <trim_type>none</trim_type> | |
| 3159 | - <length>-1</length> | |
| 3160 | - <precision>-1</precision> | |
| 3161 | - </field> | |
| 3162 | - <field> | |
| 3163 | - <name>fcno50</name> | |
| 3164 | - <type>String</type> | |
| 3165 | - <format/> | |
| 3166 | - <currency/> | |
| 3167 | - <decimal/> | |
| 3168 | - <group/> | |
| 3169 | - <nullif/> | |
| 3170 | - <trim_type>none</trim_type> | |
| 3171 | - <length>-1</length> | |
| 3172 | - <precision>-1</precision> | |
| 3173 | - </field> | |
| 3174 | - <field> | |
| 3175 | - <name>fcno51</name> | |
| 3176 | - <type>String</type> | |
| 3177 | - <format/> | |
| 3178 | - <currency/> | |
| 3179 | - <decimal/> | |
| 3180 | - <group/> | |
| 3181 | - <nullif/> | |
| 3182 | - <trim_type>none</trim_type> | |
| 3183 | - <length>-1</length> | |
| 3184 | - <precision>-1</precision> | |
| 3185 | - </field> | |
| 3186 | - <field> | |
| 3187 | - <name>fcno52</name> | |
| 3188 | - <type>String</type> | |
| 3189 | - <format/> | |
| 3190 | - <currency/> | |
| 3191 | - <decimal/> | |
| 3192 | - <group/> | |
| 3193 | - <nullif/> | |
| 3194 | - <trim_type>none</trim_type> | |
| 3195 | - <length>-1</length> | |
| 3196 | - <precision>-1</precision> | |
| 3197 | - </field> | |
| 3198 | - <field> | |
| 3199 | - <name>fcno53</name> | |
| 3200 | - <type>String</type> | |
| 3201 | - <format/> | |
| 3202 | - <currency/> | |
| 3203 | - <decimal/> | |
| 3204 | - <group/> | |
| 3205 | - <nullif/> | |
| 3206 | - <trim_type>none</trim_type> | |
| 3207 | - <length>-1</length> | |
| 3208 | - <precision>-1</precision> | |
| 3209 | - </field> | |
| 3210 | - <field> | |
| 3211 | - <name>fcno54</name> | |
| 3212 | - <type>String</type> | |
| 3213 | - <format/> | |
| 3214 | - <currency/> | |
| 3215 | - <decimal/> | |
| 3216 | - <group/> | |
| 3217 | - <nullif/> | |
| 3218 | - <trim_type>none</trim_type> | |
| 3219 | - <length>-1</length> | |
| 3220 | - <precision>-1</precision> | |
| 3221 | - </field> | |
| 3222 | - <field> | |
| 3223 | - <name>fcno55</name> | |
| 3224 | - <type>String</type> | |
| 3225 | - <format/> | |
| 3226 | - <currency/> | |
| 3227 | - <decimal/> | |
| 3228 | - <group/> | |
| 3229 | - <nullif/> | |
| 3230 | - <trim_type>none</trim_type> | |
| 3231 | - <length>-1</length> | |
| 3232 | - <precision>-1</precision> | |
| 3233 | - </field> | |
| 3234 | - <field> | |
| 3235 | - <name>fcno56</name> | |
| 3236 | - <type>String</type> | |
| 3237 | - <format/> | |
| 3238 | - <currency/> | |
| 3239 | - <decimal/> | |
| 3240 | - <group/> | |
| 3241 | - <nullif/> | |
| 3242 | - <trim_type>none</trim_type> | |
| 3243 | - <length>-1</length> | |
| 3244 | - <precision>-1</precision> | |
| 3245 | - </field> | |
| 3246 | - <field> | |
| 3247 | - <name>fcno57</name> | |
| 3248 | - <type>String</type> | |
| 3249 | - <format/> | |
| 3250 | - <currency/> | |
| 3251 | - <decimal/> | |
| 3252 | - <group/> | |
| 3253 | - <nullif/> | |
| 3254 | - <trim_type>none</trim_type> | |
| 3255 | - <length>-1</length> | |
| 3256 | - <precision>-1</precision> | |
| 3257 | - </field> | |
| 3258 | - <field> | |
| 3259 | - <name>fcno58</name> | |
| 3260 | - <type>String</type> | |
| 3261 | - <format/> | |
| 3262 | - <currency/> | |
| 3263 | - <decimal/> | |
| 3264 | - <group/> | |
| 3265 | - <nullif/> | |
| 3266 | - <trim_type>none</trim_type> | |
| 3267 | - <length>-1</length> | |
| 3268 | - <precision>-1</precision> | |
| 3269 | - </field> | |
| 3270 | - <field> | |
| 3271 | - <name>fcno59</name> | |
| 3272 | - <type>String</type> | |
| 3273 | - <format/> | |
| 3274 | - <currency/> | |
| 3275 | - <decimal/> | |
| 3276 | - <group/> | |
| 3277 | - <nullif/> | |
| 3278 | - <trim_type>none</trim_type> | |
| 3279 | - <length>-1</length> | |
| 3280 | - <precision>-1</precision> | |
| 3281 | - </field> | |
| 3282 | - <field> | |
| 3283 | - <name>fcno60</name> | |
| 3284 | - <type>String</type> | |
| 3285 | - <format/> | |
| 3286 | - <currency/> | |
| 3287 | - <decimal/> | |
| 3288 | - <group/> | |
| 3289 | - <nullif/> | |
| 3290 | - <trim_type>none</trim_type> | |
| 3291 | - <length>-1</length> | |
| 3292 | - <precision>-1</precision> | |
| 3293 | - </field> | |
| 3294 | - <field> | |
| 3295 | - <name>fcno61</name> | |
| 3296 | - <type>String</type> | |
| 3297 | - <format/> | |
| 3298 | - <currency/> | |
| 3299 | - <decimal/> | |
| 3300 | - <group/> | |
| 3301 | - <nullif/> | |
| 3302 | - <trim_type>none</trim_type> | |
| 3303 | - <length>-1</length> | |
| 3304 | - <precision>-1</precision> | |
| 3305 | - </field> | |
| 3306 | - <field> | |
| 3307 | - <name>fcno62</name> | |
| 3308 | - <type>String</type> | |
| 3309 | - <format/> | |
| 3310 | - <currency/> | |
| 3311 | - <decimal/> | |
| 3312 | - <group/> | |
| 3313 | - <nullif/> | |
| 3314 | - <trim_type>none</trim_type> | |
| 3315 | - <length>-1</length> | |
| 3316 | - <precision>-1</precision> | |
| 3317 | - </field> | |
| 3318 | - <field> | |
| 3319 | - <name>fcno63</name> | |
| 3320 | - <type>String</type> | |
| 3321 | - <format/> | |
| 3322 | - <currency/> | |
| 3323 | - <decimal/> | |
| 3324 | - <group/> | |
| 3325 | - <nullif/> | |
| 3326 | - <trim_type>none</trim_type> | |
| 3327 | - <length>-1</length> | |
| 3328 | - <precision>-1</precision> | |
| 3329 | - </field> | |
| 3330 | - <field> | |
| 3331 | - <name>fcno64</name> | |
| 3332 | - <type>String</type> | |
| 3333 | - <format/> | |
| 3334 | - <currency/> | |
| 3335 | - <decimal/> | |
| 3336 | - <group/> | |
| 3337 | - <nullif/> | |
| 3338 | - <trim_type>none</trim_type> | |
| 3339 | - <length>-1</length> | |
| 3340 | - <precision>-1</precision> | |
| 3341 | - </field> | |
| 3342 | - <field> | |
| 3343 | - <name>fcno65</name> | |
| 3344 | - <type>String</type> | |
| 3345 | - <format/> | |
| 3346 | - <currency/> | |
| 3347 | - <decimal/> | |
| 3348 | - <group/> | |
| 3349 | - <nullif/> | |
| 3350 | - <trim_type>none</trim_type> | |
| 3351 | - <length>-1</length> | |
| 3352 | - <precision>-1</precision> | |
| 3353 | - </field> | |
| 3354 | - <field> | |
| 3355 | - <name>fcno66</name> | |
| 3356 | - <type>String</type> | |
| 3357 | - <format/> | |
| 3358 | - <currency/> | |
| 3359 | - <decimal/> | |
| 3360 | - <group/> | |
| 3361 | - <nullif/> | |
| 3362 | - <trim_type>none</trim_type> | |
| 3363 | - <length>-1</length> | |
| 3364 | - <precision>-1</precision> | |
| 3365 | - </field> | |
| 3366 | - <field> | |
| 3367 | - <name>fcno67</name> | |
| 3368 | - <type>String</type> | |
| 3369 | - <format/> | |
| 3370 | - <currency/> | |
| 3371 | - <decimal/> | |
| 3372 | - <group/> | |
| 3373 | - <nullif/> | |
| 3374 | - <trim_type>none</trim_type> | |
| 3375 | - <length>-1</length> | |
| 3376 | - <precision>-1</precision> | |
| 3377 | - </field> | |
| 3378 | - <field> | |
| 3379 | - <name>fcno68</name> | |
| 3380 | - <type>String</type> | |
| 3381 | - <format/> | |
| 3382 | - <currency/> | |
| 3383 | - <decimal/> | |
| 3384 | - <group/> | |
| 3385 | - <nullif/> | |
| 3386 | - <trim_type>none</trim_type> | |
| 3387 | - <length>-1</length> | |
| 3388 | - <precision>-1</precision> | |
| 3389 | - </field> | |
| 3390 | - <field> | |
| 3391 | - <name>fcno69</name> | |
| 3392 | - <type>String</type> | |
| 3393 | - <format/> | |
| 3394 | - <currency/> | |
| 3395 | - <decimal/> | |
| 3396 | - <group/> | |
| 3397 | - <nullif/> | |
| 3398 | - <trim_type>none</trim_type> | |
| 3399 | - <length>-1</length> | |
| 3400 | - <precision>-1</precision> | |
| 3401 | - </field> | |
| 3402 | - <field> | |
| 3403 | - <name>fcno70</name> | |
| 3404 | - <type>String</type> | |
| 3405 | - <format/> | |
| 3406 | - <currency/> | |
| 3407 | - <decimal/> | |
| 3408 | - <group/> | |
| 3409 | - <nullif/> | |
| 3410 | - <trim_type>none</trim_type> | |
| 3411 | - <length>-1</length> | |
| 3412 | - <precision>-1</precision> | |
| 3413 | - </field> | |
| 3414 | - </fields> | |
| 3415 | - <cluster_schema/> | |
| 3416 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3417 | - <xloc>880</xloc> | |
| 3418 | - <yloc>365</yloc> | |
| 3419 | - <draw>Y</draw> | |
| 3420 | - </GUI> | |
| 3421 | - </step> | |
| 3422 | - | |
| 3423 | - <step> | |
| 3424 | - <name>合并内容</name> | |
| 3425 | - <type>ScriptValueMod</type> | |
| 3426 | - <description/> | |
| 3427 | - <distribute>Y</distribute> | |
| 3428 | - <custom_distribution/> | |
| 3429 | - <copies>1</copies> | |
| 3430 | - <partitioning> | |
| 3431 | - <method>none</method> | |
| 3432 | - <schema_name/> | |
| 3433 | - </partitioning> | |
| 3434 | - <compatible>N</compatible> | |
| 3435 | - <optimizationLevel>9</optimizationLevel> | |
| 3436 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3437 | - <jsScript_name>Script 1</jsScript_name> | |
| 3438 | - <jsScript_script>//Script here

// 顺序,id,fcsj,jhlc,zdname,bctype,xldir,isfb
var all_content_array = [];
var all_content = ""; 
all_content_array.push(id);
all_content_array.push(fcsj);
all_content_array.push(jhlc);
all_content_array.push(fczdName);
all_content_array.push(bc_type);
all_content_array.push(xl_dir);
all_content_array.push(isfb);

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 3439 | - </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 3440 | - <rename>all_content</rename> | |
| 3441 | - <type>String</type> | |
| 3442 | - <length>-1</length> | |
| 3443 | - <precision>-1</precision> | |
| 3444 | - <replace>N</replace> | |
| 3445 | - </field> </fields> <cluster_schema/> | |
| 3446 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3447 | - <xloc>551</xloc> | |
| 3448 | - <yloc>366</yloc> | |
| 3449 | - <draw>Y</draw> | |
| 3450 | - </GUI> | |
| 3451 | - </step> | |
| 3452 | - | |
| 3453 | - <step_error_handling> | |
| 3454 | - </step_error_handling> | |
| 3455 | - <slave-step-copy-partition-distribution> | |
| 3456 | -</slave-step-copy-partition-distribution> | |
| 3457 | - <slave_transformation>N</slave_transformation> | |
| 3458 | - | |
| 3459 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>ttinfodetailoutputforedit</name> | |
| 5 | + <description/> | |
| 6 | + <extended_description/> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>tempfilepath</name> | |
| 14 | + <default_value>/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/temp/test</default_value> | |
| 15 | + <description>默认输出的文件路径名</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>ttid</name> | |
| 19 | + <default_value>63</default_value> | |
| 20 | + <description>时刻表id</description> | |
| 21 | + </parameter> | |
| 22 | + <parameter> | |
| 23 | + <name>xlid</name> | |
| 24 | + <default_value>63017</default_value> | |
| 25 | + <description>线路id</description> | |
| 26 | + </parameter> | |
| 27 | + </parameters> | |
| 28 | + <log> | |
| 29 | +<trans-log-table><connection/> | |
| 30 | +<schema/> | |
| 31 | +<table/> | |
| 32 | +<size_limit_lines/> | |
| 33 | +<interval/> | |
| 34 | +<timeout_days/> | |
| 35 | +<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> | |
| 36 | +<perf-log-table><connection/> | |
| 37 | +<schema/> | |
| 38 | +<table/> | |
| 39 | +<interval/> | |
| 40 | +<timeout_days/> | |
| 41 | +<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> | |
| 42 | +<channel-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 47 | +<step-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 52 | +<metrics-log-table><connection/> | |
| 53 | +<schema/> | |
| 54 | +<table/> | |
| 55 | +<timeout_days/> | |
| 56 | +<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> | |
| 57 | + </log> | |
| 58 | + <maxdate> | |
| 59 | + <connection/> | |
| 60 | + <table/> | |
| 61 | + <field/> | |
| 62 | + <offset>0.0</offset> | |
| 63 | + <maxdiff>0.0</maxdiff> | |
| 64 | + </maxdate> | |
| 65 | + <size_rowset>10000</size_rowset> | |
| 66 | + <sleep_time_empty>50</sleep_time_empty> | |
| 67 | + <sleep_time_full>50</sleep_time_full> | |
| 68 | + <unique_connections>N</unique_connections> | |
| 69 | + <feedback_shown>Y</feedback_shown> | |
| 70 | + <feedback_size>50000</feedback_size> | |
| 71 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 72 | + <shared_objects_file/> | |
| 73 | + <capture_step_performance>N</capture_step_performance> | |
| 74 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 75 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 76 | + <dependencies> | |
| 77 | + </dependencies> | |
| 78 | + <partitionschemas> | |
| 79 | + </partitionschemas> | |
| 80 | + <slaveservers> | |
| 81 | + </slaveservers> | |
| 82 | + <clusterschemas> | |
| 83 | + </clusterschemas> | |
| 84 | + <created_user>-</created_user> | |
| 85 | + <created_date>2016/07/11 21:45:05.041</created_date> | |
| 86 | + <modified_user>-</modified_user> | |
| 87 | + <modified_date>2016/07/11 21:45:05.041</modified_date> | |
| 88 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 89 | + <is_key_private>N</is_key_private> | |
| 90 | + </info> | |
| 91 | + <notepads> | |
| 92 | + <notepad> | |
| 93 | + <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 94 | + <xloc>45</xloc> | |
| 95 | + <yloc>261</yloc> | |
| 96 | + <width>333</width> | |
| 97 | + <heigth>90</heigth> | |
| 98 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 99 | + <fontsize>12</fontsize> | |
| 100 | + <fontbold>N</fontbold> | |
| 101 | + <fontitalic>N</fontitalic> | |
| 102 | + <fontcolorred>0</fontcolorred> | |
| 103 | + <fontcolorgreen>0</fontcolorgreen> | |
| 104 | + <fontcolorblue>0</fontcolorblue> | |
| 105 | + <backgroundcolorred>255</backgroundcolorred> | |
| 106 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 107 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 108 | + <bordercolorred>100</bordercolorred> | |
| 109 | + <bordercolorgreen>100</bordercolorgreen> | |
| 110 | + <bordercolorblue>100</bordercolorblue> | |
| 111 | + <drawshadow>Y</drawshadow> | |
| 112 | + </notepad> | |
| 113 | + <notepad> | |
| 114 | + <note>此处转换excel有问题,
2003格式的xls最多256列,
这里明显超过,所以把所有内容合并成1列,
用,分隔</note> | |
| 115 | + <xloc>256</xloc> | |
| 116 | + <yloc>397</yloc> | |
| 117 | + <width>245</width> | |
| 118 | + <heigth>74</heigth> | |
| 119 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 120 | + <fontsize>12</fontsize> | |
| 121 | + <fontbold>N</fontbold> | |
| 122 | + <fontitalic>N</fontitalic> | |
| 123 | + <fontcolorred>0</fontcolorred> | |
| 124 | + <fontcolorgreen>0</fontcolorgreen> | |
| 125 | + <fontcolorblue>0</fontcolorblue> | |
| 126 | + <backgroundcolorred>255</backgroundcolorred> | |
| 127 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 128 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 129 | + <bordercolorred>100</bordercolorred> | |
| 130 | + <bordercolorgreen>100</bordercolorgreen> | |
| 131 | + <bordercolorblue>100</bordercolorblue> | |
| 132 | + <drawshadow>Y</drawshadow> | |
| 133 | + </notepad> | |
| 134 | + </notepads> | |
| 135 | + <connection> | |
| 136 | + <name>bus_control_variable</name> | |
| 137 | + <server>${v_db_ip}</server> | |
| 138 | + <type>MYSQL</type> | |
| 139 | + <access>Native</access> | |
| 140 | + <database>${v_db_dname}</database> | |
| 141 | + <port>3306</port> | |
| 142 | + <username>${v_db_uname}</username> | |
| 143 | + <password>${v_db_pwd}</password> | |
| 144 | + <servername/> | |
| 145 | + <data_tablespace/> | |
| 146 | + <index_tablespace/> | |
| 147 | + <attributes> | |
| 148 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 149 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | + </attributes> | |
| 162 | + </connection> | |
| 163 | + <connection> | |
| 164 | + <name>bus_control_公司_201</name> | |
| 165 | + <server>localhost</server> | |
| 166 | + <type>MYSQL</type> | |
| 167 | + <access>Native</access> | |
| 168 | + <database>control</database> | |
| 169 | + <port>3306</port> | |
| 170 | + <username>root</username> | |
| 171 | + <password>Encrypted </password> | |
| 172 | + <servername/> | |
| 173 | + <data_tablespace/> | |
| 174 | + <index_tablespace/> | |
| 175 | + <attributes> | |
| 176 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 185 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | + </attributes> | |
| 189 | + </connection> | |
| 190 | + <connection> | |
| 191 | + <name>bus_control_本机</name> | |
| 192 | + <server>localhost</server> | |
| 193 | + <type>MYSQL</type> | |
| 194 | + <access>Native</access> | |
| 195 | + <database>control</database> | |
| 196 | + <port>3306</port> | |
| 197 | + <username>root</username> | |
| 198 | + <password>Encrypted </password> | |
| 199 | + <servername/> | |
| 200 | + <data_tablespace/> | |
| 201 | + <index_tablespace/> | |
| 202 | + <attributes> | |
| 203 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 209 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 213 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 214 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | + </attributes> | |
| 216 | + </connection> | |
| 217 | + <connection> | |
| 218 | + <name>xlab_mysql_youle</name> | |
| 219 | + <server>101.231.124.8</server> | |
| 220 | + <type>MYSQL</type> | |
| 221 | + <access>Native</access> | |
| 222 | + <database>xlab_youle</database> | |
| 223 | + <port>45687</port> | |
| 224 | + <username>xlab-youle</username> | |
| 225 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 226 | + <servername/> | |
| 227 | + <data_tablespace/> | |
| 228 | + <index_tablespace/> | |
| 229 | + <attributes> | |
| 230 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 236 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | + </attributes> | |
| 243 | + </connection> | |
| 244 | + <connection> | |
| 245 | + <name>xlab_mysql_youle(本机)</name> | |
| 246 | + <server>localhost</server> | |
| 247 | + <type>MYSQL</type> | |
| 248 | + <access>Native</access> | |
| 249 | + <database>xlab_youle</database> | |
| 250 | + <port>3306</port> | |
| 251 | + <username>root</username> | |
| 252 | + <password>Encrypted </password> | |
| 253 | + <servername/> | |
| 254 | + <data_tablespace/> | |
| 255 | + <index_tablespace/> | |
| 256 | + <attributes> | |
| 257 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 258 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 259 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 261 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 262 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 263 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 264 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 265 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 266 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 267 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 268 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 269 | + </attributes> | |
| 270 | + </connection> | |
| 271 | + <connection> | |
| 272 | + <name>xlab_youle</name> | |
| 273 | + <server/> | |
| 274 | + <type>MYSQL</type> | |
| 275 | + <access>JNDI</access> | |
| 276 | + <database>xlab_youle</database> | |
| 277 | + <port>1521</port> | |
| 278 | + <username/> | |
| 279 | + <password>Encrypted </password> | |
| 280 | + <servername/> | |
| 281 | + <data_tablespace/> | |
| 282 | + <index_tablespace/> | |
| 283 | + <attributes> | |
| 284 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 285 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 286 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 287 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 288 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 289 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 290 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 291 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 292 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 293 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 294 | + </attributes> | |
| 295 | + </connection> | |
| 296 | + <order> | |
| 297 | + <hop> <from>表输入</from><to>过滤记录</to><enabled>Y</enabled> </hop> | |
| 298 | + <hop> <from>过滤记录</from><to>正常班次站点查询用数据</to><enabled>Y</enabled> </hop> | |
| 299 | + <hop> <from>过滤记录</from><to>进场出场班次查询用的数据</to><enabled>Y</enabled> </hop> | |
| 300 | + <hop> <from>正常班次站点查询用数据</from><to>查找起点站名称</to><enabled>Y</enabled> </hop> | |
| 301 | + <hop> <from>查找起点站名称</from><to>查找终点站名称</to><enabled>Y</enabled> </hop> | |
| 302 | + <hop> <from>查找终点站名称</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 303 | + <hop> <from>进场出场班次查询用的数据</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | |
| 304 | + <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 305 | + <hop> <from>字段选择 2</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 306 | + <hop> <from>排序记录</from><to>计算发车站名</to><enabled>Y</enabled> </hop> | |
| 307 | + <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> | |
| 308 | + <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 309 | + <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> | |
| 310 | + <hop> <from>计算发车站名</from><to>合并内容</to><enabled>Y</enabled> </hop> | |
| 311 | + <hop> <from>合并内容</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 312 | + <hop> <from>去除字段</from><to>文本文件输出</to><enabled>Y</enabled> </hop> | |
| 313 | + </order> | |
| 314 | + <step> | |
| 315 | + <name>Excel输出</name> | |
| 316 | + <type>ExcelOutput</type> | |
| 317 | + <description/> | |
| 318 | + <distribute>Y</distribute> | |
| 319 | + <custom_distribution/> | |
| 320 | + <copies>1</copies> | |
| 321 | + <partitioning> | |
| 322 | + <method>none</method> | |
| 323 | + <schema_name/> | |
| 324 | + </partitioning> | |
| 325 | + <header>Y</header> | |
| 326 | + <footer>N</footer> | |
| 327 | + <encoding/> | |
| 328 | + <append>N</append> | |
| 329 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 330 | + <file> | |
| 331 | + <name>${tempfilepath}</name> | |
| 332 | + <extention>xls</extention> | |
| 333 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 334 | + <create_parent_folder>N</create_parent_folder> | |
| 335 | + <split>N</split> | |
| 336 | + <add_date>N</add_date> | |
| 337 | + <add_time>N</add_time> | |
| 338 | + <SpecifyFormat>N</SpecifyFormat> | |
| 339 | + <date_time_format/> | |
| 340 | + <sheetname>Sheet1</sheetname> | |
| 341 | + <autosizecolums>N</autosizecolums> | |
| 342 | + <nullisblank>N</nullisblank> | |
| 343 | + <protect_sheet>N</protect_sheet> | |
| 344 | + <password>Encrypted </password> | |
| 345 | + <splitevery>0</splitevery> | |
| 346 | + <usetempfiles>N</usetempfiles> | |
| 347 | + <tempdirectory/> | |
| 348 | + </file> | |
| 349 | + <template> | |
| 350 | + <enabled>N</enabled> | |
| 351 | + <append>N</append> | |
| 352 | + <filename>template.xls</filename> | |
| 353 | + </template> | |
| 354 | + <fields> | |
| 355 | + <field> | |
| 356 | + <name>lp</name> | |
| 357 | + <type>String</type> | |
| 358 | + <format/> | |
| 359 | + </field> | |
| 360 | + <field> | |
| 361 | + <name>fcno1</name> | |
| 362 | + <type>String</type> | |
| 363 | + <format/> | |
| 364 | + </field> | |
| 365 | + <field> | |
| 366 | + <name>fcno2</name> | |
| 367 | + <type>String</type> | |
| 368 | + <format/> | |
| 369 | + </field> | |
| 370 | + <field> | |
| 371 | + <name>fcno3</name> | |
| 372 | + <type>String</type> | |
| 373 | + <format/> | |
| 374 | + </field> | |
| 375 | + <field> | |
| 376 | + <name>fcno4</name> | |
| 377 | + <type>String</type> | |
| 378 | + <format/> | |
| 379 | + </field> | |
| 380 | + <field> | |
| 381 | + <name>fcno5</name> | |
| 382 | + <type>String</type> | |
| 383 | + <format/> | |
| 384 | + </field> | |
| 385 | + <field> | |
| 386 | + <name>fcno6</name> | |
| 387 | + <type>String</type> | |
| 388 | + <format/> | |
| 389 | + </field> | |
| 390 | + <field> | |
| 391 | + <name>fcno7</name> | |
| 392 | + <type>String</type> | |
| 393 | + <format/> | |
| 394 | + </field> | |
| 395 | + <field> | |
| 396 | + <name>fcno8</name> | |
| 397 | + <type>String</type> | |
| 398 | + <format/> | |
| 399 | + </field> | |
| 400 | + <field> | |
| 401 | + <name>fcno9</name> | |
| 402 | + <type>String</type> | |
| 403 | + <format/> | |
| 404 | + </field> | |
| 405 | + <field> | |
| 406 | + <name>fcno10</name> | |
| 407 | + <type>String</type> | |
| 408 | + <format/> | |
| 409 | + </field> | |
| 410 | + <field> | |
| 411 | + <name>fcno11</name> | |
| 412 | + <type>String</type> | |
| 413 | + <format/> | |
| 414 | + </field> | |
| 415 | + <field> | |
| 416 | + <name>fcno12</name> | |
| 417 | + <type>String</type> | |
| 418 | + <format/> | |
| 419 | + </field> | |
| 420 | + <field> | |
| 421 | + <name>fcno13</name> | |
| 422 | + <type>String</type> | |
| 423 | + <format/> | |
| 424 | + </field> | |
| 425 | + <field> | |
| 426 | + <name>fcno14</name> | |
| 427 | + <type>String</type> | |
| 428 | + <format/> | |
| 429 | + </field> | |
| 430 | + <field> | |
| 431 | + <name>fcno15</name> | |
| 432 | + <type>String</type> | |
| 433 | + <format/> | |
| 434 | + </field> | |
| 435 | + <field> | |
| 436 | + <name>fcno16</name> | |
| 437 | + <type>String</type> | |
| 438 | + <format/> | |
| 439 | + </field> | |
| 440 | + <field> | |
| 441 | + <name>fcno17</name> | |
| 442 | + <type>String</type> | |
| 443 | + <format/> | |
| 444 | + </field> | |
| 445 | + <field> | |
| 446 | + <name>fcno18</name> | |
| 447 | + <type>String</type> | |
| 448 | + <format/> | |
| 449 | + </field> | |
| 450 | + <field> | |
| 451 | + <name>fcno19</name> | |
| 452 | + <type>String</type> | |
| 453 | + <format/> | |
| 454 | + </field> | |
| 455 | + <field> | |
| 456 | + <name>fcno20</name> | |
| 457 | + <type>String</type> | |
| 458 | + <format/> | |
| 459 | + </field> | |
| 460 | + <field> | |
| 461 | + <name>fcno21</name> | |
| 462 | + <type>String</type> | |
| 463 | + <format/> | |
| 464 | + </field> | |
| 465 | + <field> | |
| 466 | + <name>fcno22</name> | |
| 467 | + <type>String</type> | |
| 468 | + <format/> | |
| 469 | + </field> | |
| 470 | + <field> | |
| 471 | + <name>fcno23</name> | |
| 472 | + <type>String</type> | |
| 473 | + <format/> | |
| 474 | + </field> | |
| 475 | + <field> | |
| 476 | + <name>fcno24</name> | |
| 477 | + <type>String</type> | |
| 478 | + <format/> | |
| 479 | + </field> | |
| 480 | + <field> | |
| 481 | + <name>fcno25</name> | |
| 482 | + <type>String</type> | |
| 483 | + <format/> | |
| 484 | + </field> | |
| 485 | + <field> | |
| 486 | + <name>fcno26</name> | |
| 487 | + <type>String</type> | |
| 488 | + <format/> | |
| 489 | + </field> | |
| 490 | + <field> | |
| 491 | + <name>fcno27</name> | |
| 492 | + <type>String</type> | |
| 493 | + <format/> | |
| 494 | + </field> | |
| 495 | + <field> | |
| 496 | + <name>fcno28</name> | |
| 497 | + <type>String</type> | |
| 498 | + <format/> | |
| 499 | + </field> | |
| 500 | + <field> | |
| 501 | + <name>fcno29</name> | |
| 502 | + <type>String</type> | |
| 503 | + <format/> | |
| 504 | + </field> | |
| 505 | + <field> | |
| 506 | + <name>fcno30</name> | |
| 507 | + <type>String</type> | |
| 508 | + <format/> | |
| 509 | + </field> | |
| 510 | + <field> | |
| 511 | + <name>fcno31</name> | |
| 512 | + <type>String</type> | |
| 513 | + <format/> | |
| 514 | + </field> | |
| 515 | + <field> | |
| 516 | + <name>fcno32</name> | |
| 517 | + <type>String</type> | |
| 518 | + <format/> | |
| 519 | + </field> | |
| 520 | + <field> | |
| 521 | + <name>fcno33</name> | |
| 522 | + <type>String</type> | |
| 523 | + <format/> | |
| 524 | + </field> | |
| 525 | + <field> | |
| 526 | + <name>fcno34</name> | |
| 527 | + <type>String</type> | |
| 528 | + <format/> | |
| 529 | + </field> | |
| 530 | + <field> | |
| 531 | + <name>fcno35</name> | |
| 532 | + <type>String</type> | |
| 533 | + <format/> | |
| 534 | + </field> | |
| 535 | + <field> | |
| 536 | + <name>fcno36</name> | |
| 537 | + <type>String</type> | |
| 538 | + <format/> | |
| 539 | + </field> | |
| 540 | + <field> | |
| 541 | + <name>fcno37</name> | |
| 542 | + <type>String</type> | |
| 543 | + <format/> | |
| 544 | + </field> | |
| 545 | + <field> | |
| 546 | + <name>fcno38</name> | |
| 547 | + <type>String</type> | |
| 548 | + <format/> | |
| 549 | + </field> | |
| 550 | + <field> | |
| 551 | + <name>fcno39</name> | |
| 552 | + <type>String</type> | |
| 553 | + <format/> | |
| 554 | + </field> | |
| 555 | + <field> | |
| 556 | + <name>fcno40</name> | |
| 557 | + <type>String</type> | |
| 558 | + <format/> | |
| 559 | + </field> | |
| 560 | + <field> | |
| 561 | + <name>fcno41</name> | |
| 562 | + <type>String</type> | |
| 563 | + <format/> | |
| 564 | + </field> | |
| 565 | + <field> | |
| 566 | + <name>fcno42</name> | |
| 567 | + <type>String</type> | |
| 568 | + <format/> | |
| 569 | + </field> | |
| 570 | + <field> | |
| 571 | + <name>fcno43</name> | |
| 572 | + <type>String</type> | |
| 573 | + <format/> | |
| 574 | + </field> | |
| 575 | + <field> | |
| 576 | + <name>fcno44</name> | |
| 577 | + <type>String</type> | |
| 578 | + <format/> | |
| 579 | + </field> | |
| 580 | + <field> | |
| 581 | + <name>fcno45</name> | |
| 582 | + <type>String</type> | |
| 583 | + <format/> | |
| 584 | + </field> | |
| 585 | + <field> | |
| 586 | + <name>fcno46</name> | |
| 587 | + <type>String</type> | |
| 588 | + <format/> | |
| 589 | + </field> | |
| 590 | + <field> | |
| 591 | + <name>fcno47</name> | |
| 592 | + <type>String</type> | |
| 593 | + <format/> | |
| 594 | + </field> | |
| 595 | + <field> | |
| 596 | + <name>fcno48</name> | |
| 597 | + <type>String</type> | |
| 598 | + <format/> | |
| 599 | + </field> | |
| 600 | + <field> | |
| 601 | + <name>fcno49</name> | |
| 602 | + <type>String</type> | |
| 603 | + <format/> | |
| 604 | + </field> | |
| 605 | + <field> | |
| 606 | + <name>fcno50</name> | |
| 607 | + <type>String</type> | |
| 608 | + <format/> | |
| 609 | + </field> | |
| 610 | + <field> | |
| 611 | + <name>fcno51</name> | |
| 612 | + <type>String</type> | |
| 613 | + <format/> | |
| 614 | + </field> | |
| 615 | + <field> | |
| 616 | + <name>fcno52</name> | |
| 617 | + <type>String</type> | |
| 618 | + <format/> | |
| 619 | + </field> | |
| 620 | + <field> | |
| 621 | + <name>fcno53</name> | |
| 622 | + <type>String</type> | |
| 623 | + <format/> | |
| 624 | + </field> | |
| 625 | + <field> | |
| 626 | + <name>fcno54</name> | |
| 627 | + <type>String</type> | |
| 628 | + <format/> | |
| 629 | + </field> | |
| 630 | + <field> | |
| 631 | + <name>fcno55</name> | |
| 632 | + <type>String</type> | |
| 633 | + <format/> | |
| 634 | + </field> | |
| 635 | + <field> | |
| 636 | + <name>fcno56</name> | |
| 637 | + <type>String</type> | |
| 638 | + <format/> | |
| 639 | + </field> | |
| 640 | + <field> | |
| 641 | + <name>fcno57</name> | |
| 642 | + <type>String</type> | |
| 643 | + <format/> | |
| 644 | + </field> | |
| 645 | + <field> | |
| 646 | + <name>fcno58</name> | |
| 647 | + <type>String</type> | |
| 648 | + <format/> | |
| 649 | + </field> | |
| 650 | + <field> | |
| 651 | + <name>fcno59</name> | |
| 652 | + <type>String</type> | |
| 653 | + <format/> | |
| 654 | + </field> | |
| 655 | + <field> | |
| 656 | + <name>fcno60</name> | |
| 657 | + <type>String</type> | |
| 658 | + <format/> | |
| 659 | + </field> | |
| 660 | + <field> | |
| 661 | + <name>fcno61</name> | |
| 662 | + <type>String</type> | |
| 663 | + <format/> | |
| 664 | + </field> | |
| 665 | + <field> | |
| 666 | + <name>fcno62</name> | |
| 667 | + <type>String</type> | |
| 668 | + <format/> | |
| 669 | + </field> | |
| 670 | + <field> | |
| 671 | + <name>fcno63</name> | |
| 672 | + <type>String</type> | |
| 673 | + <format/> | |
| 674 | + </field> | |
| 675 | + <field> | |
| 676 | + <name>fcno64</name> | |
| 677 | + <type>String</type> | |
| 678 | + <format/> | |
| 679 | + </field> | |
| 680 | + <field> | |
| 681 | + <name>fcno65</name> | |
| 682 | + <type>String</type> | |
| 683 | + <format/> | |
| 684 | + </field> | |
| 685 | + <field> | |
| 686 | + <name>fcno66</name> | |
| 687 | + <type>String</type> | |
| 688 | + <format/> | |
| 689 | + </field> | |
| 690 | + <field> | |
| 691 | + <name>fcno67</name> | |
| 692 | + <type>String</type> | |
| 693 | + <format/> | |
| 694 | + </field> | |
| 695 | + <field> | |
| 696 | + <name>fcno68</name> | |
| 697 | + <type>String</type> | |
| 698 | + <format/> | |
| 699 | + </field> | |
| 700 | + <field> | |
| 701 | + <name>fcno69</name> | |
| 702 | + <type>String</type> | |
| 703 | + <format/> | |
| 704 | + </field> | |
| 705 | + <field> | |
| 706 | + <name>fcno70</name> | |
| 707 | + <type>String</type> | |
| 708 | + <format/> | |
| 709 | + </field> | |
| 710 | + </fields> | |
| 711 | + <custom> | |
| 712 | + <header_font_name>arial</header_font_name> | |
| 713 | + <header_font_size>10</header_font_size> | |
| 714 | + <header_font_bold>N</header_font_bold> | |
| 715 | + <header_font_italic>N</header_font_italic> | |
| 716 | + <header_font_underline>no</header_font_underline> | |
| 717 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 718 | + <header_font_color>black</header_font_color> | |
| 719 | + <header_background_color>none</header_background_color> | |
| 720 | + <header_row_height>255</header_row_height> | |
| 721 | + <header_alignment>left</header_alignment> | |
| 722 | + <header_image/> | |
| 723 | + <row_font_name>arial</row_font_name> | |
| 724 | + <row_font_size>10</row_font_size> | |
| 725 | + <row_font_color>black</row_font_color> | |
| 726 | + <row_background_color>none</row_background_color> | |
| 727 | + </custom> | |
| 728 | + <cluster_schema/> | |
| 729 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 730 | + <xloc>692</xloc> | |
| 731 | + <yloc>514</yloc> | |
| 732 | + <draw>Y</draw> | |
| 733 | + </GUI> | |
| 734 | + </step> | |
| 735 | + | |
| 736 | + <step> | |
| 737 | + <name>列转行</name> | |
| 738 | + <type>Denormaliser</type> | |
| 739 | + <description/> | |
| 740 | + <distribute>N</distribute> | |
| 741 | + <custom_distribution/> | |
| 742 | + <copies>1</copies> | |
| 743 | + <partitioning> | |
| 744 | + <method>none</method> | |
| 745 | + <schema_name/> | |
| 746 | + </partitioning> | |
| 747 | + <key_field>fcno</key_field> | |
| 748 | + <group> | |
| 749 | + <field> | |
| 750 | + <name>lp</name> | |
| 751 | + </field> | |
| 752 | + </group> | |
| 753 | + <fields> | |
| 754 | + <field> | |
| 755 | + <field_name>all_content</field_name> | |
| 756 | + <key_value>1</key_value> | |
| 757 | + <target_name>fcno1</target_name> | |
| 758 | + <target_type>String</target_type> | |
| 759 | + <target_format/> | |
| 760 | + <target_length>-1</target_length> | |
| 761 | + <target_precision>-1</target_precision> | |
| 762 | + <target_decimal_symbol/> | |
| 763 | + <target_grouping_symbol/> | |
| 764 | + <target_currency_symbol/> | |
| 765 | + <target_null_string/> | |
| 766 | + <target_aggregation_type>-</target_aggregation_type> | |
| 767 | + </field> | |
| 768 | + <field> | |
| 769 | + <field_name>all_content</field_name> | |
| 770 | + <key_value>2</key_value> | |
| 771 | + <target_name>fcno2</target_name> | |
| 772 | + <target_type>String</target_type> | |
| 773 | + <target_format/> | |
| 774 | + <target_length>-1</target_length> | |
| 775 | + <target_precision>-1</target_precision> | |
| 776 | + <target_decimal_symbol/> | |
| 777 | + <target_grouping_symbol/> | |
| 778 | + <target_currency_symbol/> | |
| 779 | + <target_null_string/> | |
| 780 | + <target_aggregation_type>-</target_aggregation_type> | |
| 781 | + </field> | |
| 782 | + <field> | |
| 783 | + <field_name>all_content</field_name> | |
| 784 | + <key_value>3</key_value> | |
| 785 | + <target_name>fcno3</target_name> | |
| 786 | + <target_type>String</target_type> | |
| 787 | + <target_format/> | |
| 788 | + <target_length>-1</target_length> | |
| 789 | + <target_precision>-1</target_precision> | |
| 790 | + <target_decimal_symbol/> | |
| 791 | + <target_grouping_symbol/> | |
| 792 | + <target_currency_symbol/> | |
| 793 | + <target_null_string/> | |
| 794 | + <target_aggregation_type>-</target_aggregation_type> | |
| 795 | + </field> | |
| 796 | + <field> | |
| 797 | + <field_name>all_content</field_name> | |
| 798 | + <key_value>4</key_value> | |
| 799 | + <target_name>fcno4</target_name> | |
| 800 | + <target_type>String</target_type> | |
| 801 | + <target_format/> | |
| 802 | + <target_length>-1</target_length> | |
| 803 | + <target_precision>-1</target_precision> | |
| 804 | + <target_decimal_symbol/> | |
| 805 | + <target_grouping_symbol/> | |
| 806 | + <target_currency_symbol/> | |
| 807 | + <target_null_string/> | |
| 808 | + <target_aggregation_type>-</target_aggregation_type> | |
| 809 | + </field> | |
| 810 | + <field> | |
| 811 | + <field_name>all_content</field_name> | |
| 812 | + <key_value>5</key_value> | |
| 813 | + <target_name>fcno5</target_name> | |
| 814 | + <target_type>String</target_type> | |
| 815 | + <target_format/> | |
| 816 | + <target_length>-1</target_length> | |
| 817 | + <target_precision>-1</target_precision> | |
| 818 | + <target_decimal_symbol/> | |
| 819 | + <target_grouping_symbol/> | |
| 820 | + <target_currency_symbol/> | |
| 821 | + <target_null_string/> | |
| 822 | + <target_aggregation_type>-</target_aggregation_type> | |
| 823 | + </field> | |
| 824 | + <field> | |
| 825 | + <field_name>all_content</field_name> | |
| 826 | + <key_value>6</key_value> | |
| 827 | + <target_name>fcno6</target_name> | |
| 828 | + <target_type>String</target_type> | |
| 829 | + <target_format/> | |
| 830 | + <target_length>-1</target_length> | |
| 831 | + <target_precision>-1</target_precision> | |
| 832 | + <target_decimal_symbol/> | |
| 833 | + <target_grouping_symbol/> | |
| 834 | + <target_currency_symbol/> | |
| 835 | + <target_null_string/> | |
| 836 | + <target_aggregation_type>-</target_aggregation_type> | |
| 837 | + </field> | |
| 838 | + <field> | |
| 839 | + <field_name>all_content</field_name> | |
| 840 | + <key_value>7</key_value> | |
| 841 | + <target_name>fcno7</target_name> | |
| 842 | + <target_type>String</target_type> | |
| 843 | + <target_format/> | |
| 844 | + <target_length>-1</target_length> | |
| 845 | + <target_precision>-1</target_precision> | |
| 846 | + <target_decimal_symbol/> | |
| 847 | + <target_grouping_symbol/> | |
| 848 | + <target_currency_symbol/> | |
| 849 | + <target_null_string/> | |
| 850 | + <target_aggregation_type>-</target_aggregation_type> | |
| 851 | + </field> | |
| 852 | + <field> | |
| 853 | + <field_name>all_content</field_name> | |
| 854 | + <key_value>8</key_value> | |
| 855 | + <target_name>fcno8</target_name> | |
| 856 | + <target_type>String</target_type> | |
| 857 | + <target_format/> | |
| 858 | + <target_length>-1</target_length> | |
| 859 | + <target_precision>-1</target_precision> | |
| 860 | + <target_decimal_symbol/> | |
| 861 | + <target_grouping_symbol/> | |
| 862 | + <target_currency_symbol/> | |
| 863 | + <target_null_string/> | |
| 864 | + <target_aggregation_type>-</target_aggregation_type> | |
| 865 | + </field> | |
| 866 | + <field> | |
| 867 | + <field_name>all_content</field_name> | |
| 868 | + <key_value>9</key_value> | |
| 869 | + <target_name>fcno9</target_name> | |
| 870 | + <target_type>String</target_type> | |
| 871 | + <target_format/> | |
| 872 | + <target_length>-1</target_length> | |
| 873 | + <target_precision>-1</target_precision> | |
| 874 | + <target_decimal_symbol/> | |
| 875 | + <target_grouping_symbol/> | |
| 876 | + <target_currency_symbol/> | |
| 877 | + <target_null_string/> | |
| 878 | + <target_aggregation_type>-</target_aggregation_type> | |
| 879 | + </field> | |
| 880 | + <field> | |
| 881 | + <field_name>all_content</field_name> | |
| 882 | + <key_value>10</key_value> | |
| 883 | + <target_name>fcno10</target_name> | |
| 884 | + <target_type>String</target_type> | |
| 885 | + <target_format/> | |
| 886 | + <target_length>-1</target_length> | |
| 887 | + <target_precision>-1</target_precision> | |
| 888 | + <target_decimal_symbol/> | |
| 889 | + <target_grouping_symbol/> | |
| 890 | + <target_currency_symbol/> | |
| 891 | + <target_null_string/> | |
| 892 | + <target_aggregation_type>-</target_aggregation_type> | |
| 893 | + </field> | |
| 894 | + <field> | |
| 895 | + <field_name>all_content</field_name> | |
| 896 | + <key_value>11</key_value> | |
| 897 | + <target_name>fcno11</target_name> | |
| 898 | + <target_type>String</target_type> | |
| 899 | + <target_format/> | |
| 900 | + <target_length>-1</target_length> | |
| 901 | + <target_precision>-1</target_precision> | |
| 902 | + <target_decimal_symbol/> | |
| 903 | + <target_grouping_symbol/> | |
| 904 | + <target_currency_symbol/> | |
| 905 | + <target_null_string/> | |
| 906 | + <target_aggregation_type>-</target_aggregation_type> | |
| 907 | + </field> | |
| 908 | + <field> | |
| 909 | + <field_name>all_content</field_name> | |
| 910 | + <key_value>12</key_value> | |
| 911 | + <target_name>fcno12</target_name> | |
| 912 | + <target_type>String</target_type> | |
| 913 | + <target_format/> | |
| 914 | + <target_length>-1</target_length> | |
| 915 | + <target_precision>-1</target_precision> | |
| 916 | + <target_decimal_symbol/> | |
| 917 | + <target_grouping_symbol/> | |
| 918 | + <target_currency_symbol/> | |
| 919 | + <target_null_string/> | |
| 920 | + <target_aggregation_type>-</target_aggregation_type> | |
| 921 | + </field> | |
| 922 | + <field> | |
| 923 | + <field_name>all_content</field_name> | |
| 924 | + <key_value>13</key_value> | |
| 925 | + <target_name>fcno13</target_name> | |
| 926 | + <target_type>String</target_type> | |
| 927 | + <target_format/> | |
| 928 | + <target_length>-1</target_length> | |
| 929 | + <target_precision>-1</target_precision> | |
| 930 | + <target_decimal_symbol/> | |
| 931 | + <target_grouping_symbol/> | |
| 932 | + <target_currency_symbol/> | |
| 933 | + <target_null_string/> | |
| 934 | + <target_aggregation_type>-</target_aggregation_type> | |
| 935 | + </field> | |
| 936 | + <field> | |
| 937 | + <field_name>all_content</field_name> | |
| 938 | + <key_value>14</key_value> | |
| 939 | + <target_name>fcno14</target_name> | |
| 940 | + <target_type>String</target_type> | |
| 941 | + <target_format/> | |
| 942 | + <target_length>-1</target_length> | |
| 943 | + <target_precision>-1</target_precision> | |
| 944 | + <target_decimal_symbol/> | |
| 945 | + <target_grouping_symbol/> | |
| 946 | + <target_currency_symbol/> | |
| 947 | + <target_null_string/> | |
| 948 | + <target_aggregation_type>-</target_aggregation_type> | |
| 949 | + </field> | |
| 950 | + <field> | |
| 951 | + <field_name>all_content</field_name> | |
| 952 | + <key_value>15</key_value> | |
| 953 | + <target_name>fcno15</target_name> | |
| 954 | + <target_type>String</target_type> | |
| 955 | + <target_format/> | |
| 956 | + <target_length>-1</target_length> | |
| 957 | + <target_precision>-1</target_precision> | |
| 958 | + <target_decimal_symbol/> | |
| 959 | + <target_grouping_symbol/> | |
| 960 | + <target_currency_symbol/> | |
| 961 | + <target_null_string/> | |
| 962 | + <target_aggregation_type>-</target_aggregation_type> | |
| 963 | + </field> | |
| 964 | + <field> | |
| 965 | + <field_name>all_content</field_name> | |
| 966 | + <key_value>16</key_value> | |
| 967 | + <target_name>fcno16</target_name> | |
| 968 | + <target_type>String</target_type> | |
| 969 | + <target_format/> | |
| 970 | + <target_length>-1</target_length> | |
| 971 | + <target_precision>-1</target_precision> | |
| 972 | + <target_decimal_symbol/> | |
| 973 | + <target_grouping_symbol/> | |
| 974 | + <target_currency_symbol/> | |
| 975 | + <target_null_string/> | |
| 976 | + <target_aggregation_type>-</target_aggregation_type> | |
| 977 | + </field> | |
| 978 | + <field> | |
| 979 | + <field_name>all_content</field_name> | |
| 980 | + <key_value>17</key_value> | |
| 981 | + <target_name>fcno17</target_name> | |
| 982 | + <target_type>String</target_type> | |
| 983 | + <target_format/> | |
| 984 | + <target_length>-1</target_length> | |
| 985 | + <target_precision>-1</target_precision> | |
| 986 | + <target_decimal_symbol/> | |
| 987 | + <target_grouping_symbol/> | |
| 988 | + <target_currency_symbol/> | |
| 989 | + <target_null_string/> | |
| 990 | + <target_aggregation_type>-</target_aggregation_type> | |
| 991 | + </field> | |
| 992 | + <field> | |
| 993 | + <field_name>all_content</field_name> | |
| 994 | + <key_value>18</key_value> | |
| 995 | + <target_name>fcno18</target_name> | |
| 996 | + <target_type>String</target_type> | |
| 997 | + <target_format/> | |
| 998 | + <target_length>-1</target_length> | |
| 999 | + <target_precision>-1</target_precision> | |
| 1000 | + <target_decimal_symbol/> | |
| 1001 | + <target_grouping_symbol/> | |
| 1002 | + <target_currency_symbol/> | |
| 1003 | + <target_null_string/> | |
| 1004 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1005 | + </field> | |
| 1006 | + <field> | |
| 1007 | + <field_name>all_content</field_name> | |
| 1008 | + <key_value>19</key_value> | |
| 1009 | + <target_name>fcno19</target_name> | |
| 1010 | + <target_type>String</target_type> | |
| 1011 | + <target_format/> | |
| 1012 | + <target_length>-1</target_length> | |
| 1013 | + <target_precision>-1</target_precision> | |
| 1014 | + <target_decimal_symbol/> | |
| 1015 | + <target_grouping_symbol/> | |
| 1016 | + <target_currency_symbol/> | |
| 1017 | + <target_null_string/> | |
| 1018 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1019 | + </field> | |
| 1020 | + <field> | |
| 1021 | + <field_name>all_content</field_name> | |
| 1022 | + <key_value>20</key_value> | |
| 1023 | + <target_name>fcno20</target_name> | |
| 1024 | + <target_type>String</target_type> | |
| 1025 | + <target_format/> | |
| 1026 | + <target_length>-1</target_length> | |
| 1027 | + <target_precision>-1</target_precision> | |
| 1028 | + <target_decimal_symbol/> | |
| 1029 | + <target_grouping_symbol/> | |
| 1030 | + <target_currency_symbol/> | |
| 1031 | + <target_null_string/> | |
| 1032 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1033 | + </field> | |
| 1034 | + <field> | |
| 1035 | + <field_name>all_content</field_name> | |
| 1036 | + <key_value>21</key_value> | |
| 1037 | + <target_name>fcno21</target_name> | |
| 1038 | + <target_type>String</target_type> | |
| 1039 | + <target_format/> | |
| 1040 | + <target_length>-1</target_length> | |
| 1041 | + <target_precision>-1</target_precision> | |
| 1042 | + <target_decimal_symbol/> | |
| 1043 | + <target_grouping_symbol/> | |
| 1044 | + <target_currency_symbol/> | |
| 1045 | + <target_null_string/> | |
| 1046 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1047 | + </field> | |
| 1048 | + <field> | |
| 1049 | + <field_name>all_content</field_name> | |
| 1050 | + <key_value>22</key_value> | |
| 1051 | + <target_name>fcno22</target_name> | |
| 1052 | + <target_type>String</target_type> | |
| 1053 | + <target_format/> | |
| 1054 | + <target_length>-1</target_length> | |
| 1055 | + <target_precision>-1</target_precision> | |
| 1056 | + <target_decimal_symbol/> | |
| 1057 | + <target_grouping_symbol/> | |
| 1058 | + <target_currency_symbol/> | |
| 1059 | + <target_null_string/> | |
| 1060 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1061 | + </field> | |
| 1062 | + <field> | |
| 1063 | + <field_name>all_content</field_name> | |
| 1064 | + <key_value>23</key_value> | |
| 1065 | + <target_name>fcno23</target_name> | |
| 1066 | + <target_type>String</target_type> | |
| 1067 | + <target_format/> | |
| 1068 | + <target_length>-1</target_length> | |
| 1069 | + <target_precision>-1</target_precision> | |
| 1070 | + <target_decimal_symbol/> | |
| 1071 | + <target_grouping_symbol/> | |
| 1072 | + <target_currency_symbol/> | |
| 1073 | + <target_null_string/> | |
| 1074 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1075 | + </field> | |
| 1076 | + <field> | |
| 1077 | + <field_name>all_content</field_name> | |
| 1078 | + <key_value>24</key_value> | |
| 1079 | + <target_name>fcno24</target_name> | |
| 1080 | + <target_type>String</target_type> | |
| 1081 | + <target_format/> | |
| 1082 | + <target_length>-1</target_length> | |
| 1083 | + <target_precision>-1</target_precision> | |
| 1084 | + <target_decimal_symbol/> | |
| 1085 | + <target_grouping_symbol/> | |
| 1086 | + <target_currency_symbol/> | |
| 1087 | + <target_null_string/> | |
| 1088 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1089 | + </field> | |
| 1090 | + <field> | |
| 1091 | + <field_name>all_content</field_name> | |
| 1092 | + <key_value>25</key_value> | |
| 1093 | + <target_name>fcno25</target_name> | |
| 1094 | + <target_type>String</target_type> | |
| 1095 | + <target_format/> | |
| 1096 | + <target_length>-1</target_length> | |
| 1097 | + <target_precision>-1</target_precision> | |
| 1098 | + <target_decimal_symbol/> | |
| 1099 | + <target_grouping_symbol/> | |
| 1100 | + <target_currency_symbol/> | |
| 1101 | + <target_null_string/> | |
| 1102 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1103 | + </field> | |
| 1104 | + <field> | |
| 1105 | + <field_name>all_content</field_name> | |
| 1106 | + <key_value>26</key_value> | |
| 1107 | + <target_name>fcno26</target_name> | |
| 1108 | + <target_type>String</target_type> | |
| 1109 | + <target_format/> | |
| 1110 | + <target_length>-1</target_length> | |
| 1111 | + <target_precision>-1</target_precision> | |
| 1112 | + <target_decimal_symbol/> | |
| 1113 | + <target_grouping_symbol/> | |
| 1114 | + <target_currency_symbol/> | |
| 1115 | + <target_null_string/> | |
| 1116 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1117 | + </field> | |
| 1118 | + <field> | |
| 1119 | + <field_name>all_content</field_name> | |
| 1120 | + <key_value>27</key_value> | |
| 1121 | + <target_name>fcno27</target_name> | |
| 1122 | + <target_type>String</target_type> | |
| 1123 | + <target_format/> | |
| 1124 | + <target_length>-1</target_length> | |
| 1125 | + <target_precision>-1</target_precision> | |
| 1126 | + <target_decimal_symbol/> | |
| 1127 | + <target_grouping_symbol/> | |
| 1128 | + <target_currency_symbol/> | |
| 1129 | + <target_null_string/> | |
| 1130 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1131 | + </field> | |
| 1132 | + <field> | |
| 1133 | + <field_name>all_content</field_name> | |
| 1134 | + <key_value>28</key_value> | |
| 1135 | + <target_name>fcno28</target_name> | |
| 1136 | + <target_type>String</target_type> | |
| 1137 | + <target_format/> | |
| 1138 | + <target_length>-1</target_length> | |
| 1139 | + <target_precision>-1</target_precision> | |
| 1140 | + <target_decimal_symbol/> | |
| 1141 | + <target_grouping_symbol/> | |
| 1142 | + <target_currency_symbol/> | |
| 1143 | + <target_null_string/> | |
| 1144 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1145 | + </field> | |
| 1146 | + <field> | |
| 1147 | + <field_name>all_content</field_name> | |
| 1148 | + <key_value>29</key_value> | |
| 1149 | + <target_name>fcno29</target_name> | |
| 1150 | + <target_type>String</target_type> | |
| 1151 | + <target_format/> | |
| 1152 | + <target_length>-1</target_length> | |
| 1153 | + <target_precision>-1</target_precision> | |
| 1154 | + <target_decimal_symbol/> | |
| 1155 | + <target_grouping_symbol/> | |
| 1156 | + <target_currency_symbol/> | |
| 1157 | + <target_null_string/> | |
| 1158 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1159 | + </field> | |
| 1160 | + <field> | |
| 1161 | + <field_name>all_content</field_name> | |
| 1162 | + <key_value>30</key_value> | |
| 1163 | + <target_name>fcno30</target_name> | |
| 1164 | + <target_type>String</target_type> | |
| 1165 | + <target_format/> | |
| 1166 | + <target_length>-1</target_length> | |
| 1167 | + <target_precision>-1</target_precision> | |
| 1168 | + <target_decimal_symbol/> | |
| 1169 | + <target_grouping_symbol/> | |
| 1170 | + <target_currency_symbol/> | |
| 1171 | + <target_null_string/> | |
| 1172 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1173 | + </field> | |
| 1174 | + <field> | |
| 1175 | + <field_name>all_content</field_name> | |
| 1176 | + <key_value>31</key_value> | |
| 1177 | + <target_name>fcno31</target_name> | |
| 1178 | + <target_type>String</target_type> | |
| 1179 | + <target_format/> | |
| 1180 | + <target_length>-1</target_length> | |
| 1181 | + <target_precision>-1</target_precision> | |
| 1182 | + <target_decimal_symbol/> | |
| 1183 | + <target_grouping_symbol/> | |
| 1184 | + <target_currency_symbol/> | |
| 1185 | + <target_null_string/> | |
| 1186 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1187 | + </field> | |
| 1188 | + <field> | |
| 1189 | + <field_name>all_content</field_name> | |
| 1190 | + <key_value>32</key_value> | |
| 1191 | + <target_name>fcno32</target_name> | |
| 1192 | + <target_type>String</target_type> | |
| 1193 | + <target_format/> | |
| 1194 | + <target_length>-1</target_length> | |
| 1195 | + <target_precision>-1</target_precision> | |
| 1196 | + <target_decimal_symbol/> | |
| 1197 | + <target_grouping_symbol/> | |
| 1198 | + <target_currency_symbol/> | |
| 1199 | + <target_null_string/> | |
| 1200 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1201 | + </field> | |
| 1202 | + <field> | |
| 1203 | + <field_name>all_content</field_name> | |
| 1204 | + <key_value>33</key_value> | |
| 1205 | + <target_name>fcno33</target_name> | |
| 1206 | + <target_type>String</target_type> | |
| 1207 | + <target_format/> | |
| 1208 | + <target_length>-1</target_length> | |
| 1209 | + <target_precision>-1</target_precision> | |
| 1210 | + <target_decimal_symbol/> | |
| 1211 | + <target_grouping_symbol/> | |
| 1212 | + <target_currency_symbol/> | |
| 1213 | + <target_null_string/> | |
| 1214 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1215 | + </field> | |
| 1216 | + <field> | |
| 1217 | + <field_name>all_content</field_name> | |
| 1218 | + <key_value>34</key_value> | |
| 1219 | + <target_name>fcno34</target_name> | |
| 1220 | + <target_type>String</target_type> | |
| 1221 | + <target_format/> | |
| 1222 | + <target_length>-1</target_length> | |
| 1223 | + <target_precision>-1</target_precision> | |
| 1224 | + <target_decimal_symbol/> | |
| 1225 | + <target_grouping_symbol/> | |
| 1226 | + <target_currency_symbol/> | |
| 1227 | + <target_null_string/> | |
| 1228 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1229 | + </field> | |
| 1230 | + <field> | |
| 1231 | + <field_name>all_content</field_name> | |
| 1232 | + <key_value>35</key_value> | |
| 1233 | + <target_name>fcno35</target_name> | |
| 1234 | + <target_type>String</target_type> | |
| 1235 | + <target_format/> | |
| 1236 | + <target_length>-1</target_length> | |
| 1237 | + <target_precision>-1</target_precision> | |
| 1238 | + <target_decimal_symbol/> | |
| 1239 | + <target_grouping_symbol/> | |
| 1240 | + <target_currency_symbol/> | |
| 1241 | + <target_null_string/> | |
| 1242 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1243 | + </field> | |
| 1244 | + <field> | |
| 1245 | + <field_name>all_content</field_name> | |
| 1246 | + <key_value>36</key_value> | |
| 1247 | + <target_name>fcno36</target_name> | |
| 1248 | + <target_type>String</target_type> | |
| 1249 | + <target_format/> | |
| 1250 | + <target_length>-1</target_length> | |
| 1251 | + <target_precision>-1</target_precision> | |
| 1252 | + <target_decimal_symbol/> | |
| 1253 | + <target_grouping_symbol/> | |
| 1254 | + <target_currency_symbol/> | |
| 1255 | + <target_null_string/> | |
| 1256 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1257 | + </field> | |
| 1258 | + <field> | |
| 1259 | + <field_name>all_content</field_name> | |
| 1260 | + <key_value>37</key_value> | |
| 1261 | + <target_name>fcno37</target_name> | |
| 1262 | + <target_type>String</target_type> | |
| 1263 | + <target_format/> | |
| 1264 | + <target_length>-1</target_length> | |
| 1265 | + <target_precision>-1</target_precision> | |
| 1266 | + <target_decimal_symbol/> | |
| 1267 | + <target_grouping_symbol/> | |
| 1268 | + <target_currency_symbol/> | |
| 1269 | + <target_null_string/> | |
| 1270 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1271 | + </field> | |
| 1272 | + <field> | |
| 1273 | + <field_name>all_content</field_name> | |
| 1274 | + <key_value>38</key_value> | |
| 1275 | + <target_name>fcno38</target_name> | |
| 1276 | + <target_type>String</target_type> | |
| 1277 | + <target_format/> | |
| 1278 | + <target_length>-1</target_length> | |
| 1279 | + <target_precision>-1</target_precision> | |
| 1280 | + <target_decimal_symbol/> | |
| 1281 | + <target_grouping_symbol/> | |
| 1282 | + <target_currency_symbol/> | |
| 1283 | + <target_null_string/> | |
| 1284 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1285 | + </field> | |
| 1286 | + <field> | |
| 1287 | + <field_name>all_content</field_name> | |
| 1288 | + <key_value>39</key_value> | |
| 1289 | + <target_name>fcno39</target_name> | |
| 1290 | + <target_type>String</target_type> | |
| 1291 | + <target_format/> | |
| 1292 | + <target_length>-1</target_length> | |
| 1293 | + <target_precision>-1</target_precision> | |
| 1294 | + <target_decimal_symbol/> | |
| 1295 | + <target_grouping_symbol/> | |
| 1296 | + <target_currency_symbol/> | |
| 1297 | + <target_null_string/> | |
| 1298 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1299 | + </field> | |
| 1300 | + <field> | |
| 1301 | + <field_name>all_content</field_name> | |
| 1302 | + <key_value>40</key_value> | |
| 1303 | + <target_name>fcno40</target_name> | |
| 1304 | + <target_type>String</target_type> | |
| 1305 | + <target_format/> | |
| 1306 | + <target_length>-1</target_length> | |
| 1307 | + <target_precision>-1</target_precision> | |
| 1308 | + <target_decimal_symbol/> | |
| 1309 | + <target_grouping_symbol/> | |
| 1310 | + <target_currency_symbol/> | |
| 1311 | + <target_null_string/> | |
| 1312 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1313 | + </field> | |
| 1314 | + <field> | |
| 1315 | + <field_name>all_content</field_name> | |
| 1316 | + <key_value>41</key_value> | |
| 1317 | + <target_name>fcno41</target_name> | |
| 1318 | + <target_type>String</target_type> | |
| 1319 | + <target_format/> | |
| 1320 | + <target_length>-1</target_length> | |
| 1321 | + <target_precision>-1</target_precision> | |
| 1322 | + <target_decimal_symbol/> | |
| 1323 | + <target_grouping_symbol/> | |
| 1324 | + <target_currency_symbol/> | |
| 1325 | + <target_null_string/> | |
| 1326 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1327 | + </field> | |
| 1328 | + <field> | |
| 1329 | + <field_name>all_content</field_name> | |
| 1330 | + <key_value>42</key_value> | |
| 1331 | + <target_name>fcno42</target_name> | |
| 1332 | + <target_type>String</target_type> | |
| 1333 | + <target_format/> | |
| 1334 | + <target_length>-1</target_length> | |
| 1335 | + <target_precision>-1</target_precision> | |
| 1336 | + <target_decimal_symbol/> | |
| 1337 | + <target_grouping_symbol/> | |
| 1338 | + <target_currency_symbol/> | |
| 1339 | + <target_null_string/> | |
| 1340 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1341 | + </field> | |
| 1342 | + <field> | |
| 1343 | + <field_name>all_content</field_name> | |
| 1344 | + <key_value>43</key_value> | |
| 1345 | + <target_name>fcno43</target_name> | |
| 1346 | + <target_type>String</target_type> | |
| 1347 | + <target_format/> | |
| 1348 | + <target_length>-1</target_length> | |
| 1349 | + <target_precision>-1</target_precision> | |
| 1350 | + <target_decimal_symbol/> | |
| 1351 | + <target_grouping_symbol/> | |
| 1352 | + <target_currency_symbol/> | |
| 1353 | + <target_null_string/> | |
| 1354 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1355 | + </field> | |
| 1356 | + <field> | |
| 1357 | + <field_name>all_content</field_name> | |
| 1358 | + <key_value>44</key_value> | |
| 1359 | + <target_name>fcno44</target_name> | |
| 1360 | + <target_type>String</target_type> | |
| 1361 | + <target_format/> | |
| 1362 | + <target_length>-1</target_length> | |
| 1363 | + <target_precision>-1</target_precision> | |
| 1364 | + <target_decimal_symbol/> | |
| 1365 | + <target_grouping_symbol/> | |
| 1366 | + <target_currency_symbol/> | |
| 1367 | + <target_null_string/> | |
| 1368 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1369 | + </field> | |
| 1370 | + <field> | |
| 1371 | + <field_name>all_content</field_name> | |
| 1372 | + <key_value>45</key_value> | |
| 1373 | + <target_name>fcno45</target_name> | |
| 1374 | + <target_type>String</target_type> | |
| 1375 | + <target_format/> | |
| 1376 | + <target_length>-1</target_length> | |
| 1377 | + <target_precision>-1</target_precision> | |
| 1378 | + <target_decimal_symbol/> | |
| 1379 | + <target_grouping_symbol/> | |
| 1380 | + <target_currency_symbol/> | |
| 1381 | + <target_null_string/> | |
| 1382 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1383 | + </field> | |
| 1384 | + <field> | |
| 1385 | + <field_name>all_content</field_name> | |
| 1386 | + <key_value>46</key_value> | |
| 1387 | + <target_name>fcno46</target_name> | |
| 1388 | + <target_type>String</target_type> | |
| 1389 | + <target_format/> | |
| 1390 | + <target_length>-1</target_length> | |
| 1391 | + <target_precision>-1</target_precision> | |
| 1392 | + <target_decimal_symbol/> | |
| 1393 | + <target_grouping_symbol/> | |
| 1394 | + <target_currency_symbol/> | |
| 1395 | + <target_null_string/> | |
| 1396 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1397 | + </field> | |
| 1398 | + <field> | |
| 1399 | + <field_name>all_content</field_name> | |
| 1400 | + <key_value>47</key_value> | |
| 1401 | + <target_name>fcno47</target_name> | |
| 1402 | + <target_type>String</target_type> | |
| 1403 | + <target_format/> | |
| 1404 | + <target_length>-1</target_length> | |
| 1405 | + <target_precision>-1</target_precision> | |
| 1406 | + <target_decimal_symbol/> | |
| 1407 | + <target_grouping_symbol/> | |
| 1408 | + <target_currency_symbol/> | |
| 1409 | + <target_null_string/> | |
| 1410 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1411 | + </field> | |
| 1412 | + <field> | |
| 1413 | + <field_name>all_content</field_name> | |
| 1414 | + <key_value>48</key_value> | |
| 1415 | + <target_name>fcno48</target_name> | |
| 1416 | + <target_type>String</target_type> | |
| 1417 | + <target_format/> | |
| 1418 | + <target_length>-1</target_length> | |
| 1419 | + <target_precision>-1</target_precision> | |
| 1420 | + <target_decimal_symbol/> | |
| 1421 | + <target_grouping_symbol/> | |
| 1422 | + <target_currency_symbol/> | |
| 1423 | + <target_null_string/> | |
| 1424 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1425 | + </field> | |
| 1426 | + <field> | |
| 1427 | + <field_name>all_content</field_name> | |
| 1428 | + <key_value>49</key_value> | |
| 1429 | + <target_name>fcno49</target_name> | |
| 1430 | + <target_type>String</target_type> | |
| 1431 | + <target_format/> | |
| 1432 | + <target_length>-1</target_length> | |
| 1433 | + <target_precision>-1</target_precision> | |
| 1434 | + <target_decimal_symbol/> | |
| 1435 | + <target_grouping_symbol/> | |
| 1436 | + <target_currency_symbol/> | |
| 1437 | + <target_null_string/> | |
| 1438 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1439 | + </field> | |
| 1440 | + <field> | |
| 1441 | + <field_name>all_content</field_name> | |
| 1442 | + <key_value>50</key_value> | |
| 1443 | + <target_name>fcno50</target_name> | |
| 1444 | + <target_type>String</target_type> | |
| 1445 | + <target_format/> | |
| 1446 | + <target_length>-1</target_length> | |
| 1447 | + <target_precision>-1</target_precision> | |
| 1448 | + <target_decimal_symbol/> | |
| 1449 | + <target_grouping_symbol/> | |
| 1450 | + <target_currency_symbol/> | |
| 1451 | + <target_null_string/> | |
| 1452 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1453 | + </field> | |
| 1454 | + <field> | |
| 1455 | + <field_name>all_content</field_name> | |
| 1456 | + <key_value>51</key_value> | |
| 1457 | + <target_name>fcno51</target_name> | |
| 1458 | + <target_type>String</target_type> | |
| 1459 | + <target_format/> | |
| 1460 | + <target_length>-1</target_length> | |
| 1461 | + <target_precision>-1</target_precision> | |
| 1462 | + <target_decimal_symbol/> | |
| 1463 | + <target_grouping_symbol/> | |
| 1464 | + <target_currency_symbol/> | |
| 1465 | + <target_null_string/> | |
| 1466 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1467 | + </field> | |
| 1468 | + <field> | |
| 1469 | + <field_name>all_content</field_name> | |
| 1470 | + <key_value>52</key_value> | |
| 1471 | + <target_name>fcno52</target_name> | |
| 1472 | + <target_type>String</target_type> | |
| 1473 | + <target_format/> | |
| 1474 | + <target_length>-1</target_length> | |
| 1475 | + <target_precision>-1</target_precision> | |
| 1476 | + <target_decimal_symbol/> | |
| 1477 | + <target_grouping_symbol/> | |
| 1478 | + <target_currency_symbol/> | |
| 1479 | + <target_null_string/> | |
| 1480 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1481 | + </field> | |
| 1482 | + <field> | |
| 1483 | + <field_name>all_content</field_name> | |
| 1484 | + <key_value>53</key_value> | |
| 1485 | + <target_name>fcno53</target_name> | |
| 1486 | + <target_type>String</target_type> | |
| 1487 | + <target_format/> | |
| 1488 | + <target_length>-1</target_length> | |
| 1489 | + <target_precision>-1</target_precision> | |
| 1490 | + <target_decimal_symbol/> | |
| 1491 | + <target_grouping_symbol/> | |
| 1492 | + <target_currency_symbol/> | |
| 1493 | + <target_null_string/> | |
| 1494 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1495 | + </field> | |
| 1496 | + <field> | |
| 1497 | + <field_name>all_content</field_name> | |
| 1498 | + <key_value>54</key_value> | |
| 1499 | + <target_name>fcno54</target_name> | |
| 1500 | + <target_type>String</target_type> | |
| 1501 | + <target_format/> | |
| 1502 | + <target_length>-1</target_length> | |
| 1503 | + <target_precision>-1</target_precision> | |
| 1504 | + <target_decimal_symbol/> | |
| 1505 | + <target_grouping_symbol/> | |
| 1506 | + <target_currency_symbol/> | |
| 1507 | + <target_null_string/> | |
| 1508 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1509 | + </field> | |
| 1510 | + <field> | |
| 1511 | + <field_name>all_content</field_name> | |
| 1512 | + <key_value>55</key_value> | |
| 1513 | + <target_name>fcno55</target_name> | |
| 1514 | + <target_type>String</target_type> | |
| 1515 | + <target_format/> | |
| 1516 | + <target_length>-1</target_length> | |
| 1517 | + <target_precision>-1</target_precision> | |
| 1518 | + <target_decimal_symbol/> | |
| 1519 | + <target_grouping_symbol/> | |
| 1520 | + <target_currency_symbol/> | |
| 1521 | + <target_null_string/> | |
| 1522 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1523 | + </field> | |
| 1524 | + <field> | |
| 1525 | + <field_name>all_content</field_name> | |
| 1526 | + <key_value>56</key_value> | |
| 1527 | + <target_name>fcno56</target_name> | |
| 1528 | + <target_type>String</target_type> | |
| 1529 | + <target_format/> | |
| 1530 | + <target_length>-1</target_length> | |
| 1531 | + <target_precision>-1</target_precision> | |
| 1532 | + <target_decimal_symbol/> | |
| 1533 | + <target_grouping_symbol/> | |
| 1534 | + <target_currency_symbol/> | |
| 1535 | + <target_null_string/> | |
| 1536 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1537 | + </field> | |
| 1538 | + <field> | |
| 1539 | + <field_name>all_content</field_name> | |
| 1540 | + <key_value>57</key_value> | |
| 1541 | + <target_name>fcno57</target_name> | |
| 1542 | + <target_type>String</target_type> | |
| 1543 | + <target_format/> | |
| 1544 | + <target_length>-1</target_length> | |
| 1545 | + <target_precision>-1</target_precision> | |
| 1546 | + <target_decimal_symbol/> | |
| 1547 | + <target_grouping_symbol/> | |
| 1548 | + <target_currency_symbol/> | |
| 1549 | + <target_null_string/> | |
| 1550 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1551 | + </field> | |
| 1552 | + <field> | |
| 1553 | + <field_name>all_content</field_name> | |
| 1554 | + <key_value>58</key_value> | |
| 1555 | + <target_name>fcno58</target_name> | |
| 1556 | + <target_type>String</target_type> | |
| 1557 | + <target_format/> | |
| 1558 | + <target_length>-1</target_length> | |
| 1559 | + <target_precision>-1</target_precision> | |
| 1560 | + <target_decimal_symbol/> | |
| 1561 | + <target_grouping_symbol/> | |
| 1562 | + <target_currency_symbol/> | |
| 1563 | + <target_null_string/> | |
| 1564 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1565 | + </field> | |
| 1566 | + <field> | |
| 1567 | + <field_name>all_content</field_name> | |
| 1568 | + <key_value>59</key_value> | |
| 1569 | + <target_name>fcno59</target_name> | |
| 1570 | + <target_type>String</target_type> | |
| 1571 | + <target_format/> | |
| 1572 | + <target_length>-1</target_length> | |
| 1573 | + <target_precision>-1</target_precision> | |
| 1574 | + <target_decimal_symbol/> | |
| 1575 | + <target_grouping_symbol/> | |
| 1576 | + <target_currency_symbol/> | |
| 1577 | + <target_null_string/> | |
| 1578 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1579 | + </field> | |
| 1580 | + <field> | |
| 1581 | + <field_name>all_content</field_name> | |
| 1582 | + <key_value>60</key_value> | |
| 1583 | + <target_name>fcno60</target_name> | |
| 1584 | + <target_type>String</target_type> | |
| 1585 | + <target_format/> | |
| 1586 | + <target_length>-1</target_length> | |
| 1587 | + <target_precision>-1</target_precision> | |
| 1588 | + <target_decimal_symbol/> | |
| 1589 | + <target_grouping_symbol/> | |
| 1590 | + <target_currency_symbol/> | |
| 1591 | + <target_null_string/> | |
| 1592 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1593 | + </field> | |
| 1594 | + <field> | |
| 1595 | + <field_name>all_content</field_name> | |
| 1596 | + <key_value>61</key_value> | |
| 1597 | + <target_name>fcno61</target_name> | |
| 1598 | + <target_type>String</target_type> | |
| 1599 | + <target_format/> | |
| 1600 | + <target_length>-1</target_length> | |
| 1601 | + <target_precision>-1</target_precision> | |
| 1602 | + <target_decimal_symbol/> | |
| 1603 | + <target_grouping_symbol/> | |
| 1604 | + <target_currency_symbol/> | |
| 1605 | + <target_null_string/> | |
| 1606 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1607 | + </field> | |
| 1608 | + <field> | |
| 1609 | + <field_name>all_content</field_name> | |
| 1610 | + <key_value>62</key_value> | |
| 1611 | + <target_name>fcno62</target_name> | |
| 1612 | + <target_type>String</target_type> | |
| 1613 | + <target_format/> | |
| 1614 | + <target_length>-1</target_length> | |
| 1615 | + <target_precision>-1</target_precision> | |
| 1616 | + <target_decimal_symbol/> | |
| 1617 | + <target_grouping_symbol/> | |
| 1618 | + <target_currency_symbol/> | |
| 1619 | + <target_null_string/> | |
| 1620 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1621 | + </field> | |
| 1622 | + <field> | |
| 1623 | + <field_name>all_content</field_name> | |
| 1624 | + <key_value>63</key_value> | |
| 1625 | + <target_name>fcno63</target_name> | |
| 1626 | + <target_type>String</target_type> | |
| 1627 | + <target_format/> | |
| 1628 | + <target_length>-1</target_length> | |
| 1629 | + <target_precision>-1</target_precision> | |
| 1630 | + <target_decimal_symbol/> | |
| 1631 | + <target_grouping_symbol/> | |
| 1632 | + <target_currency_symbol/> | |
| 1633 | + <target_null_string/> | |
| 1634 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1635 | + </field> | |
| 1636 | + <field> | |
| 1637 | + <field_name>all_content</field_name> | |
| 1638 | + <key_value>64</key_value> | |
| 1639 | + <target_name>fcno64</target_name> | |
| 1640 | + <target_type>String</target_type> | |
| 1641 | + <target_format/> | |
| 1642 | + <target_length>-1</target_length> | |
| 1643 | + <target_precision>-1</target_precision> | |
| 1644 | + <target_decimal_symbol/> | |
| 1645 | + <target_grouping_symbol/> | |
| 1646 | + <target_currency_symbol/> | |
| 1647 | + <target_null_string/> | |
| 1648 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1649 | + </field> | |
| 1650 | + <field> | |
| 1651 | + <field_name>all_content</field_name> | |
| 1652 | + <key_value>65</key_value> | |
| 1653 | + <target_name>fcno65</target_name> | |
| 1654 | + <target_type>String</target_type> | |
| 1655 | + <target_format/> | |
| 1656 | + <target_length>-1</target_length> | |
| 1657 | + <target_precision>-1</target_precision> | |
| 1658 | + <target_decimal_symbol/> | |
| 1659 | + <target_grouping_symbol/> | |
| 1660 | + <target_currency_symbol/> | |
| 1661 | + <target_null_string/> | |
| 1662 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1663 | + </field> | |
| 1664 | + <field> | |
| 1665 | + <field_name>all_content</field_name> | |
| 1666 | + <key_value>66</key_value> | |
| 1667 | + <target_name>fcno66</target_name> | |
| 1668 | + <target_type>String</target_type> | |
| 1669 | + <target_format/> | |
| 1670 | + <target_length>-1</target_length> | |
| 1671 | + <target_precision>-1</target_precision> | |
| 1672 | + <target_decimal_symbol/> | |
| 1673 | + <target_grouping_symbol/> | |
| 1674 | + <target_currency_symbol/> | |
| 1675 | + <target_null_string/> | |
| 1676 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1677 | + </field> | |
| 1678 | + <field> | |
| 1679 | + <field_name>all_content</field_name> | |
| 1680 | + <key_value>67</key_value> | |
| 1681 | + <target_name>fcno67</target_name> | |
| 1682 | + <target_type>String</target_type> | |
| 1683 | + <target_format/> | |
| 1684 | + <target_length>-1</target_length> | |
| 1685 | + <target_precision>-1</target_precision> | |
| 1686 | + <target_decimal_symbol/> | |
| 1687 | + <target_grouping_symbol/> | |
| 1688 | + <target_currency_symbol/> | |
| 1689 | + <target_null_string/> | |
| 1690 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1691 | + </field> | |
| 1692 | + <field> | |
| 1693 | + <field_name>all_content</field_name> | |
| 1694 | + <key_value>68</key_value> | |
| 1695 | + <target_name>fcno68</target_name> | |
| 1696 | + <target_type>String</target_type> | |
| 1697 | + <target_format/> | |
| 1698 | + <target_length>-1</target_length> | |
| 1699 | + <target_precision>-1</target_precision> | |
| 1700 | + <target_decimal_symbol/> | |
| 1701 | + <target_grouping_symbol/> | |
| 1702 | + <target_currency_symbol/> | |
| 1703 | + <target_null_string/> | |
| 1704 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1705 | + </field> | |
| 1706 | + <field> | |
| 1707 | + <field_name>all_content</field_name> | |
| 1708 | + <key_value>69</key_value> | |
| 1709 | + <target_name>fcno69</target_name> | |
| 1710 | + <target_type>String</target_type> | |
| 1711 | + <target_format/> | |
| 1712 | + <target_length>-1</target_length> | |
| 1713 | + <target_precision>-1</target_precision> | |
| 1714 | + <target_decimal_symbol/> | |
| 1715 | + <target_grouping_symbol/> | |
| 1716 | + <target_currency_symbol/> | |
| 1717 | + <target_null_string/> | |
| 1718 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1719 | + </field> | |
| 1720 | + <field> | |
| 1721 | + <field_name>all_content</field_name> | |
| 1722 | + <key_value>70</key_value> | |
| 1723 | + <target_name>fcno70</target_name> | |
| 1724 | + <target_type>String</target_type> | |
| 1725 | + <target_format/> | |
| 1726 | + <target_length>-1</target_length> | |
| 1727 | + <target_precision>-1</target_precision> | |
| 1728 | + <target_decimal_symbol/> | |
| 1729 | + <target_grouping_symbol/> | |
| 1730 | + <target_currency_symbol/> | |
| 1731 | + <target_null_string/> | |
| 1732 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1733 | + </field> | |
| 1734 | + </fields> | |
| 1735 | + <cluster_schema/> | |
| 1736 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1737 | + <xloc>690</xloc> | |
| 1738 | + <yloc>272</yloc> | |
| 1739 | + <draw>Y</draw> | |
| 1740 | + </GUI> | |
| 1741 | + </step> | |
| 1742 | + | |
| 1743 | + <step> | |
| 1744 | + <name>去除字段</name> | |
| 1745 | + <type>SelectValues</type> | |
| 1746 | + <description/> | |
| 1747 | + <distribute>N</distribute> | |
| 1748 | + <custom_distribution/> | |
| 1749 | + <copies>1</copies> | |
| 1750 | + <partitioning> | |
| 1751 | + <method>none</method> | |
| 1752 | + <schema_name/> | |
| 1753 | + </partitioning> | |
| 1754 | + <fields> <field> <name>lp</name> | |
| 1755 | + <rename/> | |
| 1756 | + <length>-2</length> | |
| 1757 | + <precision>-2</precision> | |
| 1758 | + </field> <field> <name>fcno1</name> | |
| 1759 | + <rename/> | |
| 1760 | + <length>-2</length> | |
| 1761 | + <precision>-2</precision> | |
| 1762 | + </field> <field> <name>fcno2</name> | |
| 1763 | + <rename/> | |
| 1764 | + <length>-2</length> | |
| 1765 | + <precision>-2</precision> | |
| 1766 | + </field> <field> <name>fcno3</name> | |
| 1767 | + <rename/> | |
| 1768 | + <length>-2</length> | |
| 1769 | + <precision>-2</precision> | |
| 1770 | + </field> <field> <name>fcno4</name> | |
| 1771 | + <rename/> | |
| 1772 | + <length>-2</length> | |
| 1773 | + <precision>-2</precision> | |
| 1774 | + </field> <field> <name>fcno5</name> | |
| 1775 | + <rename/> | |
| 1776 | + <length>-2</length> | |
| 1777 | + <precision>-2</precision> | |
| 1778 | + </field> <field> <name>fcno6</name> | |
| 1779 | + <rename/> | |
| 1780 | + <length>-2</length> | |
| 1781 | + <precision>-2</precision> | |
| 1782 | + </field> <field> <name>fcno7</name> | |
| 1783 | + <rename/> | |
| 1784 | + <length>-2</length> | |
| 1785 | + <precision>-2</precision> | |
| 1786 | + </field> <field> <name>fcno8</name> | |
| 1787 | + <rename/> | |
| 1788 | + <length>-2</length> | |
| 1789 | + <precision>-2</precision> | |
| 1790 | + </field> <field> <name>fcno9</name> | |
| 1791 | + <rename/> | |
| 1792 | + <length>-2</length> | |
| 1793 | + <precision>-2</precision> | |
| 1794 | + </field> <field> <name>fcno10</name> | |
| 1795 | + <rename/> | |
| 1796 | + <length>-2</length> | |
| 1797 | + <precision>-2</precision> | |
| 1798 | + </field> <field> <name>fcno11</name> | |
| 1799 | + <rename/> | |
| 1800 | + <length>-2</length> | |
| 1801 | + <precision>-2</precision> | |
| 1802 | + </field> <field> <name>fcno12</name> | |
| 1803 | + <rename/> | |
| 1804 | + <length>-2</length> | |
| 1805 | + <precision>-2</precision> | |
| 1806 | + </field> <field> <name>fcno13</name> | |
| 1807 | + <rename/> | |
| 1808 | + <length>-2</length> | |
| 1809 | + <precision>-2</precision> | |
| 1810 | + </field> <field> <name>fcno14</name> | |
| 1811 | + <rename/> | |
| 1812 | + <length>-2</length> | |
| 1813 | + <precision>-2</precision> | |
| 1814 | + </field> <field> <name>fcno15</name> | |
| 1815 | + <rename/> | |
| 1816 | + <length>-2</length> | |
| 1817 | + <precision>-2</precision> | |
| 1818 | + </field> <field> <name>fcno16</name> | |
| 1819 | + <rename/> | |
| 1820 | + <length>-2</length> | |
| 1821 | + <precision>-2</precision> | |
| 1822 | + </field> <field> <name>fcno17</name> | |
| 1823 | + <rename/> | |
| 1824 | + <length>-2</length> | |
| 1825 | + <precision>-2</precision> | |
| 1826 | + </field> <field> <name>fcno18</name> | |
| 1827 | + <rename/> | |
| 1828 | + <length>-2</length> | |
| 1829 | + <precision>-2</precision> | |
| 1830 | + </field> <field> <name>fcno19</name> | |
| 1831 | + <rename/> | |
| 1832 | + <length>-2</length> | |
| 1833 | + <precision>-2</precision> | |
| 1834 | + </field> <field> <name>fcno20</name> | |
| 1835 | + <rename/> | |
| 1836 | + <length>-2</length> | |
| 1837 | + <precision>-2</precision> | |
| 1838 | + </field> <field> <name>fcno21</name> | |
| 1839 | + <rename/> | |
| 1840 | + <length>-2</length> | |
| 1841 | + <precision>-2</precision> | |
| 1842 | + </field> <field> <name>fcno22</name> | |
| 1843 | + <rename/> | |
| 1844 | + <length>-2</length> | |
| 1845 | + <precision>-2</precision> | |
| 1846 | + </field> <field> <name>fcno23</name> | |
| 1847 | + <rename/> | |
| 1848 | + <length>-2</length> | |
| 1849 | + <precision>-2</precision> | |
| 1850 | + </field> <field> <name>fcno24</name> | |
| 1851 | + <rename/> | |
| 1852 | + <length>-2</length> | |
| 1853 | + <precision>-2</precision> | |
| 1854 | + </field> <field> <name>fcno25</name> | |
| 1855 | + <rename/> | |
| 1856 | + <length>-2</length> | |
| 1857 | + <precision>-2</precision> | |
| 1858 | + </field> <field> <name>fcno26</name> | |
| 1859 | + <rename/> | |
| 1860 | + <length>-2</length> | |
| 1861 | + <precision>-2</precision> | |
| 1862 | + </field> <field> <name>fcno27</name> | |
| 1863 | + <rename/> | |
| 1864 | + <length>-2</length> | |
| 1865 | + <precision>-2</precision> | |
| 1866 | + </field> <field> <name>fcno28</name> | |
| 1867 | + <rename/> | |
| 1868 | + <length>-2</length> | |
| 1869 | + <precision>-2</precision> | |
| 1870 | + </field> <field> <name>fcno29</name> | |
| 1871 | + <rename/> | |
| 1872 | + <length>-2</length> | |
| 1873 | + <precision>-2</precision> | |
| 1874 | + </field> <field> <name>fcno30</name> | |
| 1875 | + <rename/> | |
| 1876 | + <length>-2</length> | |
| 1877 | + <precision>-2</precision> | |
| 1878 | + </field> <field> <name>fcno31</name> | |
| 1879 | + <rename/> | |
| 1880 | + <length>-2</length> | |
| 1881 | + <precision>-2</precision> | |
| 1882 | + </field> <field> <name>fcno32</name> | |
| 1883 | + <rename/> | |
| 1884 | + <length>-2</length> | |
| 1885 | + <precision>-2</precision> | |
| 1886 | + </field> <field> <name>fcno33</name> | |
| 1887 | + <rename/> | |
| 1888 | + <length>-2</length> | |
| 1889 | + <precision>-2</precision> | |
| 1890 | + </field> <field> <name>fcno34</name> | |
| 1891 | + <rename/> | |
| 1892 | + <length>-2</length> | |
| 1893 | + <precision>-2</precision> | |
| 1894 | + </field> <field> <name>fcno35</name> | |
| 1895 | + <rename/> | |
| 1896 | + <length>-2</length> | |
| 1897 | + <precision>-2</precision> | |
| 1898 | + </field> <field> <name>fcno36</name> | |
| 1899 | + <rename/> | |
| 1900 | + <length>-2</length> | |
| 1901 | + <precision>-2</precision> | |
| 1902 | + </field> <field> <name>fcno37</name> | |
| 1903 | + <rename/> | |
| 1904 | + <length>-2</length> | |
| 1905 | + <precision>-2</precision> | |
| 1906 | + </field> <field> <name>fcno38</name> | |
| 1907 | + <rename/> | |
| 1908 | + <length>-2</length> | |
| 1909 | + <precision>-2</precision> | |
| 1910 | + </field> <field> <name>fcno39</name> | |
| 1911 | + <rename/> | |
| 1912 | + <length>-2</length> | |
| 1913 | + <precision>-2</precision> | |
| 1914 | + </field> <field> <name>fcno40</name> | |
| 1915 | + <rename/> | |
| 1916 | + <length>-2</length> | |
| 1917 | + <precision>-2</precision> | |
| 1918 | + </field> <field> <name>fcno41</name> | |
| 1919 | + <rename/> | |
| 1920 | + <length>-2</length> | |
| 1921 | + <precision>-2</precision> | |
| 1922 | + </field> <field> <name>fcno42</name> | |
| 1923 | + <rename/> | |
| 1924 | + <length>-2</length> | |
| 1925 | + <precision>-2</precision> | |
| 1926 | + </field> <field> <name>fcno43</name> | |
| 1927 | + <rename/> | |
| 1928 | + <length>-2</length> | |
| 1929 | + <precision>-2</precision> | |
| 1930 | + </field> <field> <name>fcno44</name> | |
| 1931 | + <rename/> | |
| 1932 | + <length>-2</length> | |
| 1933 | + <precision>-2</precision> | |
| 1934 | + </field> <field> <name>fcno45</name> | |
| 1935 | + <rename/> | |
| 1936 | + <length>-2</length> | |
| 1937 | + <precision>-2</precision> | |
| 1938 | + </field> <field> <name>fcno46</name> | |
| 1939 | + <rename/> | |
| 1940 | + <length>-2</length> | |
| 1941 | + <precision>-2</precision> | |
| 1942 | + </field> <field> <name>fcno47</name> | |
| 1943 | + <rename/> | |
| 1944 | + <length>-2</length> | |
| 1945 | + <precision>-2</precision> | |
| 1946 | + </field> <field> <name>fcno48</name> | |
| 1947 | + <rename/> | |
| 1948 | + <length>-2</length> | |
| 1949 | + <precision>-2</precision> | |
| 1950 | + </field> <field> <name>fcno49</name> | |
| 1951 | + <rename/> | |
| 1952 | + <length>-2</length> | |
| 1953 | + <precision>-2</precision> | |
| 1954 | + </field> <field> <name>fcno50</name> | |
| 1955 | + <rename/> | |
| 1956 | + <length>-2</length> | |
| 1957 | + <precision>-2</precision> | |
| 1958 | + </field> <field> <name>fcno51</name> | |
| 1959 | + <rename/> | |
| 1960 | + <length>-2</length> | |
| 1961 | + <precision>-2</precision> | |
| 1962 | + </field> <field> <name>fcno52</name> | |
| 1963 | + <rename/> | |
| 1964 | + <length>-2</length> | |
| 1965 | + <precision>-2</precision> | |
| 1966 | + </field> <field> <name>fcno53</name> | |
| 1967 | + <rename/> | |
| 1968 | + <length>-2</length> | |
| 1969 | + <precision>-2</precision> | |
| 1970 | + </field> <field> <name>fcno54</name> | |
| 1971 | + <rename/> | |
| 1972 | + <length>-2</length> | |
| 1973 | + <precision>-2</precision> | |
| 1974 | + </field> <field> <name>fcno55</name> | |
| 1975 | + <rename/> | |
| 1976 | + <length>-2</length> | |
| 1977 | + <precision>-2</precision> | |
| 1978 | + </field> <field> <name>fcno56</name> | |
| 1979 | + <rename/> | |
| 1980 | + <length>-2</length> | |
| 1981 | + <precision>-2</precision> | |
| 1982 | + </field> <field> <name>fcno57</name> | |
| 1983 | + <rename/> | |
| 1984 | + <length>-2</length> | |
| 1985 | + <precision>-2</precision> | |
| 1986 | + </field> <field> <name>fcno58</name> | |
| 1987 | + <rename/> | |
| 1988 | + <length>-2</length> | |
| 1989 | + <precision>-2</precision> | |
| 1990 | + </field> <field> <name>fcno59</name> | |
| 1991 | + <rename/> | |
| 1992 | + <length>-2</length> | |
| 1993 | + <precision>-2</precision> | |
| 1994 | + </field> <field> <name>fcno60</name> | |
| 1995 | + <rename/> | |
| 1996 | + <length>-2</length> | |
| 1997 | + <precision>-2</precision> | |
| 1998 | + </field> <field> <name>fcno61</name> | |
| 1999 | + <rename/> | |
| 2000 | + <length>-2</length> | |
| 2001 | + <precision>-2</precision> | |
| 2002 | + </field> <field> <name>fcno62</name> | |
| 2003 | + <rename/> | |
| 2004 | + <length>-2</length> | |
| 2005 | + <precision>-2</precision> | |
| 2006 | + </field> <field> <name>fcno63</name> | |
| 2007 | + <rename/> | |
| 2008 | + <length>-2</length> | |
| 2009 | + <precision>-2</precision> | |
| 2010 | + </field> <field> <name>fcno64</name> | |
| 2011 | + <rename/> | |
| 2012 | + <length>-2</length> | |
| 2013 | + <precision>-2</precision> | |
| 2014 | + </field> <field> <name>fcno65</name> | |
| 2015 | + <rename/> | |
| 2016 | + <length>-2</length> | |
| 2017 | + <precision>-2</precision> | |
| 2018 | + </field> <field> <name>fcno66</name> | |
| 2019 | + <rename/> | |
| 2020 | + <length>-2</length> | |
| 2021 | + <precision>-2</precision> | |
| 2022 | + </field> <field> <name>fcno67</name> | |
| 2023 | + <rename/> | |
| 2024 | + <length>-2</length> | |
| 2025 | + <precision>-2</precision> | |
| 2026 | + </field> <field> <name>fcno68</name> | |
| 2027 | + <rename/> | |
| 2028 | + <length>-2</length> | |
| 2029 | + <precision>-2</precision> | |
| 2030 | + </field> <field> <name>fcno69</name> | |
| 2031 | + <rename/> | |
| 2032 | + <length>-2</length> | |
| 2033 | + <precision>-2</precision> | |
| 2034 | + </field> <field> <name>fcno70</name> | |
| 2035 | + <rename/> | |
| 2036 | + <length>-2</length> | |
| 2037 | + <precision>-2</precision> | |
| 2038 | + </field> <select_unspecified>N</select_unspecified> | |
| 2039 | + </fields> <cluster_schema/> | |
| 2040 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2041 | + <xloc>691</xloc> | |
| 2042 | + <yloc>361</yloc> | |
| 2043 | + <draw>Y</draw> | |
| 2044 | + </GUI> | |
| 2045 | + </step> | |
| 2046 | + | |
| 2047 | + <step> | |
| 2048 | + <name>字段选择</name> | |
| 2049 | + <type>SelectValues</type> | |
| 2050 | + <description/> | |
| 2051 | + <distribute>Y</distribute> | |
| 2052 | + <custom_distribution/> | |
| 2053 | + <copies>1</copies> | |
| 2054 | + <partitioning> | |
| 2055 | + <method>none</method> | |
| 2056 | + <schema_name/> | |
| 2057 | + </partitioning> | |
| 2058 | + <fields> <field> <name>id</name> | |
| 2059 | + <rename/> | |
| 2060 | + <length>-2</length> | |
| 2061 | + <precision>-2</precision> | |
| 2062 | + </field> <field> <name>lp</name> | |
| 2063 | + <rename/> | |
| 2064 | + <length>-2</length> | |
| 2065 | + <precision>-2</precision> | |
| 2066 | + </field> <field> <name>fcsj</name> | |
| 2067 | + <rename/> | |
| 2068 | + <length>-2</length> | |
| 2069 | + <precision>-2</precision> | |
| 2070 | + </field> <field> <name>fcno</name> | |
| 2071 | + <rename/> | |
| 2072 | + <length>-2</length> | |
| 2073 | + <precision>-2</precision> | |
| 2074 | + </field> <field> <name>bcs</name> | |
| 2075 | + <rename/> | |
| 2076 | + <length>-2</length> | |
| 2077 | + <precision>-2</precision> | |
| 2078 | + </field> <field> <name>bc_type</name> | |
| 2079 | + <rename/> | |
| 2080 | + <length>-2</length> | |
| 2081 | + <precision>-2</precision> | |
| 2082 | + </field> <field> <name>qdzName</name> | |
| 2083 | + <rename/> | |
| 2084 | + <length>-2</length> | |
| 2085 | + <precision>-2</precision> | |
| 2086 | + </field> <field> <name>zdzName</name> | |
| 2087 | + <rename/> | |
| 2088 | + <length>-2</length> | |
| 2089 | + <precision>-2</precision> | |
| 2090 | + </field> <field> <name>xl_dir</name> | |
| 2091 | + <rename/> | |
| 2092 | + <length>-2</length> | |
| 2093 | + <precision>-2</precision> | |
| 2094 | + </field> <field> <name>isfb</name> | |
| 2095 | + <rename/> | |
| 2096 | + <length>-2</length> | |
| 2097 | + <precision>-2</precision> | |
| 2098 | + </field> <field> <name>jhlc</name> | |
| 2099 | + <rename/> | |
| 2100 | + <length>-2</length> | |
| 2101 | + <precision>-2</precision> | |
| 2102 | + </field> <field> <name>qdz</name> | |
| 2103 | + <rename/> | |
| 2104 | + <length>-2</length> | |
| 2105 | + <precision>-2</precision> | |
| 2106 | + </field> <field> <name>zdz</name> | |
| 2107 | + <rename/> | |
| 2108 | + <length>-2</length> | |
| 2109 | + <precision>-2</precision> | |
| 2110 | + </field> <field> <name>tcc</name> | |
| 2111 | + <rename/> | |
| 2112 | + <length>-2</length> | |
| 2113 | + <precision>-2</precision> | |
| 2114 | + </field> <select_unspecified>N</select_unspecified> | |
| 2115 | + </fields> <cluster_schema/> | |
| 2116 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2117 | + <xloc>690</xloc> | |
| 2118 | + <yloc>188</yloc> | |
| 2119 | + <draw>Y</draw> | |
| 2120 | + </GUI> | |
| 2121 | + </step> | |
| 2122 | + | |
| 2123 | + <step> | |
| 2124 | + <name>字段选择 2</name> | |
| 2125 | + <type>SelectValues</type> | |
| 2126 | + <description/> | |
| 2127 | + <distribute>Y</distribute> | |
| 2128 | + <custom_distribution/> | |
| 2129 | + <copies>1</copies> | |
| 2130 | + <partitioning> | |
| 2131 | + <method>none</method> | |
| 2132 | + <schema_name/> | |
| 2133 | + </partitioning> | |
| 2134 | + <fields> <field> <name>id</name> | |
| 2135 | + <rename/> | |
| 2136 | + <length>-2</length> | |
| 2137 | + <precision>-2</precision> | |
| 2138 | + </field> <field> <name>lp</name> | |
| 2139 | + <rename/> | |
| 2140 | + <length>-2</length> | |
| 2141 | + <precision>-2</precision> | |
| 2142 | + </field> <field> <name>fcsj</name> | |
| 2143 | + <rename/> | |
| 2144 | + <length>-2</length> | |
| 2145 | + <precision>-2</precision> | |
| 2146 | + </field> <field> <name>fcno</name> | |
| 2147 | + <rename/> | |
| 2148 | + <length>-2</length> | |
| 2149 | + <precision>-2</precision> | |
| 2150 | + </field> <field> <name>bcs</name> | |
| 2151 | + <rename/> | |
| 2152 | + <length>-2</length> | |
| 2153 | + <precision>-2</precision> | |
| 2154 | + </field> <field> <name>bc_type</name> | |
| 2155 | + <rename/> | |
| 2156 | + <length>-2</length> | |
| 2157 | + <precision>-2</precision> | |
| 2158 | + </field> <field> <name>qdzName</name> | |
| 2159 | + <rename/> | |
| 2160 | + <length>-2</length> | |
| 2161 | + <precision>-2</precision> | |
| 2162 | + </field> <field> <name>zdzName</name> | |
| 2163 | + <rename/> | |
| 2164 | + <length>-2</length> | |
| 2165 | + <precision>-2</precision> | |
| 2166 | + </field> <field> <name>xl_dir</name> | |
| 2167 | + <rename/> | |
| 2168 | + <length>-2</length> | |
| 2169 | + <precision>-2</precision> | |
| 2170 | + </field> <field> <name>isfb</name> | |
| 2171 | + <rename/> | |
| 2172 | + <length>-2</length> | |
| 2173 | + <precision>-2</precision> | |
| 2174 | + </field> <field> <name>jhlc</name> | |
| 2175 | + <rename/> | |
| 2176 | + <length>-2</length> | |
| 2177 | + <precision>-2</precision> | |
| 2178 | + </field> <field> <name>qdz</name> | |
| 2179 | + <rename/> | |
| 2180 | + <length>-2</length> | |
| 2181 | + <precision>-2</precision> | |
| 2182 | + </field> <field> <name>zdz</name> | |
| 2183 | + <rename/> | |
| 2184 | + <length>-2</length> | |
| 2185 | + <precision>-2</precision> | |
| 2186 | + </field> <field> <name>tcc</name> | |
| 2187 | + <rename/> | |
| 2188 | + <length>-2</length> | |
| 2189 | + <precision>-2</precision> | |
| 2190 | + </field> <select_unspecified>N</select_unspecified> | |
| 2191 | + </fields> <cluster_schema/> | |
| 2192 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2193 | + <xloc>402</xloc> | |
| 2194 | + <yloc>189</yloc> | |
| 2195 | + <draw>Y</draw> | |
| 2196 | + </GUI> | |
| 2197 | + </step> | |
| 2198 | + | |
| 2199 | + <step> | |
| 2200 | + <name>排序记录</name> | |
| 2201 | + <type>SortRows</type> | |
| 2202 | + <description/> | |
| 2203 | + <distribute>Y</distribute> | |
| 2204 | + <custom_distribution/> | |
| 2205 | + <copies>1</copies> | |
| 2206 | + <partitioning> | |
| 2207 | + <method>none</method> | |
| 2208 | + <schema_name/> | |
| 2209 | + </partitioning> | |
| 2210 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2211 | + <prefix>out</prefix> | |
| 2212 | + <sort_size>1000000</sort_size> | |
| 2213 | + <free_memory/> | |
| 2214 | + <compress>N</compress> | |
| 2215 | + <compress_variable/> | |
| 2216 | + <unique_rows>N</unique_rows> | |
| 2217 | + <fields> | |
| 2218 | + <field> | |
| 2219 | + <name>bcs</name> | |
| 2220 | + <ascending>Y</ascending> | |
| 2221 | + <case_sensitive>N</case_sensitive> | |
| 2222 | + <presorted>N</presorted> | |
| 2223 | + </field> | |
| 2224 | + </fields> | |
| 2225 | + <cluster_schema/> | |
| 2226 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2227 | + <xloc>549</xloc> | |
| 2228 | + <yloc>191</yloc> | |
| 2229 | + <draw>Y</draw> | |
| 2230 | + </GUI> | |
| 2231 | + </step> | |
| 2232 | + | |
| 2233 | + <step> | |
| 2234 | + <name>查找终点站名称</name> | |
| 2235 | + <type>DBLookup</type> | |
| 2236 | + <description/> | |
| 2237 | + <distribute>Y</distribute> | |
| 2238 | + <custom_distribution/> | |
| 2239 | + <copies>1</copies> | |
| 2240 | + <partitioning> | |
| 2241 | + <method>none</method> | |
| 2242 | + <schema_name/> | |
| 2243 | + </partitioning> | |
| 2244 | + <connection>bus_control_variable</connection> | |
| 2245 | + <cache>Y</cache> | |
| 2246 | + <cache_load_all>Y</cache_load_all> | |
| 2247 | + <cache_size>0</cache_size> | |
| 2248 | + <lookup> | |
| 2249 | + <schema/> | |
| 2250 | + <table>bsth_c_stationroute</table> | |
| 2251 | + <orderby/> | |
| 2252 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2253 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2254 | + <key> | |
| 2255 | + <name>xl</name> | |
| 2256 | + <field>line</field> | |
| 2257 | + <condition>=</condition> | |
| 2258 | + <name2/> | |
| 2259 | + </key> | |
| 2260 | + <key> | |
| 2261 | + <name>xl_dir</name> | |
| 2262 | + <field>directions</field> | |
| 2263 | + <condition>=</condition> | |
| 2264 | + <name2/> | |
| 2265 | + </key> | |
| 2266 | + <key> | |
| 2267 | + <name>endZdType</name> | |
| 2268 | + <field>station_mark</field> | |
| 2269 | + <condition>=</condition> | |
| 2270 | + <name2/> | |
| 2271 | + </key> | |
| 2272 | + <value> | |
| 2273 | + <name>station_name</name> | |
| 2274 | + <rename>zdzName</rename> | |
| 2275 | + <default/> | |
| 2276 | + <type>String</type> | |
| 2277 | + </value> | |
| 2278 | + </lookup> | |
| 2279 | + <cluster_schema/> | |
| 2280 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2281 | + <xloc>688</xloc> | |
| 2282 | + <yloc>86</yloc> | |
| 2283 | + <draw>Y</draw> | |
| 2284 | + </GUI> | |
| 2285 | + </step> | |
| 2286 | + | |
| 2287 | + <step> | |
| 2288 | + <name>查找起点站名称</name> | |
| 2289 | + <type>DBLookup</type> | |
| 2290 | + <description/> | |
| 2291 | + <distribute>Y</distribute> | |
| 2292 | + <custom_distribution/> | |
| 2293 | + <copies>1</copies> | |
| 2294 | + <partitioning> | |
| 2295 | + <method>none</method> | |
| 2296 | + <schema_name/> | |
| 2297 | + </partitioning> | |
| 2298 | + <connection>bus_control_variable</connection> | |
| 2299 | + <cache>Y</cache> | |
| 2300 | + <cache_load_all>Y</cache_load_all> | |
| 2301 | + <cache_size>0</cache_size> | |
| 2302 | + <lookup> | |
| 2303 | + <schema/> | |
| 2304 | + <table>bsth_c_stationroute</table> | |
| 2305 | + <orderby/> | |
| 2306 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2307 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2308 | + <key> | |
| 2309 | + <name>xl</name> | |
| 2310 | + <field>line</field> | |
| 2311 | + <condition>=</condition> | |
| 2312 | + <name2/> | |
| 2313 | + </key> | |
| 2314 | + <key> | |
| 2315 | + <name>xl_dir</name> | |
| 2316 | + <field>directions</field> | |
| 2317 | + <condition>=</condition> | |
| 2318 | + <name2/> | |
| 2319 | + </key> | |
| 2320 | + <key> | |
| 2321 | + <name>startZdType</name> | |
| 2322 | + <field>station_mark</field> | |
| 2323 | + <condition>=</condition> | |
| 2324 | + <name2/> | |
| 2325 | + </key> | |
| 2326 | + <value> | |
| 2327 | + <name>station_name</name> | |
| 2328 | + <rename>qdzName</rename> | |
| 2329 | + <default/> | |
| 2330 | + <type>String</type> | |
| 2331 | + </value> | |
| 2332 | + </lookup> | |
| 2333 | + <cluster_schema/> | |
| 2334 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2335 | + <xloc>553</xloc> | |
| 2336 | + <yloc>86</yloc> | |
| 2337 | + <draw>Y</draw> | |
| 2338 | + </GUI> | |
| 2339 | + </step> | |
| 2340 | + | |
| 2341 | + <step> | |
| 2342 | + <name>正常班次站点查询用数据</name> | |
| 2343 | + <type>ScriptValueMod</type> | |
| 2344 | + <description/> | |
| 2345 | + <distribute>Y</distribute> | |
| 2346 | + <custom_distribution/> | |
| 2347 | + <copies>1</copies> | |
| 2348 | + <partitioning> | |
| 2349 | + <method>none</method> | |
| 2350 | + <schema_name/> | |
| 2351 | + </partitioning> | |
| 2352 | + <compatible>N</compatible> | |
| 2353 | + <optimizationLevel>9</optimizationLevel> | |
| 2354 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2355 | + <jsScript_name>Script 1</jsScript_name> | |
| 2356 | + <jsScript_script>//Script here

var startZdType = 'B'; // 起点站站点类型标识别
var endZdType = 'E'; // 终点站站点类型标识</jsScript_script> | |
| 2357 | + </jsScript> </jsScripts> <fields> <field> <name>startZdType</name> | |
| 2358 | + <rename>startZdType</rename> | |
| 2359 | + <type>String</type> | |
| 2360 | + <length>-1</length> | |
| 2361 | + <precision>-1</precision> | |
| 2362 | + <replace>N</replace> | |
| 2363 | + </field> <field> <name>endZdType</name> | |
| 2364 | + <rename>endZdType</rename> | |
| 2365 | + <type>String</type> | |
| 2366 | + <length>-1</length> | |
| 2367 | + <precision>-1</precision> | |
| 2368 | + <replace>N</replace> | |
| 2369 | + </field> </fields> <cluster_schema/> | |
| 2370 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2371 | + <xloc>391</xloc> | |
| 2372 | + <yloc>87</yloc> | |
| 2373 | + <draw>Y</draw> | |
| 2374 | + </GUI> | |
| 2375 | + </step> | |
| 2376 | + | |
| 2377 | + <step> | |
| 2378 | + <name>获取变量</name> | |
| 2379 | + <type>GetVariable</type> | |
| 2380 | + <description/> | |
| 2381 | + <distribute>Y</distribute> | |
| 2382 | + <custom_distribution/> | |
| 2383 | + <copies>1</copies> | |
| 2384 | + <partitioning> | |
| 2385 | + <method>none</method> | |
| 2386 | + <schema_name/> | |
| 2387 | + </partitioning> | |
| 2388 | + <fields> | |
| 2389 | + <field> | |
| 2390 | + <name>xlid_</name> | |
| 2391 | + <variable>${xlid}</variable> | |
| 2392 | + <type>Integer</type> | |
| 2393 | + <format/> | |
| 2394 | + <currency/> | |
| 2395 | + <decimal/> | |
| 2396 | + <group/> | |
| 2397 | + <length>-1</length> | |
| 2398 | + <precision>-1</precision> | |
| 2399 | + <trim_type>none</trim_type> | |
| 2400 | + </field> | |
| 2401 | + <field> | |
| 2402 | + <name>ttid_</name> | |
| 2403 | + <variable>${ttid}</variable> | |
| 2404 | + <type>Number</type> | |
| 2405 | + <format/> | |
| 2406 | + <currency/> | |
| 2407 | + <decimal/> | |
| 2408 | + <group/> | |
| 2409 | + <length>-1</length> | |
| 2410 | + <precision>-1</precision> | |
| 2411 | + <trim_type>none</trim_type> | |
| 2412 | + </field> | |
| 2413 | + </fields> | |
| 2414 | + <cluster_schema/> | |
| 2415 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2416 | + <xloc>45</xloc> | |
| 2417 | + <yloc>189</yloc> | |
| 2418 | + <draw>Y</draw> | |
| 2419 | + </GUI> | |
| 2420 | + </step> | |
| 2421 | + | |
| 2422 | + <step> | |
| 2423 | + <name>表输入</name> | |
| 2424 | + <type>TableInput</type> | |
| 2425 | + <description/> | |
| 2426 | + <distribute>Y</distribute> | |
| 2427 | + <custom_distribution/> | |
| 2428 | + <copies>1</copies> | |
| 2429 | + <partitioning> | |
| 2430 | + <method>none</method> | |
| 2431 | + <schema_name/> | |
| 2432 | + </partitioning> | |
| 2433 | + <connection>bus_control_variable</connection> | |
| 2434 | + <sql>select 
t.id as id
, g.lp_name as lp
, g.xl as xl
, qdz
, zdz
, tcc
, fcsj
, jhlc
, bc_type 
, bcs
, fcno
, xl_dir
, isfb
from bsth_c_s_ttinfo_detail t left join 
bsth_c_s_gbi g on t.lp = g.id 
where 
g.xl = ? and
t.ttinfo = ? 
order by t.bcs asc</sql> | |
| 2435 | + <limit>0</limit> | |
| 2436 | + <lookup>获取变量</lookup> | |
| 2437 | + <execute_each_row>N</execute_each_row> | |
| 2438 | + <variables_active>Y</variables_active> | |
| 2439 | + <lazy_conversion_active>N</lazy_conversion_active> | |
| 2440 | + <cluster_schema/> | |
| 2441 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2442 | + <xloc>130</xloc> | |
| 2443 | + <yloc>85</yloc> | |
| 2444 | + <draw>Y</draw> | |
| 2445 | + </GUI> | |
| 2446 | + </step> | |
| 2447 | + | |
| 2448 | + <step> | |
| 2449 | + <name>计算发车站名</name> | |
| 2450 | + <type>ScriptValueMod</type> | |
| 2451 | + <description/> | |
| 2452 | + <distribute>Y</distribute> | |
| 2453 | + <custom_distribution/> | |
| 2454 | + <copies>1</copies> | |
| 2455 | + <partitioning> | |
| 2456 | + <method>none</method> | |
| 2457 | + <schema_name/> | |
| 2458 | + </partitioning> | |
| 2459 | + <compatible>N</compatible> | |
| 2460 | + <optimizationLevel>9</optimizationLevel> | |
| 2461 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2462 | + <jsScript_name>Script 1</jsScript_name> | |
| 2463 | + <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdzName;
}</jsScript_script> | |
| 2464 | + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 2465 | + <rename>fczdName</rename> | |
| 2466 | + <type>String</type> | |
| 2467 | + <length>-1</length> | |
| 2468 | + <precision>-1</precision> | |
| 2469 | + <replace>N</replace> | |
| 2470 | + </field> </fields> <cluster_schema/> | |
| 2471 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2472 | + <xloc>550</xloc> | |
| 2473 | + <yloc>276</yloc> | |
| 2474 | + <draw>Y</draw> | |
| 2475 | + </GUI> | |
| 2476 | + </step> | |
| 2477 | + | |
| 2478 | + <step> | |
| 2479 | + <name>过滤记录</name> | |
| 2480 | + <type>FilterRows</type> | |
| 2481 | + <description/> | |
| 2482 | + <distribute>Y</distribute> | |
| 2483 | + <custom_distribution/> | |
| 2484 | + <copies>1</copies> | |
| 2485 | + <partitioning> | |
| 2486 | + <method>none</method> | |
| 2487 | + <schema_name/> | |
| 2488 | + </partitioning> | |
| 2489 | +<send_true_to>正常班次站点查询用数据</send_true_to> | |
| 2490 | +<send_false_to>进场出场班次查询用的数据</send_false_to> | |
| 2491 | + <compare> | |
| 2492 | +<condition> | |
| 2493 | + <negated>N</negated> | |
| 2494 | + <leftvalue>bc_type</leftvalue> | |
| 2495 | + <function>=</function> | |
| 2496 | + <rightvalue/> | |
| 2497 | + <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 2498 | + </compare> | |
| 2499 | + <cluster_schema/> | |
| 2500 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2501 | + <xloc>248</xloc> | |
| 2502 | + <yloc>87</yloc> | |
| 2503 | + <draw>Y</draw> | |
| 2504 | + </GUI> | |
| 2505 | + </step> | |
| 2506 | + | |
| 2507 | + <step> | |
| 2508 | + <name>进场出场班次查询用的数据</name> | |
| 2509 | + <type>ScriptValueMod</type> | |
| 2510 | + <description/> | |
| 2511 | + <distribute>Y</distribute> | |
| 2512 | + <custom_distribution/> | |
| 2513 | + <copies>1</copies> | |
| 2514 | + <partitioning> | |
| 2515 | + <method>none</method> | |
| 2516 | + <schema_name/> | |
| 2517 | + </partitioning> | |
| 2518 | + <compatible>N</compatible> | |
| 2519 | + <optimizationLevel>9</optimizationLevel> | |
| 2520 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2521 | + <jsScript_name>Script 1</jsScript_name> | |
| 2522 | + <jsScript_script>//Script here

var qdzName = null; // 起点站名字
var zdzName = null; // 终点站名字</jsScript_script> | |
| 2523 | + </jsScript> </jsScripts> <fields> <field> <name>qdzName</name> | |
| 2524 | + <rename>qdzName</rename> | |
| 2525 | + <type>String</type> | |
| 2526 | + <length>-1</length> | |
| 2527 | + <precision>-1</precision> | |
| 2528 | + <replace>N</replace> | |
| 2529 | + </field> <field> <name>zdzName</name> | |
| 2530 | + <rename>zdzName</rename> | |
| 2531 | + <type>String</type> | |
| 2532 | + <length>-1</length> | |
| 2533 | + <precision>-1</precision> | |
| 2534 | + <replace>N</replace> | |
| 2535 | + </field> </fields> <cluster_schema/> | |
| 2536 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2537 | + <xloc>250</xloc> | |
| 2538 | + <yloc>188</yloc> | |
| 2539 | + <draw>Y</draw> | |
| 2540 | + </GUI> | |
| 2541 | + </step> | |
| 2542 | + | |
| 2543 | + <step> | |
| 2544 | + <name>文本文件输出</name> | |
| 2545 | + <type>TextFileOutput</type> | |
| 2546 | + <description/> | |
| 2547 | + <distribute>Y</distribute> | |
| 2548 | + <custom_distribution/> | |
| 2549 | + <copies>1</copies> | |
| 2550 | + <partitioning> | |
| 2551 | + <method>none</method> | |
| 2552 | + <schema_name/> | |
| 2553 | + </partitioning> | |
| 2554 | + <separator>;</separator> | |
| 2555 | + <enclosure>"</enclosure> | |
| 2556 | + <enclosure_forced>N</enclosure_forced> | |
| 2557 | + <enclosure_fix_disabled>N</enclosure_fix_disabled> | |
| 2558 | + <header>Y</header> | |
| 2559 | + <footer>N</footer> | |
| 2560 | + <format>DOS</format> | |
| 2561 | + <compression>None</compression> | |
| 2562 | + <encoding/> | |
| 2563 | + <endedLine/> | |
| 2564 | + <fileNameInField>N</fileNameInField> | |
| 2565 | + <fileNameField/> | |
| 2566 | + <create_parent_folder>Y</create_parent_folder> | |
| 2567 | + <file> | |
| 2568 | + <name>${tempfilepath}</name> | |
| 2569 | + <is_command>N</is_command> | |
| 2570 | + <servlet_output>N</servlet_output> | |
| 2571 | + <do_not_open_new_file_init>N</do_not_open_new_file_init> | |
| 2572 | + <extention>txt</extention> | |
| 2573 | + <append>N</append> | |
| 2574 | + <split>N</split> | |
| 2575 | + <haspartno>N</haspartno> | |
| 2576 | + <add_date>N</add_date> | |
| 2577 | + <add_time>N</add_time> | |
| 2578 | + <SpecifyFormat>N</SpecifyFormat> | |
| 2579 | + <date_time_format/> | |
| 2580 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 2581 | + <pad>N</pad> | |
| 2582 | + <fast_dump>N</fast_dump> | |
| 2583 | + <splitevery>0</splitevery> | |
| 2584 | + </file> | |
| 2585 | + <fields> | |
| 2586 | + <field> | |
| 2587 | + <name>lp</name> | |
| 2588 | + <type>String</type> | |
| 2589 | + <format/> | |
| 2590 | + <currency/> | |
| 2591 | + <decimal/> | |
| 2592 | + <group/> | |
| 2593 | + <nullif/> | |
| 2594 | + <trim_type>none</trim_type> | |
| 2595 | + <length>255</length> | |
| 2596 | + <precision>-1</precision> | |
| 2597 | + </field> | |
| 2598 | + <field> | |
| 2599 | + <name>fcno1</name> | |
| 2600 | + <type>String</type> | |
| 2601 | + <format/> | |
| 2602 | + <currency/> | |
| 2603 | + <decimal/> | |
| 2604 | + <group/> | |
| 2605 | + <nullif/> | |
| 2606 | + <trim_type>none</trim_type> | |
| 2607 | + <length>-1</length> | |
| 2608 | + <precision>-1</precision> | |
| 2609 | + </field> | |
| 2610 | + <field> | |
| 2611 | + <name>fcno2</name> | |
| 2612 | + <type>String</type> | |
| 2613 | + <format/> | |
| 2614 | + <currency/> | |
| 2615 | + <decimal/> | |
| 2616 | + <group/> | |
| 2617 | + <nullif/> | |
| 2618 | + <trim_type>none</trim_type> | |
| 2619 | + <length>-1</length> | |
| 2620 | + <precision>-1</precision> | |
| 2621 | + </field> | |
| 2622 | + <field> | |
| 2623 | + <name>fcno3</name> | |
| 2624 | + <type>String</type> | |
| 2625 | + <format/> | |
| 2626 | + <currency/> | |
| 2627 | + <decimal/> | |
| 2628 | + <group/> | |
| 2629 | + <nullif/> | |
| 2630 | + <trim_type>none</trim_type> | |
| 2631 | + <length>-1</length> | |
| 2632 | + <precision>-1</precision> | |
| 2633 | + </field> | |
| 2634 | + <field> | |
| 2635 | + <name>fcno4</name> | |
| 2636 | + <type>String</type> | |
| 2637 | + <format/> | |
| 2638 | + <currency/> | |
| 2639 | + <decimal/> | |
| 2640 | + <group/> | |
| 2641 | + <nullif/> | |
| 2642 | + <trim_type>none</trim_type> | |
| 2643 | + <length>-1</length> | |
| 2644 | + <precision>-1</precision> | |
| 2645 | + </field> | |
| 2646 | + <field> | |
| 2647 | + <name>fcno5</name> | |
| 2648 | + <type>String</type> | |
| 2649 | + <format/> | |
| 2650 | + <currency/> | |
| 2651 | + <decimal/> | |
| 2652 | + <group/> | |
| 2653 | + <nullif/> | |
| 2654 | + <trim_type>none</trim_type> | |
| 2655 | + <length>-1</length> | |
| 2656 | + <precision>-1</precision> | |
| 2657 | + </field> | |
| 2658 | + <field> | |
| 2659 | + <name>fcno6</name> | |
| 2660 | + <type>String</type> | |
| 2661 | + <format/> | |
| 2662 | + <currency/> | |
| 2663 | + <decimal/> | |
| 2664 | + <group/> | |
| 2665 | + <nullif/> | |
| 2666 | + <trim_type>none</trim_type> | |
| 2667 | + <length>-1</length> | |
| 2668 | + <precision>-1</precision> | |
| 2669 | + </field> | |
| 2670 | + <field> | |
| 2671 | + <name>fcno7</name> | |
| 2672 | + <type>String</type> | |
| 2673 | + <format/> | |
| 2674 | + <currency/> | |
| 2675 | + <decimal/> | |
| 2676 | + <group/> | |
| 2677 | + <nullif/> | |
| 2678 | + <trim_type>none</trim_type> | |
| 2679 | + <length>-1</length> | |
| 2680 | + <precision>-1</precision> | |
| 2681 | + </field> | |
| 2682 | + <field> | |
| 2683 | + <name>fcno8</name> | |
| 2684 | + <type>String</type> | |
| 2685 | + <format/> | |
| 2686 | + <currency/> | |
| 2687 | + <decimal/> | |
| 2688 | + <group/> | |
| 2689 | + <nullif/> | |
| 2690 | + <trim_type>none</trim_type> | |
| 2691 | + <length>-1</length> | |
| 2692 | + <precision>-1</precision> | |
| 2693 | + </field> | |
| 2694 | + <field> | |
| 2695 | + <name>fcno9</name> | |
| 2696 | + <type>String</type> | |
| 2697 | + <format/> | |
| 2698 | + <currency/> | |
| 2699 | + <decimal/> | |
| 2700 | + <group/> | |
| 2701 | + <nullif/> | |
| 2702 | + <trim_type>none</trim_type> | |
| 2703 | + <length>-1</length> | |
| 2704 | + <precision>-1</precision> | |
| 2705 | + </field> | |
| 2706 | + <field> | |
| 2707 | + <name>fcno10</name> | |
| 2708 | + <type>String</type> | |
| 2709 | + <format/> | |
| 2710 | + <currency/> | |
| 2711 | + <decimal/> | |
| 2712 | + <group/> | |
| 2713 | + <nullif/> | |
| 2714 | + <trim_type>none</trim_type> | |
| 2715 | + <length>-1</length> | |
| 2716 | + <precision>-1</precision> | |
| 2717 | + </field> | |
| 2718 | + <field> | |
| 2719 | + <name>fcno11</name> | |
| 2720 | + <type>String</type> | |
| 2721 | + <format/> | |
| 2722 | + <currency/> | |
| 2723 | + <decimal/> | |
| 2724 | + <group/> | |
| 2725 | + <nullif/> | |
| 2726 | + <trim_type>none</trim_type> | |
| 2727 | + <length>-1</length> | |
| 2728 | + <precision>-1</precision> | |
| 2729 | + </field> | |
| 2730 | + <field> | |
| 2731 | + <name>fcno12</name> | |
| 2732 | + <type>String</type> | |
| 2733 | + <format/> | |
| 2734 | + <currency/> | |
| 2735 | + <decimal/> | |
| 2736 | + <group/> | |
| 2737 | + <nullif/> | |
| 2738 | + <trim_type>none</trim_type> | |
| 2739 | + <length>-1</length> | |
| 2740 | + <precision>-1</precision> | |
| 2741 | + </field> | |
| 2742 | + <field> | |
| 2743 | + <name>fcno13</name> | |
| 2744 | + <type>String</type> | |
| 2745 | + <format/> | |
| 2746 | + <currency/> | |
| 2747 | + <decimal/> | |
| 2748 | + <group/> | |
| 2749 | + <nullif/> | |
| 2750 | + <trim_type>none</trim_type> | |
| 2751 | + <length>-1</length> | |
| 2752 | + <precision>-1</precision> | |
| 2753 | + </field> | |
| 2754 | + <field> | |
| 2755 | + <name>fcno14</name> | |
| 2756 | + <type>String</type> | |
| 2757 | + <format/> | |
| 2758 | + <currency/> | |
| 2759 | + <decimal/> | |
| 2760 | + <group/> | |
| 2761 | + <nullif/> | |
| 2762 | + <trim_type>none</trim_type> | |
| 2763 | + <length>-1</length> | |
| 2764 | + <precision>-1</precision> | |
| 2765 | + </field> | |
| 2766 | + <field> | |
| 2767 | + <name>fcno15</name> | |
| 2768 | + <type>String</type> | |
| 2769 | + <format/> | |
| 2770 | + <currency/> | |
| 2771 | + <decimal/> | |
| 2772 | + <group/> | |
| 2773 | + <nullif/> | |
| 2774 | + <trim_type>none</trim_type> | |
| 2775 | + <length>-1</length> | |
| 2776 | + <precision>-1</precision> | |
| 2777 | + </field> | |
| 2778 | + <field> | |
| 2779 | + <name>fcno16</name> | |
| 2780 | + <type>String</type> | |
| 2781 | + <format/> | |
| 2782 | + <currency/> | |
| 2783 | + <decimal/> | |
| 2784 | + <group/> | |
| 2785 | + <nullif/> | |
| 2786 | + <trim_type>none</trim_type> | |
| 2787 | + <length>-1</length> | |
| 2788 | + <precision>-1</precision> | |
| 2789 | + </field> | |
| 2790 | + <field> | |
| 2791 | + <name>fcno17</name> | |
| 2792 | + <type>String</type> | |
| 2793 | + <format/> | |
| 2794 | + <currency/> | |
| 2795 | + <decimal/> | |
| 2796 | + <group/> | |
| 2797 | + <nullif/> | |
| 2798 | + <trim_type>none</trim_type> | |
| 2799 | + <length>-1</length> | |
| 2800 | + <precision>-1</precision> | |
| 2801 | + </field> | |
| 2802 | + <field> | |
| 2803 | + <name>fcno18</name> | |
| 2804 | + <type>String</type> | |
| 2805 | + <format/> | |
| 2806 | + <currency/> | |
| 2807 | + <decimal/> | |
| 2808 | + <group/> | |
| 2809 | + <nullif/> | |
| 2810 | + <trim_type>none</trim_type> | |
| 2811 | + <length>-1</length> | |
| 2812 | + <precision>-1</precision> | |
| 2813 | + </field> | |
| 2814 | + <field> | |
| 2815 | + <name>fcno19</name> | |
| 2816 | + <type>String</type> | |
| 2817 | + <format/> | |
| 2818 | + <currency/> | |
| 2819 | + <decimal/> | |
| 2820 | + <group/> | |
| 2821 | + <nullif/> | |
| 2822 | + <trim_type>none</trim_type> | |
| 2823 | + <length>-1</length> | |
| 2824 | + <precision>-1</precision> | |
| 2825 | + </field> | |
| 2826 | + <field> | |
| 2827 | + <name>fcno20</name> | |
| 2828 | + <type>String</type> | |
| 2829 | + <format/> | |
| 2830 | + <currency/> | |
| 2831 | + <decimal/> | |
| 2832 | + <group/> | |
| 2833 | + <nullif/> | |
| 2834 | + <trim_type>none</trim_type> | |
| 2835 | + <length>-1</length> | |
| 2836 | + <precision>-1</precision> | |
| 2837 | + </field> | |
| 2838 | + <field> | |
| 2839 | + <name>fcno21</name> | |
| 2840 | + <type>String</type> | |
| 2841 | + <format/> | |
| 2842 | + <currency/> | |
| 2843 | + <decimal/> | |
| 2844 | + <group/> | |
| 2845 | + <nullif/> | |
| 2846 | + <trim_type>none</trim_type> | |
| 2847 | + <length>-1</length> | |
| 2848 | + <precision>-1</precision> | |
| 2849 | + </field> | |
| 2850 | + <field> | |
| 2851 | + <name>fcno22</name> | |
| 2852 | + <type>String</type> | |
| 2853 | + <format/> | |
| 2854 | + <currency/> | |
| 2855 | + <decimal/> | |
| 2856 | + <group/> | |
| 2857 | + <nullif/> | |
| 2858 | + <trim_type>none</trim_type> | |
| 2859 | + <length>-1</length> | |
| 2860 | + <precision>-1</precision> | |
| 2861 | + </field> | |
| 2862 | + <field> | |
| 2863 | + <name>fcno23</name> | |
| 2864 | + <type>String</type> | |
| 2865 | + <format/> | |
| 2866 | + <currency/> | |
| 2867 | + <decimal/> | |
| 2868 | + <group/> | |
| 2869 | + <nullif/> | |
| 2870 | + <trim_type>none</trim_type> | |
| 2871 | + <length>-1</length> | |
| 2872 | + <precision>-1</precision> | |
| 2873 | + </field> | |
| 2874 | + <field> | |
| 2875 | + <name>fcno24</name> | |
| 2876 | + <type>String</type> | |
| 2877 | + <format/> | |
| 2878 | + <currency/> | |
| 2879 | + <decimal/> | |
| 2880 | + <group/> | |
| 2881 | + <nullif/> | |
| 2882 | + <trim_type>none</trim_type> | |
| 2883 | + <length>-1</length> | |
| 2884 | + <precision>-1</precision> | |
| 2885 | + </field> | |
| 2886 | + <field> | |
| 2887 | + <name>fcno25</name> | |
| 2888 | + <type>String</type> | |
| 2889 | + <format/> | |
| 2890 | + <currency/> | |
| 2891 | + <decimal/> | |
| 2892 | + <group/> | |
| 2893 | + <nullif/> | |
| 2894 | + <trim_type>none</trim_type> | |
| 2895 | + <length>-1</length> | |
| 2896 | + <precision>-1</precision> | |
| 2897 | + </field> | |
| 2898 | + <field> | |
| 2899 | + <name>fcno26</name> | |
| 2900 | + <type>String</type> | |
| 2901 | + <format/> | |
| 2902 | + <currency/> | |
| 2903 | + <decimal/> | |
| 2904 | + <group/> | |
| 2905 | + <nullif/> | |
| 2906 | + <trim_type>none</trim_type> | |
| 2907 | + <length>-1</length> | |
| 2908 | + <precision>-1</precision> | |
| 2909 | + </field> | |
| 2910 | + <field> | |
| 2911 | + <name>fcno27</name> | |
| 2912 | + <type>String</type> | |
| 2913 | + <format/> | |
| 2914 | + <currency/> | |
| 2915 | + <decimal/> | |
| 2916 | + <group/> | |
| 2917 | + <nullif/> | |
| 2918 | + <trim_type>none</trim_type> | |
| 2919 | + <length>-1</length> | |
| 2920 | + <precision>-1</precision> | |
| 2921 | + </field> | |
| 2922 | + <field> | |
| 2923 | + <name>fcno28</name> | |
| 2924 | + <type>String</type> | |
| 2925 | + <format/> | |
| 2926 | + <currency/> | |
| 2927 | + <decimal/> | |
| 2928 | + <group/> | |
| 2929 | + <nullif/> | |
| 2930 | + <trim_type>none</trim_type> | |
| 2931 | + <length>-1</length> | |
| 2932 | + <precision>-1</precision> | |
| 2933 | + </field> | |
| 2934 | + <field> | |
| 2935 | + <name>fcno29</name> | |
| 2936 | + <type>String</type> | |
| 2937 | + <format/> | |
| 2938 | + <currency/> | |
| 2939 | + <decimal/> | |
| 2940 | + <group/> | |
| 2941 | + <nullif/> | |
| 2942 | + <trim_type>none</trim_type> | |
| 2943 | + <length>-1</length> | |
| 2944 | + <precision>-1</precision> | |
| 2945 | + </field> | |
| 2946 | + <field> | |
| 2947 | + <name>fcno30</name> | |
| 2948 | + <type>String</type> | |
| 2949 | + <format/> | |
| 2950 | + <currency/> | |
| 2951 | + <decimal/> | |
| 2952 | + <group/> | |
| 2953 | + <nullif/> | |
| 2954 | + <trim_type>none</trim_type> | |
| 2955 | + <length>-1</length> | |
| 2956 | + <precision>-1</precision> | |
| 2957 | + </field> | |
| 2958 | + <field> | |
| 2959 | + <name>fcno31</name> | |
| 2960 | + <type>String</type> | |
| 2961 | + <format/> | |
| 2962 | + <currency/> | |
| 2963 | + <decimal/> | |
| 2964 | + <group/> | |
| 2965 | + <nullif/> | |
| 2966 | + <trim_type>none</trim_type> | |
| 2967 | + <length>-1</length> | |
| 2968 | + <precision>-1</precision> | |
| 2969 | + </field> | |
| 2970 | + <field> | |
| 2971 | + <name>fcno32</name> | |
| 2972 | + <type>String</type> | |
| 2973 | + <format/> | |
| 2974 | + <currency/> | |
| 2975 | + <decimal/> | |
| 2976 | + <group/> | |
| 2977 | + <nullif/> | |
| 2978 | + <trim_type>none</trim_type> | |
| 2979 | + <length>-1</length> | |
| 2980 | + <precision>-1</precision> | |
| 2981 | + </field> | |
| 2982 | + <field> | |
| 2983 | + <name>fcno33</name> | |
| 2984 | + <type>String</type> | |
| 2985 | + <format/> | |
| 2986 | + <currency/> | |
| 2987 | + <decimal/> | |
| 2988 | + <group/> | |
| 2989 | + <nullif/> | |
| 2990 | + <trim_type>none</trim_type> | |
| 2991 | + <length>-1</length> | |
| 2992 | + <precision>-1</precision> | |
| 2993 | + </field> | |
| 2994 | + <field> | |
| 2995 | + <name>fcno34</name> | |
| 2996 | + <type>String</type> | |
| 2997 | + <format/> | |
| 2998 | + <currency/> | |
| 2999 | + <decimal/> | |
| 3000 | + <group/> | |
| 3001 | + <nullif/> | |
| 3002 | + <trim_type>none</trim_type> | |
| 3003 | + <length>-1</length> | |
| 3004 | + <precision>-1</precision> | |
| 3005 | + </field> | |
| 3006 | + <field> | |
| 3007 | + <name>fcno35</name> | |
| 3008 | + <type>String</type> | |
| 3009 | + <format/> | |
| 3010 | + <currency/> | |
| 3011 | + <decimal/> | |
| 3012 | + <group/> | |
| 3013 | + <nullif/> | |
| 3014 | + <trim_type>none</trim_type> | |
| 3015 | + <length>-1</length> | |
| 3016 | + <precision>-1</precision> | |
| 3017 | + </field> | |
| 3018 | + <field> | |
| 3019 | + <name>fcno36</name> | |
| 3020 | + <type>String</type> | |
| 3021 | + <format/> | |
| 3022 | + <currency/> | |
| 3023 | + <decimal/> | |
| 3024 | + <group/> | |
| 3025 | + <nullif/> | |
| 3026 | + <trim_type>none</trim_type> | |
| 3027 | + <length>-1</length> | |
| 3028 | + <precision>-1</precision> | |
| 3029 | + </field> | |
| 3030 | + <field> | |
| 3031 | + <name>fcno37</name> | |
| 3032 | + <type>String</type> | |
| 3033 | + <format/> | |
| 3034 | + <currency/> | |
| 3035 | + <decimal/> | |
| 3036 | + <group/> | |
| 3037 | + <nullif/> | |
| 3038 | + <trim_type>none</trim_type> | |
| 3039 | + <length>-1</length> | |
| 3040 | + <precision>-1</precision> | |
| 3041 | + </field> | |
| 3042 | + <field> | |
| 3043 | + <name>fcno38</name> | |
| 3044 | + <type>String</type> | |
| 3045 | + <format/> | |
| 3046 | + <currency/> | |
| 3047 | + <decimal/> | |
| 3048 | + <group/> | |
| 3049 | + <nullif/> | |
| 3050 | + <trim_type>none</trim_type> | |
| 3051 | + <length>-1</length> | |
| 3052 | + <precision>-1</precision> | |
| 3053 | + </field> | |
| 3054 | + <field> | |
| 3055 | + <name>fcno39</name> | |
| 3056 | + <type>String</type> | |
| 3057 | + <format/> | |
| 3058 | + <currency/> | |
| 3059 | + <decimal/> | |
| 3060 | + <group/> | |
| 3061 | + <nullif/> | |
| 3062 | + <trim_type>none</trim_type> | |
| 3063 | + <length>-1</length> | |
| 3064 | + <precision>-1</precision> | |
| 3065 | + </field> | |
| 3066 | + <field> | |
| 3067 | + <name>fcno40</name> | |
| 3068 | + <type>String</type> | |
| 3069 | + <format/> | |
| 3070 | + <currency/> | |
| 3071 | + <decimal/> | |
| 3072 | + <group/> | |
| 3073 | + <nullif/> | |
| 3074 | + <trim_type>none</trim_type> | |
| 3075 | + <length>-1</length> | |
| 3076 | + <precision>-1</precision> | |
| 3077 | + </field> | |
| 3078 | + <field> | |
| 3079 | + <name>fcno41</name> | |
| 3080 | + <type>String</type> | |
| 3081 | + <format/> | |
| 3082 | + <currency/> | |
| 3083 | + <decimal/> | |
| 3084 | + <group/> | |
| 3085 | + <nullif/> | |
| 3086 | + <trim_type>none</trim_type> | |
| 3087 | + <length>-1</length> | |
| 3088 | + <precision>-1</precision> | |
| 3089 | + </field> | |
| 3090 | + <field> | |
| 3091 | + <name>fcno42</name> | |
| 3092 | + <type>String</type> | |
| 3093 | + <format/> | |
| 3094 | + <currency/> | |
| 3095 | + <decimal/> | |
| 3096 | + <group/> | |
| 3097 | + <nullif/> | |
| 3098 | + <trim_type>none</trim_type> | |
| 3099 | + <length>-1</length> | |
| 3100 | + <precision>-1</precision> | |
| 3101 | + </field> | |
| 3102 | + <field> | |
| 3103 | + <name>fcno43</name> | |
| 3104 | + <type>String</type> | |
| 3105 | + <format/> | |
| 3106 | + <currency/> | |
| 3107 | + <decimal/> | |
| 3108 | + <group/> | |
| 3109 | + <nullif/> | |
| 3110 | + <trim_type>none</trim_type> | |
| 3111 | + <length>-1</length> | |
| 3112 | + <precision>-1</precision> | |
| 3113 | + </field> | |
| 3114 | + <field> | |
| 3115 | + <name>fcno44</name> | |
| 3116 | + <type>String</type> | |
| 3117 | + <format/> | |
| 3118 | + <currency/> | |
| 3119 | + <decimal/> | |
| 3120 | + <group/> | |
| 3121 | + <nullif/> | |
| 3122 | + <trim_type>none</trim_type> | |
| 3123 | + <length>-1</length> | |
| 3124 | + <precision>-1</precision> | |
| 3125 | + </field> | |
| 3126 | + <field> | |
| 3127 | + <name>fcno45</name> | |
| 3128 | + <type>String</type> | |
| 3129 | + <format/> | |
| 3130 | + <currency/> | |
| 3131 | + <decimal/> | |
| 3132 | + <group/> | |
| 3133 | + <nullif/> | |
| 3134 | + <trim_type>none</trim_type> | |
| 3135 | + <length>-1</length> | |
| 3136 | + <precision>-1</precision> | |
| 3137 | + </field> | |
| 3138 | + <field> | |
| 3139 | + <name>fcno46</name> | |
| 3140 | + <type>String</type> | |
| 3141 | + <format/> | |
| 3142 | + <currency/> | |
| 3143 | + <decimal/> | |
| 3144 | + <group/> | |
| 3145 | + <nullif/> | |
| 3146 | + <trim_type>none</trim_type> | |
| 3147 | + <length>-1</length> | |
| 3148 | + <precision>-1</precision> | |
| 3149 | + </field> | |
| 3150 | + <field> | |
| 3151 | + <name>fcno47</name> | |
| 3152 | + <type>String</type> | |
| 3153 | + <format/> | |
| 3154 | + <currency/> | |
| 3155 | + <decimal/> | |
| 3156 | + <group/> | |
| 3157 | + <nullif/> | |
| 3158 | + <trim_type>none</trim_type> | |
| 3159 | + <length>-1</length> | |
| 3160 | + <precision>-1</precision> | |
| 3161 | + </field> | |
| 3162 | + <field> | |
| 3163 | + <name>fcno48</name> | |
| 3164 | + <type>String</type> | |
| 3165 | + <format/> | |
| 3166 | + <currency/> | |
| 3167 | + <decimal/> | |
| 3168 | + <group/> | |
| 3169 | + <nullif/> | |
| 3170 | + <trim_type>none</trim_type> | |
| 3171 | + <length>-1</length> | |
| 3172 | + <precision>-1</precision> | |
| 3173 | + </field> | |
| 3174 | + <field> | |
| 3175 | + <name>fcno49</name> | |
| 3176 | + <type>String</type> | |
| 3177 | + <format/> | |
| 3178 | + <currency/> | |
| 3179 | + <decimal/> | |
| 3180 | + <group/> | |
| 3181 | + <nullif/> | |
| 3182 | + <trim_type>none</trim_type> | |
| 3183 | + <length>-1</length> | |
| 3184 | + <precision>-1</precision> | |
| 3185 | + </field> | |
| 3186 | + <field> | |
| 3187 | + <name>fcno50</name> | |
| 3188 | + <type>String</type> | |
| 3189 | + <format/> | |
| 3190 | + <currency/> | |
| 3191 | + <decimal/> | |
| 3192 | + <group/> | |
| 3193 | + <nullif/> | |
| 3194 | + <trim_type>none</trim_type> | |
| 3195 | + <length>-1</length> | |
| 3196 | + <precision>-1</precision> | |
| 3197 | + </field> | |
| 3198 | + <field> | |
| 3199 | + <name>fcno51</name> | |
| 3200 | + <type>String</type> | |
| 3201 | + <format/> | |
| 3202 | + <currency/> | |
| 3203 | + <decimal/> | |
| 3204 | + <group/> | |
| 3205 | + <nullif/> | |
| 3206 | + <trim_type>none</trim_type> | |
| 3207 | + <length>-1</length> | |
| 3208 | + <precision>-1</precision> | |
| 3209 | + </field> | |
| 3210 | + <field> | |
| 3211 | + <name>fcno52</name> | |
| 3212 | + <type>String</type> | |
| 3213 | + <format/> | |
| 3214 | + <currency/> | |
| 3215 | + <decimal/> | |
| 3216 | + <group/> | |
| 3217 | + <nullif/> | |
| 3218 | + <trim_type>none</trim_type> | |
| 3219 | + <length>-1</length> | |
| 3220 | + <precision>-1</precision> | |
| 3221 | + </field> | |
| 3222 | + <field> | |
| 3223 | + <name>fcno53</name> | |
| 3224 | + <type>String</type> | |
| 3225 | + <format/> | |
| 3226 | + <currency/> | |
| 3227 | + <decimal/> | |
| 3228 | + <group/> | |
| 3229 | + <nullif/> | |
| 3230 | + <trim_type>none</trim_type> | |
| 3231 | + <length>-1</length> | |
| 3232 | + <precision>-1</precision> | |
| 3233 | + </field> | |
| 3234 | + <field> | |
| 3235 | + <name>fcno54</name> | |
| 3236 | + <type>String</type> | |
| 3237 | + <format/> | |
| 3238 | + <currency/> | |
| 3239 | + <decimal/> | |
| 3240 | + <group/> | |
| 3241 | + <nullif/> | |
| 3242 | + <trim_type>none</trim_type> | |
| 3243 | + <length>-1</length> | |
| 3244 | + <precision>-1</precision> | |
| 3245 | + </field> | |
| 3246 | + <field> | |
| 3247 | + <name>fcno55</name> | |
| 3248 | + <type>String</type> | |
| 3249 | + <format/> | |
| 3250 | + <currency/> | |
| 3251 | + <decimal/> | |
| 3252 | + <group/> | |
| 3253 | + <nullif/> | |
| 3254 | + <trim_type>none</trim_type> | |
| 3255 | + <length>-1</length> | |
| 3256 | + <precision>-1</precision> | |
| 3257 | + </field> | |
| 3258 | + <field> | |
| 3259 | + <name>fcno56</name> | |
| 3260 | + <type>String</type> | |
| 3261 | + <format/> | |
| 3262 | + <currency/> | |
| 3263 | + <decimal/> | |
| 3264 | + <group/> | |
| 3265 | + <nullif/> | |
| 3266 | + <trim_type>none</trim_type> | |
| 3267 | + <length>-1</length> | |
| 3268 | + <precision>-1</precision> | |
| 3269 | + </field> | |
| 3270 | + <field> | |
| 3271 | + <name>fcno57</name> | |
| 3272 | + <type>String</type> | |
| 3273 | + <format/> | |
| 3274 | + <currency/> | |
| 3275 | + <decimal/> | |
| 3276 | + <group/> | |
| 3277 | + <nullif/> | |
| 3278 | + <trim_type>none</trim_type> | |
| 3279 | + <length>-1</length> | |
| 3280 | + <precision>-1</precision> | |
| 3281 | + </field> | |
| 3282 | + <field> | |
| 3283 | + <name>fcno58</name> | |
| 3284 | + <type>String</type> | |
| 3285 | + <format/> | |
| 3286 | + <currency/> | |
| 3287 | + <decimal/> | |
| 3288 | + <group/> | |
| 3289 | + <nullif/> | |
| 3290 | + <trim_type>none</trim_type> | |
| 3291 | + <length>-1</length> | |
| 3292 | + <precision>-1</precision> | |
| 3293 | + </field> | |
| 3294 | + <field> | |
| 3295 | + <name>fcno59</name> | |
| 3296 | + <type>String</type> | |
| 3297 | + <format/> | |
| 3298 | + <currency/> | |
| 3299 | + <decimal/> | |
| 3300 | + <group/> | |
| 3301 | + <nullif/> | |
| 3302 | + <trim_type>none</trim_type> | |
| 3303 | + <length>-1</length> | |
| 3304 | + <precision>-1</precision> | |
| 3305 | + </field> | |
| 3306 | + <field> | |
| 3307 | + <name>fcno60</name> | |
| 3308 | + <type>String</type> | |
| 3309 | + <format/> | |
| 3310 | + <currency/> | |
| 3311 | + <decimal/> | |
| 3312 | + <group/> | |
| 3313 | + <nullif/> | |
| 3314 | + <trim_type>none</trim_type> | |
| 3315 | + <length>-1</length> | |
| 3316 | + <precision>-1</precision> | |
| 3317 | + </field> | |
| 3318 | + <field> | |
| 3319 | + <name>fcno61</name> | |
| 3320 | + <type>String</type> | |
| 3321 | + <format/> | |
| 3322 | + <currency/> | |
| 3323 | + <decimal/> | |
| 3324 | + <group/> | |
| 3325 | + <nullif/> | |
| 3326 | + <trim_type>none</trim_type> | |
| 3327 | + <length>-1</length> | |
| 3328 | + <precision>-1</precision> | |
| 3329 | + </field> | |
| 3330 | + <field> | |
| 3331 | + <name>fcno62</name> | |
| 3332 | + <type>String</type> | |
| 3333 | + <format/> | |
| 3334 | + <currency/> | |
| 3335 | + <decimal/> | |
| 3336 | + <group/> | |
| 3337 | + <nullif/> | |
| 3338 | + <trim_type>none</trim_type> | |
| 3339 | + <length>-1</length> | |
| 3340 | + <precision>-1</precision> | |
| 3341 | + </field> | |
| 3342 | + <field> | |
| 3343 | + <name>fcno63</name> | |
| 3344 | + <type>String</type> | |
| 3345 | + <format/> | |
| 3346 | + <currency/> | |
| 3347 | + <decimal/> | |
| 3348 | + <group/> | |
| 3349 | + <nullif/> | |
| 3350 | + <trim_type>none</trim_type> | |
| 3351 | + <length>-1</length> | |
| 3352 | + <precision>-1</precision> | |
| 3353 | + </field> | |
| 3354 | + <field> | |
| 3355 | + <name>fcno64</name> | |
| 3356 | + <type>String</type> | |
| 3357 | + <format/> | |
| 3358 | + <currency/> | |
| 3359 | + <decimal/> | |
| 3360 | + <group/> | |
| 3361 | + <nullif/> | |
| 3362 | + <trim_type>none</trim_type> | |
| 3363 | + <length>-1</length> | |
| 3364 | + <precision>-1</precision> | |
| 3365 | + </field> | |
| 3366 | + <field> | |
| 3367 | + <name>fcno65</name> | |
| 3368 | + <type>String</type> | |
| 3369 | + <format/> | |
| 3370 | + <currency/> | |
| 3371 | + <decimal/> | |
| 3372 | + <group/> | |
| 3373 | + <nullif/> | |
| 3374 | + <trim_type>none</trim_type> | |
| 3375 | + <length>-1</length> | |
| 3376 | + <precision>-1</precision> | |
| 3377 | + </field> | |
| 3378 | + <field> | |
| 3379 | + <name>fcno66</name> | |
| 3380 | + <type>String</type> | |
| 3381 | + <format/> | |
| 3382 | + <currency/> | |
| 3383 | + <decimal/> | |
| 3384 | + <group/> | |
| 3385 | + <nullif/> | |
| 3386 | + <trim_type>none</trim_type> | |
| 3387 | + <length>-1</length> | |
| 3388 | + <precision>-1</precision> | |
| 3389 | + </field> | |
| 3390 | + <field> | |
| 3391 | + <name>fcno67</name> | |
| 3392 | + <type>String</type> | |
| 3393 | + <format/> | |
| 3394 | + <currency/> | |
| 3395 | + <decimal/> | |
| 3396 | + <group/> | |
| 3397 | + <nullif/> | |
| 3398 | + <trim_type>none</trim_type> | |
| 3399 | + <length>-1</length> | |
| 3400 | + <precision>-1</precision> | |
| 3401 | + </field> | |
| 3402 | + <field> | |
| 3403 | + <name>fcno68</name> | |
| 3404 | + <type>String</type> | |
| 3405 | + <format/> | |
| 3406 | + <currency/> | |
| 3407 | + <decimal/> | |
| 3408 | + <group/> | |
| 3409 | + <nullif/> | |
| 3410 | + <trim_type>none</trim_type> | |
| 3411 | + <length>-1</length> | |
| 3412 | + <precision>-1</precision> | |
| 3413 | + </field> | |
| 3414 | + <field> | |
| 3415 | + <name>fcno69</name> | |
| 3416 | + <type>String</type> | |
| 3417 | + <format/> | |
| 3418 | + <currency/> | |
| 3419 | + <decimal/> | |
| 3420 | + <group/> | |
| 3421 | + <nullif/> | |
| 3422 | + <trim_type>none</trim_type> | |
| 3423 | + <length>-1</length> | |
| 3424 | + <precision>-1</precision> | |
| 3425 | + </field> | |
| 3426 | + <field> | |
| 3427 | + <name>fcno70</name> | |
| 3428 | + <type>String</type> | |
| 3429 | + <format/> | |
| 3430 | + <currency/> | |
| 3431 | + <decimal/> | |
| 3432 | + <group/> | |
| 3433 | + <nullif/> | |
| 3434 | + <trim_type>none</trim_type> | |
| 3435 | + <length>-1</length> | |
| 3436 | + <precision>-1</precision> | |
| 3437 | + </field> | |
| 3438 | + </fields> | |
| 3439 | + <cluster_schema/> | |
| 3440 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3441 | + <xloc>880</xloc> | |
| 3442 | + <yloc>365</yloc> | |
| 3443 | + <draw>Y</draw> | |
| 3444 | + </GUI> | |
| 3445 | + </step> | |
| 3446 | + | |
| 3447 | + <step> | |
| 3448 | + <name>合并内容</name> | |
| 3449 | + <type>ScriptValueMod</type> | |
| 3450 | + <description/> | |
| 3451 | + <distribute>Y</distribute> | |
| 3452 | + <custom_distribution/> | |
| 3453 | + <copies>1</copies> | |
| 3454 | + <partitioning> | |
| 3455 | + <method>none</method> | |
| 3456 | + <schema_name/> | |
| 3457 | + </partitioning> | |
| 3458 | + <compatible>N</compatible> | |
| 3459 | + <optimizationLevel>9</optimizationLevel> | |
| 3460 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3461 | + <jsScript_name>Script 1</jsScript_name> | |
| 3462 | + <jsScript_script>//Script here

// 顺序,id,fcsj,jhlc,zdname,bctype,xldir,isfb
var all_content_array = [];
var all_content = ""; 
all_content_array.push(id);
all_content_array.push(fcsj);
all_content_array.push(jhlc);
all_content_array.push(fczdName);
all_content_array.push(bc_type);
all_content_array.push(xl_dir);
all_content_array.push(isfb);
all_content_array.push(qdz || 'null');
all_content_array.push(zdz || 'null');
all_content_array.push(tcc || 'null');

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 3463 | + </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 3464 | + <rename>all_content</rename> | |
| 3465 | + <type>String</type> | |
| 3466 | + <length>-1</length> | |
| 3467 | + <precision>-1</precision> | |
| 3468 | + <replace>N</replace> | |
| 3469 | + </field> </fields> <cluster_schema/> | |
| 3470 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3471 | + <xloc>551</xloc> | |
| 3472 | + <yloc>366</yloc> | |
| 3473 | + <draw>Y</draw> | |
| 3474 | + </GUI> | |
| 3475 | + </step> | |
| 3476 | + | |
| 3477 | + <step_error_handling> | |
| 3478 | + </step_error_handling> | |
| 3479 | + <slave-step-copy-partition-distribution> | |
| 3480 | +</slave-step-copy-partition-distribution> | |
| 3481 | + <slave_transformation>N</slave_transformation> | |
| 3482 | + | |
| 3483 | +</transformation> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/dts2/employeeGroup/saEmployeegroup.js
| ... | ... | @@ -53,6 +53,38 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 53 | 53 | self.$$dataFBSelected = []; // 选中的分班人员组配置列表 |
| 54 | 54 | self.$$dataFBInternalSelected = undefined; // 分班组内人员选中标识 |
| 55 | 55 | self.$$dataFBSelectedStart = undefined; // 选中的起始分班人员组合 |
| 56 | + self.$$isAll = false; // 是否显示全部 | |
| 57 | + self.$$showNumber = 10; // 显示的记录数 | |
| 58 | + self.$$calcuData = function() { // 处理$$data数据 | |
| 59 | + console.log(self.$$searchText); | |
| 60 | + angular.forEach(self.$$dataReal, function(obj) { | |
| 61 | + if (self.$$isAll) { // 显示全部 | |
| 62 | + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件 | |
| 63 | + if (obj.$fullChars.indexOf(self.$$searchText) != -1 | |
| 64 | + || obj.$camelChars.indexOf(self.$$searchText) != -1 | |
| 65 | + || obj.$str.indexOf(self.$$searchText) != -1) { | |
| 66 | + this.push(obj); | |
| 67 | + } | |
| 68 | + } else { | |
| 69 | + this.push(obj); | |
| 70 | + } | |
| 71 | + } else { // 显示限定数量 | |
| 72 | + if (this.length < self.$$showNumber) { | |
| 73 | + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件 | |
| 74 | + if (obj.$fullChars.indexOf(self.$$searchText) != -1 | |
| 75 | + || obj.$camelChars.indexOf(self.$$searchText) != -1 | |
| 76 | + || obj.$str.indexOf(self.$$searchText) != -1) { | |
| 77 | + this.push(obj); | |
| 78 | + } | |
| 79 | + } else { | |
| 80 | + this.push(obj); | |
| 81 | + } | |
| 82 | + } | |
| 83 | + } | |
| 84 | + }, self.$$data); | |
| 85 | + | |
| 86 | + }; | |
| 87 | + | |
| 56 | 88 | |
| 57 | 89 | //self.$$dataFBSelected = [ |
| 58 | 90 | // {isstart: true, group: [ |
| ... | ... | @@ -127,38 +159,13 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 127 | 159 | } |
| 128 | 160 | }); |
| 129 | 161 | tElem.on('keyup', '[name=rysearch]', function() { |
| 130 | - console.log(scope[ctrlAs]["$$searchText"]); | |
| 131 | - var sText = scope[ctrlAs]["$$searchText"]; | |
| 132 | - if (sText && sText != "") { | |
| 133 | - // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无 | |
| 134 | - // 另一种做法可以写在$watch方法中 | |
| 135 | - scope.$apply(function() { | |
| 136 | - scope[ctrlAs].$$data = []; | |
| 137 | - for (var k = 0; k < scope[ctrlAs].$$dataReal.length; k++) { | |
| 138 | - var upTerm = sText.toUpperCase(); | |
| 139 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 140 | - if (scope[ctrlAs].$$dataReal[k].$fullChars.indexOf(upTerm) != -1 | |
| 141 | - || scope[ctrlAs].$$dataReal[k].$camelChars.indexOf(upTerm) != -1 | |
| 142 | - || scope[ctrlAs].$$dataReal[k].$str.indexOf(upTerm) != -1) { | |
| 143 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[k]); | |
| 144 | - } | |
| 145 | - } else { | |
| 146 | - break; | |
| 147 | - } | |
| 148 | - } | |
| 149 | - }); | |
| 150 | - } else { | |
| 151 | - scope.$apply(function() { | |
| 152 | - scope[ctrlAs].$$data = []; | |
| 153 | - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) { | |
| 154 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 155 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]); | |
| 156 | - } else { | |
| 157 | - break; | |
| 158 | - } | |
| 159 | - } | |
| 160 | - }); | |
| 161 | - } | |
| 162 | + // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无 | |
| 163 | + // 另一种做法可以写在$watch方法中 | |
| 164 | + scope.$apply(function() { | |
| 165 | + scope[ctrlAs].$$data = []; | |
| 166 | + scope[ctrlAs].$$calcuData(); | |
| 167 | + | |
| 168 | + }); | |
| 162 | 169 | }); |
| 163 | 170 | |
| 164 | 171 | |
| ... | ... | @@ -605,6 +612,21 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 605 | 612 | } |
| 606 | 613 | ); |
| 607 | 614 | |
| 615 | + // 监控是否显示所有数据,$$isAll 变化 | |
| 616 | + scope.$watch( | |
| 617 | + function() { | |
| 618 | + return scope[ctrlAs].$$isAll; | |
| 619 | + }, | |
| 620 | + function(newValue, oldValue) { | |
| 621 | + console.log("dfdfdfdfdf"); | |
| 622 | + if (scope[ctrlAs].$$dataReal.length > 0) { | |
| 623 | + scope[ctrlAs].$$data = []; | |
| 624 | + scope[ctrlAs].$$calcuData(); | |
| 625 | + } | |
| 626 | + }, | |
| 627 | + true | |
| 628 | + ); | |
| 629 | + | |
| 608 | 630 | |
| 609 | 631 | // 监控线路id的变化 |
| 610 | 632 | attr.$observe("xlidvalue", function(value) { |
| ... | ... | @@ -621,13 +643,16 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 621 | 643 | angular.forEach(result.content, function(obj) { |
| 622 | 644 | var n1 = obj.jsy == null ? "" : (obj.jsy.personnelName || ""); |
| 623 | 645 | var n2 = obj.spy == null ? "" : (obj.spy.personnelName || ""); |
| 624 | - var c1 = obj.jsy == null ? "" : (obj.jsy.jobCode || ""); | |
| 625 | - var c2 = obj.spy == null ? "" : (obj.spy.jobCode || ""); | |
| 646 | + var n3 = obj.dbbm || ""; | |
| 647 | + //var c1 = obj.jsy == null ? "" : (obj.jsy.jobCode || ""); | |
| 648 | + //var c2 = obj.spy == null ? "" : (obj.spy.jobCode || ""); | |
| 649 | + | |
| 626 | 650 | var str = []; |
| 627 | 651 | str.push(n1); |
| 628 | 652 | str.push(n2); |
| 629 | - str.push(c1); | |
| 630 | - str.push(c2); | |
| 653 | + str.push(n3); | |
| 654 | + //str.push(c1); | |
| 655 | + //str.push(c2); | |
| 631 | 656 | this.push({ |
| 632 | 657 | id: obj.id, |
| 633 | 658 | dbbm: obj.dbbm, |
| ... | ... | @@ -640,13 +665,7 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 640 | 665 | }, scope[ctrlAs].$$dataReal); |
| 641 | 666 | |
| 642 | 667 | scope[ctrlAs].$$data = []; |
| 643 | - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) { | |
| 644 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 645 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]); | |
| 646 | - } else { | |
| 647 | - break; | |
| 648 | - } | |
| 649 | - } | |
| 668 | + scope[ctrlAs].$$calcuData(); | |
| 650 | 669 | |
| 651 | 670 | if (scope[ctrlAs].$$data_init) { |
| 652 | 671 | scope[ctrlAs].$$dataSelected = []; | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/dts2/employeeGroup/saEmployeegroupTemplate.html
| ... | ... | @@ -79,15 +79,14 @@ |
| 79 | 79 | </div> |
| 80 | 80 | <div class="col-md-3" style="padding-left: 0px;"> |
| 81 | 81 | <input name="rysearch" ng-model="$saEmployeegroupCtrl.$$searchText" |
| 82 | - type="text" class="input-sm" style="width: 120px; height: 20px; border: 1px solid #32C5D2;" placeholder="输入名字或工号..."/> | |
| 82 | + type="text" class="input-sm" style="width: 120px; height: 20px; border: 1px solid #32C5D2;" placeholder="输入拼音或编码..."/> | |
| 83 | 83 | </div> |
| 84 | - | |
| 85 | - <div class="col-md-2" style="min-height: 19px; color: black;"> | |
| 86 | - <div class="col-md-5" style="padding-left: 0px; padding-right: 0px;"> | |
| 87 | - <input type="checkbox" ng-model="$saEmployeegroupCtrl.$$isFB"/> | |
| 84 | + <div class="col-md-2" style="min-height: 19px; color: black; padding-left: 0px;"> | |
| 85 | + <div class="col-md-3" style="padding-left: 0px; padding-right: 0px;"> | |
| 86 | + <input type="checkbox" ng-model="$saEmployeegroupCtrl.$$isAll"/> | |
| 88 | 87 | </div> |
| 89 | - <div class="col-md-7" style="padding-left: 0px; padding-right: 0px;"> | |
| 90 | - <small>分班</small> | |
| 88 | + <div class="col-md-9" style="padding-left: 0px; padding-right: 0px;"> | |
| 89 | + <small>显示全部</small> | |
| 91 | 90 | </div> |
| 92 | 91 | </div> |
| 93 | 92 | |
| ... | ... | @@ -116,13 +115,21 @@ |
| 116 | 115 | |
| 117 | 116 | <!-- 不分班 --> |
| 118 | 117 | <div class="col-md-12 employee-input" ng-if="!$saEmployeegroupCtrl.$$isFB"> |
| 119 | - <div class="col-md-12"> | |
| 118 | + <div class="col-md-10"> | |
| 120 | 119 | <small> |
| 121 | 120 | 已经选中的人员列表,共{{$saEmployeegroupCtrl.$$dataSelected.length}}组, |
| 122 | 121 | 初始人员,{{$saEmployeegroupCtrl.$$dataSelectedStart == undefined ? "未选择" : "第" + ($saEmployeegroupCtrl.$$dataSelectedStart + 1) + "组"}} |
| 123 | 122 | </small> |
| 124 | 123 | |
| 125 | 124 | </div> |
| 125 | + <div class="col-md-2" style="min-height: 19px; color: black;"> | |
| 126 | + <div class="col-md-3" style="padding-left: 0px; padding-right: 0px;"> | |
| 127 | + <input type="checkbox" ng-model="$saEmployeegroupCtrl.$$isFB"/> | |
| 128 | + </div> | |
| 129 | + <div class="col-md-9" style="padding-left: 0px; padding-right: 0px;"> | |
| 130 | + <small>分班</small> | |
| 131 | + </div> | |
| 132 | + </div> | |
| 126 | 133 | </div> |
| 127 | 134 | <div class="col-md-12 employee-select-cont" ng-if="!$saEmployeegroupCtrl.$$isFB"> |
| 128 | 135 | <div class="employee-select-body"> |
| ... | ... | @@ -150,12 +157,20 @@ |
| 150 | 157 | |
| 151 | 158 | <!-- 分班 --> |
| 152 | 159 | <div class="col-md-12 employee-input" ng-if="$saEmployeegroupCtrl.$$isFB"> |
| 153 | - <div class="col-md-12"> | |
| 160 | + <div class="col-md-10"> | |
| 154 | 161 | <small> |
| 155 | 162 | 已经选中的分班人员列表,共{{$saEmployeegroupCtrl.$$dataFBSelected.length}}组, |
| 156 | 163 | 初始分班人员,{{$saEmployeegroupCtrl.$$dataFBSelectedStart == undefined ? "未选择" : "第" + ($saEmployeegroupCtrl.$$dataFBSelectedStart + 1) + "组"}} |
| 157 | 164 | </small> |
| 158 | 165 | </div> |
| 166 | + <div class="col-md-2" style="min-height: 19px; color: black;"> | |
| 167 | + <div class="col-md-3" style="padding-left: 0px; padding-right: 0px;"> | |
| 168 | + <input type="checkbox" ng-model="$saEmployeegroupCtrl.$$isFB"/> | |
| 169 | + </div> | |
| 170 | + <div class="col-md-9" style="padding-left: 0px; padding-right: 0px;"> | |
| 171 | + <small>分班</small> | |
| 172 | + </div> | |
| 173 | + </div> | |
| 159 | 174 | </div> |
| 160 | 175 | <div class="col-md-12 employee-select-cont" ng-if="$saEmployeegroupCtrl.$$isFB"> |
| 161 | 176 | <div class="employee-select-body"> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/dts2/guideboardGroup/saGuideboardgroup.js
| ... | ... | @@ -42,6 +42,37 @@ angular.module('ScheduleApp').directive('saGuideboardgroup', [ |
| 42 | 42 | self.$$searchText = undefined; // 搜索值 |
| 43 | 43 | self.$$dataSelected = []; // 选中的路牌列表 |
| 44 | 44 | self.$$dataSelectedStart = undefined; // 起始路牌 |
| 45 | + self.$$isAll = false; // 是否显示全部 | |
| 46 | + self.$$showNumber = 10; // 显示的记录数 | |
| 47 | + self.$$calcuData = function() { // 处理$$data数据 | |
| 48 | + console.log(self.$$searchText); | |
| 49 | + angular.forEach(self.$$dataReal, function(obj) { | |
| 50 | + if (self.$$isAll) { // 显示全部 | |
| 51 | + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件 | |
| 52 | + if (obj.$fullChars.indexOf(self.$$searchText) != -1 | |
| 53 | + || obj.$camelChars.indexOf(self.$$searchText) != -1 | |
| 54 | + || obj.lpname.indexOf(self.$$searchText) != -1) { | |
| 55 | + this.push(obj); | |
| 56 | + } | |
| 57 | + } else { | |
| 58 | + this.push(obj); | |
| 59 | + } | |
| 60 | + } else { // 显示限定数量 | |
| 61 | + if (this.length < self.$$showNumber) { | |
| 62 | + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件 | |
| 63 | + if (obj.$fullChars.indexOf(self.$$searchText) != -1 | |
| 64 | + || obj.$camelChars.indexOf(self.$$searchText) != -1 | |
| 65 | + || obj.lpname.indexOf(self.$$searchText) != -1) { | |
| 66 | + this.push(obj); | |
| 67 | + } | |
| 68 | + } else { | |
| 69 | + this.push(obj); | |
| 70 | + } | |
| 71 | + } | |
| 72 | + } | |
| 73 | + }, self.$$data); | |
| 74 | + | |
| 75 | + }; | |
| 45 | 76 | |
| 46 | 77 | //self.$$dataSelected = [ |
| 47 | 78 | // {lpid: 11, lpname: '路11', isstart: false}, |
| ... | ... | @@ -108,40 +139,13 @@ angular.module('ScheduleApp').directive('saGuideboardgroup', [ |
| 108 | 139 | } |
| 109 | 140 | }); |
| 110 | 141 | tElem.on('keyup', '[name=lpsearch]', function() { |
| 111 | - console.log(scope[ctrlAs]["$$searchText"]); | |
| 112 | - var sText = scope[ctrlAs]["$$searchText"]; | |
| 113 | - if (sText && sText != "") { | |
| 114 | - // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无 | |
| 115 | - // 另一种做法可以写在$watch方法中 | |
| 116 | - scope.$apply(function() { | |
| 117 | - scope[ctrlAs].$$data = []; | |
| 118 | - for (var k = 0; k < scope[ctrlAs].$$dataReal.length; k++) { | |
| 119 | - var upTerm = sText.toUpperCase(); | |
| 120 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 121 | - if (scope[ctrlAs].$$dataReal[k].$fullChars.indexOf(upTerm) != -1 | |
| 122 | - || scope[ctrlAs].$$dataReal[k].$camelChars.indexOf(upTerm) != -1 | |
| 123 | - || scope[ctrlAs].$$dataReal[k].lpname.indexOf(upTerm) != -1) { | |
| 124 | - //scope[ctrlAs].$$data.push(angular.copy(scope[ctrlAs].$$dataReal[k])); | |
| 125 | - | |
| 126 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[k]); | |
| 127 | - } | |
| 128 | - } else { | |
| 129 | - break; | |
| 130 | - } | |
| 131 | - } | |
| 132 | - }); | |
| 133 | - } else { | |
| 134 | - scope.$apply(function() { | |
| 135 | - scope[ctrlAs].$$data = []; | |
| 136 | - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) { | |
| 137 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 138 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]); | |
| 139 | - } else { | |
| 140 | - break; | |
| 141 | - } | |
| 142 | - } | |
| 143 | - }); | |
| 144 | - } | |
| 142 | + // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无 | |
| 143 | + // 另一种做法可以写在$watch方法中 | |
| 144 | + scope.$apply(function() { | |
| 145 | + scope[ctrlAs].$$data = []; | |
| 146 | + scope[ctrlAs].$$calcuData(); | |
| 147 | + | |
| 148 | + }); | |
| 145 | 149 | }); |
| 146 | 150 | |
| 147 | 151 | |
| ... | ... | @@ -314,6 +318,21 @@ angular.module('ScheduleApp').directive('saGuideboardgroup', [ |
| 314 | 318 | } |
| 315 | 319 | ); |
| 316 | 320 | |
| 321 | + // 监控是否显示所有数据,$$isAll 变化 | |
| 322 | + scope.$watch( | |
| 323 | + function() { | |
| 324 | + return scope[ctrlAs].$$isAll; | |
| 325 | + }, | |
| 326 | + function(newValue, oldValue) { | |
| 327 | + console.log("dfdfdfdfdf"); | |
| 328 | + if (scope[ctrlAs].$$dataReal.length > 0) { | |
| 329 | + scope[ctrlAs].$$data = []; | |
| 330 | + scope[ctrlAs].$$calcuData(); | |
| 331 | + } | |
| 332 | + }, | |
| 333 | + true | |
| 334 | + ); | |
| 335 | + | |
| 317 | 336 | // 监控线路id的变化 |
| 318 | 337 | attr.$observe("xlidvalue", function(value) { |
| 319 | 338 | if (value && value != "") { |
| ... | ... | @@ -337,13 +356,7 @@ angular.module('ScheduleApp').directive('saGuideboardgroup', [ |
| 337 | 356 | }, scope[ctrlAs].$$dataReal); |
| 338 | 357 | |
| 339 | 358 | scope[ctrlAs].$$data = []; |
| 340 | - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) { | |
| 341 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 342 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]); | |
| 343 | - } else { | |
| 344 | - break; | |
| 345 | - } | |
| 346 | - } | |
| 359 | + scope[ctrlAs].$$calcuData(); | |
| 347 | 360 | |
| 348 | 361 | if (scope[ctrlAs].$$data_init) { |
| 349 | 362 | scope[ctrlAs].$$dataSelected = []; | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/dts2/guideboardGroup/saGuideboardgroupTemplate.html
| ... | ... | @@ -53,7 +53,15 @@ |
| 53 | 53 | </div> |
| 54 | 54 | <div class="col-md-3" style="padding-left: 0px;"> |
| 55 | 55 | <input name="lpsearch" ng-model="$saGuideboardgroupCtrl.$$searchText" |
| 56 | - type="text" class="input-sm" style="height: 20px; border: 1px solid #32C5D2;" placeholder="输入路牌名字..."/> | |
| 56 | + type="text" class="input-sm" style="width: 120px; height: 20px; border: 1px solid #32C5D2;" placeholder="输入路牌名字..."/> | |
| 57 | + </div> | |
| 58 | + <div class="col-md-2" style="min-height: 19px; color: black; padding-left: 0px;"> | |
| 59 | + <div class="col-md-3" style="padding-left: 0px; padding-right: 0px;"> | |
| 60 | + <input type="checkbox" ng-model="$saGuideboardgroupCtrl.$$isAll"/> | |
| 61 | + </div> | |
| 62 | + <div class="col-md-9" style="padding-left: 0px; padding-right: 0px;"> | |
| 63 | + <small>显示全部</small> | |
| 64 | + </div> | |
| 57 | 65 | </div> |
| 58 | 66 | </div> |
| 59 | 67 | <div class="col-md-12 guideboard-select-cont"> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/prj-common-directive.js
| ... | ... | @@ -2247,6 +2247,37 @@ angular.module('ScheduleApp').directive('saGuideboardgroup', [ |
| 2247 | 2247 | self.$$searchText = undefined; // 搜索值 |
| 2248 | 2248 | self.$$dataSelected = []; // 选中的路牌列表 |
| 2249 | 2249 | self.$$dataSelectedStart = undefined; // 起始路牌 |
| 2250 | + self.$$isAll = false; // 是否显示全部 | |
| 2251 | + self.$$showNumber = 10; // 显示的记录数 | |
| 2252 | + self.$$calcuData = function() { // 处理$$data数据 | |
| 2253 | + console.log(self.$$searchText); | |
| 2254 | + angular.forEach(self.$$dataReal, function(obj) { | |
| 2255 | + if (self.$$isAll) { // 显示全部 | |
| 2256 | + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件 | |
| 2257 | + if (obj.$fullChars.indexOf(self.$$searchText) != -1 | |
| 2258 | + || obj.$camelChars.indexOf(self.$$searchText) != -1 | |
| 2259 | + || obj.lpname.indexOf(self.$$searchText) != -1) { | |
| 2260 | + this.push(obj); | |
| 2261 | + } | |
| 2262 | + } else { | |
| 2263 | + this.push(obj); | |
| 2264 | + } | |
| 2265 | + } else { // 显示限定数量 | |
| 2266 | + if (this.length < self.$$showNumber) { | |
| 2267 | + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件 | |
| 2268 | + if (obj.$fullChars.indexOf(self.$$searchText) != -1 | |
| 2269 | + || obj.$camelChars.indexOf(self.$$searchText) != -1 | |
| 2270 | + || obj.lpname.indexOf(self.$$searchText) != -1) { | |
| 2271 | + this.push(obj); | |
| 2272 | + } | |
| 2273 | + } else { | |
| 2274 | + this.push(obj); | |
| 2275 | + } | |
| 2276 | + } | |
| 2277 | + } | |
| 2278 | + }, self.$$data); | |
| 2279 | + | |
| 2280 | + }; | |
| 2250 | 2281 | |
| 2251 | 2282 | //self.$$dataSelected = [ |
| 2252 | 2283 | // {lpid: 11, lpname: '路11', isstart: false}, |
| ... | ... | @@ -2313,40 +2344,13 @@ angular.module('ScheduleApp').directive('saGuideboardgroup', [ |
| 2313 | 2344 | } |
| 2314 | 2345 | }); |
| 2315 | 2346 | tElem.on('keyup', '[name=lpsearch]', function() { |
| 2316 | - console.log(scope[ctrlAs]["$$searchText"]); | |
| 2317 | - var sText = scope[ctrlAs]["$$searchText"]; | |
| 2318 | - if (sText && sText != "") { | |
| 2319 | - // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无 | |
| 2320 | - // 另一种做法可以写在$watch方法中 | |
| 2321 | - scope.$apply(function() { | |
| 2322 | - scope[ctrlAs].$$data = []; | |
| 2323 | - for (var k = 0; k < scope[ctrlAs].$$dataReal.length; k++) { | |
| 2324 | - var upTerm = sText.toUpperCase(); | |
| 2325 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 2326 | - if (scope[ctrlAs].$$dataReal[k].$fullChars.indexOf(upTerm) != -1 | |
| 2327 | - || scope[ctrlAs].$$dataReal[k].$camelChars.indexOf(upTerm) != -1 | |
| 2328 | - || scope[ctrlAs].$$dataReal[k].lpname.indexOf(upTerm) != -1) { | |
| 2329 | - //scope[ctrlAs].$$data.push(angular.copy(scope[ctrlAs].$$dataReal[k])); | |
| 2347 | + // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无 | |
| 2348 | + // 另一种做法可以写在$watch方法中 | |
| 2349 | + scope.$apply(function() { | |
| 2350 | + scope[ctrlAs].$$data = []; | |
| 2351 | + scope[ctrlAs].$$calcuData(); | |
| 2330 | 2352 | |
| 2331 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[k]); | |
| 2332 | - } | |
| 2333 | - } else { | |
| 2334 | - break; | |
| 2335 | - } | |
| 2336 | - } | |
| 2337 | - }); | |
| 2338 | - } else { | |
| 2339 | - scope.$apply(function() { | |
| 2340 | - scope[ctrlAs].$$data = []; | |
| 2341 | - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) { | |
| 2342 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 2343 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]); | |
| 2344 | - } else { | |
| 2345 | - break; | |
| 2346 | - } | |
| 2347 | - } | |
| 2348 | - }); | |
| 2349 | - } | |
| 2353 | + }); | |
| 2350 | 2354 | }); |
| 2351 | 2355 | |
| 2352 | 2356 | |
| ... | ... | @@ -2519,6 +2523,21 @@ angular.module('ScheduleApp').directive('saGuideboardgroup', [ |
| 2519 | 2523 | } |
| 2520 | 2524 | ); |
| 2521 | 2525 | |
| 2526 | + // 监控是否显示所有数据,$$isAll 变化 | |
| 2527 | + scope.$watch( | |
| 2528 | + function() { | |
| 2529 | + return scope[ctrlAs].$$isAll; | |
| 2530 | + }, | |
| 2531 | + function(newValue, oldValue) { | |
| 2532 | + console.log("dfdfdfdfdf"); | |
| 2533 | + if (scope[ctrlAs].$$dataReal.length > 0) { | |
| 2534 | + scope[ctrlAs].$$data = []; | |
| 2535 | + scope[ctrlAs].$$calcuData(); | |
| 2536 | + } | |
| 2537 | + }, | |
| 2538 | + true | |
| 2539 | + ); | |
| 2540 | + | |
| 2522 | 2541 | // 监控线路id的变化 |
| 2523 | 2542 | attr.$observe("xlidvalue", function(value) { |
| 2524 | 2543 | if (value && value != "") { |
| ... | ... | @@ -2542,13 +2561,7 @@ angular.module('ScheduleApp').directive('saGuideboardgroup', [ |
| 2542 | 2561 | }, scope[ctrlAs].$$dataReal); |
| 2543 | 2562 | |
| 2544 | 2563 | scope[ctrlAs].$$data = []; |
| 2545 | - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) { | |
| 2546 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 2547 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]); | |
| 2548 | - } else { | |
| 2549 | - break; | |
| 2550 | - } | |
| 2551 | - } | |
| 2564 | + scope[ctrlAs].$$calcuData(); | |
| 2552 | 2565 | |
| 2553 | 2566 | if (scope[ctrlAs].$$data_init) { |
| 2554 | 2567 | scope[ctrlAs].$$dataSelected = []; |
| ... | ... | @@ -2688,6 +2701,38 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 2688 | 2701 | self.$$dataFBSelected = []; // 选中的分班人员组配置列表 |
| 2689 | 2702 | self.$$dataFBInternalSelected = undefined; // 分班组内人员选中标识 |
| 2690 | 2703 | self.$$dataFBSelectedStart = undefined; // 选中的起始分班人员组合 |
| 2704 | + self.$$isAll = false; // 是否显示全部 | |
| 2705 | + self.$$showNumber = 10; // 显示的记录数 | |
| 2706 | + self.$$calcuData = function() { // 处理$$data数据 | |
| 2707 | + console.log(self.$$searchText); | |
| 2708 | + angular.forEach(self.$$dataReal, function(obj) { | |
| 2709 | + if (self.$$isAll) { // 显示全部 | |
| 2710 | + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件 | |
| 2711 | + if (obj.$fullChars.indexOf(self.$$searchText) != -1 | |
| 2712 | + || obj.$camelChars.indexOf(self.$$searchText) != -1 | |
| 2713 | + || obj.$str.indexOf(self.$$searchText) != -1) { | |
| 2714 | + this.push(obj); | |
| 2715 | + } | |
| 2716 | + } else { | |
| 2717 | + this.push(obj); | |
| 2718 | + } | |
| 2719 | + } else { // 显示限定数量 | |
| 2720 | + if (this.length < self.$$showNumber) { | |
| 2721 | + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件 | |
| 2722 | + if (obj.$fullChars.indexOf(self.$$searchText) != -1 | |
| 2723 | + || obj.$camelChars.indexOf(self.$$searchText) != -1 | |
| 2724 | + || obj.$str.indexOf(self.$$searchText) != -1) { | |
| 2725 | + this.push(obj); | |
| 2726 | + } | |
| 2727 | + } else { | |
| 2728 | + this.push(obj); | |
| 2729 | + } | |
| 2730 | + } | |
| 2731 | + } | |
| 2732 | + }, self.$$data); | |
| 2733 | + | |
| 2734 | + }; | |
| 2735 | + | |
| 2691 | 2736 | |
| 2692 | 2737 | //self.$$dataFBSelected = [ |
| 2693 | 2738 | // {isstart: true, group: [ |
| ... | ... | @@ -2762,38 +2807,13 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 2762 | 2807 | } |
| 2763 | 2808 | }); |
| 2764 | 2809 | tElem.on('keyup', '[name=rysearch]', function() { |
| 2765 | - console.log(scope[ctrlAs]["$$searchText"]); | |
| 2766 | - var sText = scope[ctrlAs]["$$searchText"]; | |
| 2767 | - if (sText && sText != "") { | |
| 2768 | - // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无 | |
| 2769 | - // 另一种做法可以写在$watch方法中 | |
| 2770 | - scope.$apply(function() { | |
| 2771 | - scope[ctrlAs].$$data = []; | |
| 2772 | - for (var k = 0; k < scope[ctrlAs].$$dataReal.length; k++) { | |
| 2773 | - var upTerm = sText.toUpperCase(); | |
| 2774 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 2775 | - if (scope[ctrlAs].$$dataReal[k].$fullChars.indexOf(upTerm) != -1 | |
| 2776 | - || scope[ctrlAs].$$dataReal[k].$camelChars.indexOf(upTerm) != -1 | |
| 2777 | - || scope[ctrlAs].$$dataReal[k].$str.indexOf(upTerm) != -1) { | |
| 2778 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[k]); | |
| 2779 | - } | |
| 2780 | - } else { | |
| 2781 | - break; | |
| 2782 | - } | |
| 2783 | - } | |
| 2784 | - }); | |
| 2785 | - } else { | |
| 2786 | - scope.$apply(function() { | |
| 2787 | - scope[ctrlAs].$$data = []; | |
| 2788 | - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) { | |
| 2789 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 2790 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]); | |
| 2791 | - } else { | |
| 2792 | - break; | |
| 2793 | - } | |
| 2794 | - } | |
| 2795 | - }); | |
| 2796 | - } | |
| 2810 | + // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无 | |
| 2811 | + // 另一种做法可以写在$watch方法中 | |
| 2812 | + scope.$apply(function() { | |
| 2813 | + scope[ctrlAs].$$data = []; | |
| 2814 | + scope[ctrlAs].$$calcuData(); | |
| 2815 | + | |
| 2816 | + }); | |
| 2797 | 2817 | }); |
| 2798 | 2818 | |
| 2799 | 2819 | |
| ... | ... | @@ -3240,6 +3260,21 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 3240 | 3260 | } |
| 3241 | 3261 | ); |
| 3242 | 3262 | |
| 3263 | + // 监控是否显示所有数据,$$isAll 变化 | |
| 3264 | + scope.$watch( | |
| 3265 | + function() { | |
| 3266 | + return scope[ctrlAs].$$isAll; | |
| 3267 | + }, | |
| 3268 | + function(newValue, oldValue) { | |
| 3269 | + console.log("dfdfdfdfdf"); | |
| 3270 | + if (scope[ctrlAs].$$dataReal.length > 0) { | |
| 3271 | + scope[ctrlAs].$$data = []; | |
| 3272 | + scope[ctrlAs].$$calcuData(); | |
| 3273 | + } | |
| 3274 | + }, | |
| 3275 | + true | |
| 3276 | + ); | |
| 3277 | + | |
| 3243 | 3278 | |
| 3244 | 3279 | // 监控线路id的变化 |
| 3245 | 3280 | attr.$observe("xlidvalue", function(value) { |
| ... | ... | @@ -3256,13 +3291,16 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 3256 | 3291 | angular.forEach(result.content, function(obj) { |
| 3257 | 3292 | var n1 = obj.jsy == null ? "" : (obj.jsy.personnelName || ""); |
| 3258 | 3293 | var n2 = obj.spy == null ? "" : (obj.spy.personnelName || ""); |
| 3259 | - var c1 = obj.jsy == null ? "" : (obj.jsy.jobCode || ""); | |
| 3260 | - var c2 = obj.spy == null ? "" : (obj.spy.jobCode || ""); | |
| 3294 | + var n3 = obj.dbbm || ""; | |
| 3295 | + //var c1 = obj.jsy == null ? "" : (obj.jsy.jobCode || ""); | |
| 3296 | + //var c2 = obj.spy == null ? "" : (obj.spy.jobCode || ""); | |
| 3297 | + | |
| 3261 | 3298 | var str = []; |
| 3262 | 3299 | str.push(n1); |
| 3263 | 3300 | str.push(n2); |
| 3264 | - str.push(c1); | |
| 3265 | - str.push(c2); | |
| 3301 | + str.push(n3); | |
| 3302 | + //str.push(c1); | |
| 3303 | + //str.push(c2); | |
| 3266 | 3304 | this.push({ |
| 3267 | 3305 | id: obj.id, |
| 3268 | 3306 | dbbm: obj.dbbm, |
| ... | ... | @@ -3275,13 +3313,7 @@ angular.module('ScheduleApp').directive('saEmployeegroup', [ |
| 3275 | 3313 | }, scope[ctrlAs].$$dataReal); |
| 3276 | 3314 | |
| 3277 | 3315 | scope[ctrlAs].$$data = []; |
| 3278 | - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) { | |
| 3279 | - if (scope[ctrlAs].$$data.length < 10) { | |
| 3280 | - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]); | |
| 3281 | - } else { | |
| 3282 | - break; | |
| 3283 | - } | |
| 3284 | - } | |
| 3316 | + scope[ctrlAs].$$calcuData(); | |
| 3285 | 3317 | |
| 3286 | 3318 | if (scope[ctrlAs].$$data_init) { |
| 3287 | 3319 | scope[ctrlAs].$$dataSelected = []; | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/edit-detail2.html
| ... | ... | @@ -59,7 +59,7 @@ |
| 59 | 59 | iterobjexp="item.stationname" |
| 60 | 60 | searchph="请输拼音..." |
| 61 | 61 | searchexp="this.stationname" |
| 62 | - required > | |
| 62 | + > | |
| 63 | 63 | </sa-Select5> |
| 64 | 64 | </div> |
| 65 | 65 | </div> |
| ... | ... | @@ -76,7 +76,7 @@ |
| 76 | 76 | iterobjexp="item.stationname" |
| 77 | 77 | searchph="请输拼音..." |
| 78 | 78 | searchexp="this.stationname" |
| 79 | - required > | |
| 79 | + > | |
| 80 | 80 | </sa-Select5> |
| 81 | 81 | </div> |
| 82 | 82 | </div> |
| ... | ... | @@ -93,7 +93,7 @@ |
| 93 | 93 | iterobjexp="item.parkName" |
| 94 | 94 | searchph="请输拼音..." |
| 95 | 95 | searchexp="this.parkName" |
| 96 | - required > | |
| 96 | + > | |
| 97 | 97 | </sa-Select5> |
| 98 | 98 | </div> |
| 99 | 99 | </div> |
| ... | ... | @@ -153,7 +153,6 @@ |
| 153 | 153 | iterobjexp="item.name" |
| 154 | 154 | searchph="请选择班次类型..." |
| 155 | 155 | searchexp="this.name" |
| 156 | - required | |
| 157 | 156 | > |
| 158 | 157 | </sa-Select5> |
| 159 | 158 | </div> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/edit.html
| ... | ... | @@ -95,7 +95,7 @@ |
| 95 | 95 | |
| 96 | 96 | <div ng-if="cell.ttdid" class="btn-group"> |
| 97 | 97 | <input type="checkbox" ng-model="cell.sel"/> |
| 98 | - <a href="javascript:" class="btn blue btn-outline btn-circle" data-toggle="dropdown"> | |
| 98 | + <a ng-class="{'btn': true, 'blue': ctrl.validateCellInfo(cell), 'btn-danger': !ctrl.validateCellInfo(cell), 'btn-outline': true, 'btn-circle': true}" href="javascript:" data-toggle="dropdown"> | |
| 99 | 99 | <!-- 上下行图标 --> |
| 100 | 100 | <i ng-if="cell.xldir == '0'" class="fa fa-arrow-up" aria-hidden="true"></i> |
| 101 | 101 | <i ng-if="cell.xldir == '1'" class="fa fa-arrow-down" aria-hidden="true"></i> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/timeTableDetailManage_old.js
| ... | ... | @@ -102,7 +102,7 @@ angular.module('ScheduleApp').factory( |
| 102 | 102 | deferred.reject(); |
| 103 | 103 | } |
| 104 | 104 | } else { |
| 105 | - // 赋值(上下行,发车时间,班次类型) | |
| 105 | + // 赋值(上下行,发车时间,班次类型,起点站,终点站,停车场) | |
| 106 | 106 | if (value.fcsj) { |
| 107 | 107 | ttinfodetailIds[index].fcsj = value.fcsj; |
| 108 | 108 | } |
| ... | ... | @@ -112,6 +112,15 @@ angular.module('ScheduleApp').factory( |
| 112 | 112 | if (value.bcType) { |
| 113 | 113 | ttinfodetailIds[index].bc_type = value.bcType; |
| 114 | 114 | } |
| 115 | + if (value.qdz) { | |
| 116 | + ttinfodetailIds[index].qdz = value.qdz; | |
| 117 | + } | |
| 118 | + if (value.zdz) { | |
| 119 | + ttinfodetailIds[index].zdz = value.zdz; | |
| 120 | + } | |
| 121 | + if (value.tcc) { | |
| 122 | + ttinfodetailIds[index].tcc = value.tcc; | |
| 123 | + } | |
| 115 | 124 | |
| 116 | 125 | success_counts ++; |
| 117 | 126 | if (success_counts + error_counts == ttinfodetailIds.length) { |
| ... | ... | @@ -245,6 +254,29 @@ angular.module('ScheduleApp').controller( |
| 245 | 254 | } |
| 246 | 255 | |
| 247 | 256 | |
| 257 | + self.validateCellInfo = function(cell) { | |
| 258 | + if (cell.bc_type == 'in') { | |
| 259 | + if (cell.qdz == null || cell.tcc == null) { | |
| 260 | + return false; | |
| 261 | + } else { | |
| 262 | + return true; | |
| 263 | + } | |
| 264 | + } else if (cell.bc_type == 'out') { | |
| 265 | + if (cell.tcc == null || cell.zdz == null) { | |
| 266 | + return false; | |
| 267 | + } else { | |
| 268 | + return true; | |
| 269 | + } | |
| 270 | + } else { | |
| 271 | + if (cell.qdz == null || cell.zdz == null) { | |
| 272 | + return false; | |
| 273 | + } else { | |
| 274 | + return true; | |
| 275 | + } | |
| 276 | + } | |
| 277 | + } | |
| 278 | + | |
| 279 | + | |
| 248 | 280 | } |
| 249 | 281 | |
| 250 | 282 | ] | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/list.html
| ... | ... | @@ -83,7 +83,7 @@ |
| 83 | 83 | class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 编辑 </a> |
| 84 | 84 | <!--<a ui-sref="ttInfoDetailManage_edit2({xlid: info.xl.id, ttid : info.id, xlname: info.xl.name, ttname : info.name})"--> |
| 85 | 85 | <!--class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 编辑2 </a>--> |
| 86 | - <a ng-click="ctrl.toTtInfoDetailAuto()" | |
| 86 | + <a ng-click="ctrl.toTtInfoDetailAuto(info.id)" | |
| 87 | 87 | class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 生成 </a> |
| 88 | 88 | <a ui-sref="ttInfoDetailManage_form({xlid: info.xl.id, ttid : info.id, xlname: info.xl.name, ttname : info.name})" |
| 89 | 89 | class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 导入 </a> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/module.js
| ... | ... | @@ -132,9 +132,9 @@ angular.module('ScheduleApp').controller( |
| 132 | 132 | self.doPage(); |
| 133 | 133 | |
| 134 | 134 | // 自动生成时刻表 |
| 135 | - self.toTtInfoDetailAuto = function() { | |
| 135 | + self.toTtInfoDetailAuto = function(ttinfoid) { | |
| 136 | 136 | showPjax(); |
| 137 | - $.pjax({url: 'pages/base/timesmodel/index.html', container: pjaxContainer}); | |
| 137 | + $.pjax({url: 'pages/base/timesmodel/add.html?no=' + ttinfoid, container: pjaxContainer}); | |
| 138 | 138 | }; |
| 139 | 139 | |
| 140 | 140 | // TODO: | ... | ... |
src/main/resources/static/real_control_v2/assets/plugins/uikit-2.27.1/components/accordion.gradient.min.css
0 → 100644
| 1 | +/*! UIkit 2.27.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ | |
| 2 | +.uk-accordion-title{margin-top:0;margin-bottom:15px;padding:5px 15px;background:#f7f7f7;font-size:18px;line-height:24px;cursor:pointer;border:1px solid #ddd;border-radius:4px}.uk-accordion-content{padding:0 15px 15px 15px}.uk-accordion-content:after,.uk-accordion-content:before{content:"";display:table}.uk-accordion-content:after{clear:both}.uk-accordion-content>:last-child{margin-bottom:0} | |
| 0 | 3 | \ No newline at end of file | ... | ... |
src/main/resources/static/real_control_v2/assets/plugins/uikit-2.27.1/components/accordion.min.js
0 → 100644
| 1 | +/*! UIkit 2.27.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ | |
| 2 | +!function(t){var i;window.UIkit&&(i=t(UIkit)),"function"==typeof define&&define.amd&&define("uikit-accordion",["uikit"],function(){return i||t(UIkit)})}(function(t){"use strict";function i(i){var e=t.$(i),o="auto";if(e.is(":visible"))o=e.outerHeight();else{var a={position:e.css("position"),visibility:e.css("visibility"),display:e.css("display")};o=e.css({position:"absolute",visibility:"hidden",display:"block"}).outerHeight(),e.css(a)}return o}return t.component("accordion",{defaults:{showfirst:!0,collapse:!0,animate:!0,easing:"swing",duration:300,toggle:".uk-accordion-title",containers:".uk-accordion-content",clsactive:"uk-active"},boot:function(){t.ready(function(i){setTimeout(function(){t.$("[data-uk-accordion]",i).each(function(){var i=t.$(this);i.data("accordion")||t.accordion(i,t.Utils.options(i.attr("data-uk-accordion")))})},0)})},init:function(){var i=this;this.element.on("click.uk.accordion",this.options.toggle,function(e){e.preventDefault(),i.toggleItem(t.$(this).data("wrapper"),i.options.animate,i.options.collapse)}),this.update(!0),t.domObserve(this.element,function(){i.element.children(i.options.containers).length&&i.update()})},toggleItem:function(e,o,a){var n=this;e.data("toggle").toggleClass(this.options.clsactive),e.data("content").toggleClass(this.options.clsactive);var s=e.data("toggle").hasClass(this.options.clsactive);a&&(this.toggle.not(e.data("toggle")).removeClass(this.options.clsactive),this.content.not(e.data("content")).removeClass(this.options.clsactive).parent().stop().css("overflow","hidden").animate({height:0},{easing:this.options.easing,duration:o?this.options.duration:0}).attr("aria-expanded","false")),e.stop().css("overflow","hidden"),o?e.animate({height:s?i(e.data("content")):0},{easing:this.options.easing,duration:this.options.duration,complete:function(){s&&(e.css({overflow:"",height:"auto"}),t.Utils.checkDisplay(e.data("content"))),n.trigger("display.uk.check")}}):(e.height(s?"auto":0),s&&(e.css({overflow:""}),t.Utils.checkDisplay(e.data("content"))),this.trigger("display.uk.check")),e.attr("aria-expanded",s),this.element.trigger("toggle.uk.accordion",[s,e.data("toggle"),e.data("content")])},update:function(i){var e,o,a,n=this;this.toggle=this.find(this.options.toggle),this.content=this.find(this.options.containers),this.content.each(function(i){e=t.$(this),e.parent().data("wrapper")?o=e.parent():(o=t.$(this).wrap('<div data-wrapper="true" style="overflow:hidden;height:0;position:relative;"></div>').parent(),o.attr("aria-expanded","false")),a=n.toggle.eq(i),o.data("toggle",a),o.data("content",e),a.data("wrapper",o),e.data("wrapper",o)}),this.element.trigger("update.uk.accordion",[this]),i&&this.options.showfirst&&this.toggleItem(this.toggle.eq(0).data("wrapper"),!1,!1)}}),t.accordion}); | |
| 0 | 3 | \ No newline at end of file | ... | ... |
src/main/resources/static/real_control_v2/assets/plugins/uikit-2.27.1/components/timepicker.min.js
0 → 100644
| 1 | +/*! UIkit 2.27.1 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ | |
| 2 | +!function(t){var e;window.UIkit&&(e=t(UIkit)),"function"==typeof define&&define.amd&&define("uikit-timepicker",["uikit"],function(){return e||t(UIkit)})}(function(t){"use strict";function e(t,e){t=t||0,e=e||24;var i,o,a={"12h":[],"24h":[]};for(i=t,o="";e>i;i++)o=""+i,10>i&&(o="0"+o),a["24h"].push({value:o+":00"}),a["24h"].push({value:o+":30"}),0===i&&(o=12,a["12h"].push({value:o+":00 AM"}),a["12h"].push({value:o+":30 AM"})),i>0&&13>i&&12!==i&&(a["12h"].push({value:o+":00 AM"}),a["12h"].push({value:o+":30 AM"})),i>=12&&(o-=12,0===o&&(o=12),10>o&&(o="0"+String(o)),a["12h"].push({value:o+":00 PM"}),a["12h"].push({value:o+":30 PM"}));return a}t.component("timepicker",{defaults:{format:"24h",delay:0,start:0,end:24},boot:function(){t.$html.on("focus.timepicker.uikit","[data-uk-timepicker]",function(){var e=t.$(this);if(!e.data("timepicker")){var i=t.timepicker(e,t.Utils.options(e.attr("data-uk-timepicker")));setTimeout(function(){i.autocomplete.input.focus()},40)}})},init:function(){var i,o=this,a=e(this.options.start,this.options.end);this.options.minLength=0,this.options.template='<ul class="uk-nav uk-nav-autocomplete uk-autocomplete-results">{{~items}}<li data-value="{{$item.value}}"><a>{{$item.value}}</a></li>{{/items}}</ul>',this.options.source=function(t){t(a[o.options.format]||a["12h"])},this.element.is("input")?(this.element.wrap('<div class="uk-autocomplete"></div>'),i=this.element.parent()):i=this.element.addClass("uk-autocomplete"),this.autocomplete=t.autocomplete(i,this.options),this.autocomplete.dropdown.addClass("uk-dropdown-small uk-dropdown-scrollable"),this.autocomplete.on("show.uk.autocomplete",function(){var t=o.autocomplete.dropdown.find('[data-value="'+o.autocomplete.input.val()+'"]');setTimeout(function(){o.autocomplete.pick(t,!0)},10)}),this.autocomplete.input.on("focus",function(){o.autocomplete.value=Math.random(),o.autocomplete.triggercomplete()}).on("blur",t.Utils.debounce(function(){o.checkTime()},100)),this.element.data("timepicker",this)},checkTime:function(){var t,e,i,o,a="AM",u=this.autocomplete.input.val();"12h"==this.options.format?(t=u.split(" "),e=t[0].split(":"),a=t[1]):e=u.split(":"),i=parseInt(e[0],10),o=parseInt(e[1],10),isNaN(i)&&(i=0),isNaN(o)&&(o=0),"12h"==this.options.format?(i>12?i=12:0>i&&(i=12),"am"===a||"a"===a?a="AM":("pm"===a||"p"===a)&&(a="PM"),"AM"!==a&&"PM"!==a&&(a="AM")):i>=24?i=23:0>i&&(i=0),0>o?o=0:o>=60&&(o=0),this.autocomplete.input.val(this.formatTime(i,o,a)).trigger("change")},formatTime:function(t,e,i){return t=10>t?"0"+t:t,e=10>e?"0"+e:e,t+":"+e+("12h"==this.options.format?" "+i:"")}})}); | |
| 0 | 3 | \ No newline at end of file | ... | ... |
src/main/resources/static/real_control_v2/css/main.css
| ... | ... | @@ -71,7 +71,7 @@ table.ct-fixed-table { |
| 71 | 71 | table-layout: fixed; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | -table.ct-fixed-table tr.context-menu-active{ | |
| 74 | +table.ct-fixed-table tr.context-menu-active { | |
| 75 | 75 | background: #f0f0f0; |
| 76 | 76 | } |
| 77 | 77 | |
| ... | ... | @@ -141,8 +141,8 @@ svg.line-chart path.station_link.down { |
| 141 | 141 | stroke: #c92121; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | -svg.line-chart path.station_link.down.loop_line{ | |
| 145 | - stroke-dasharray: 4,3; | |
| 144 | +svg.line-chart path.station_link.down.loop_line { | |
| 145 | + stroke-dasharray: 4, 3; | |
| 146 | 146 | stroke-width: 1px; |
| 147 | 147 | } |
| 148 | 148 | |
| ... | ... | @@ -162,27 +162,27 @@ svg.line-chart text.station_text.down { |
| 162 | 162 | fill: #c94f21; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | -svg.line-chart g.item:first-child>text { | |
| 165 | +svg.line-chart g.item:first-child > text { | |
| 166 | 166 | stroke: #6f6e6e; |
| 167 | 167 | fill: none; |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | -svg.line-chart g.item:nth-last-child(3)>text { | |
| 170 | +svg.line-chart g.item:nth-last-child(3) > text { | |
| 171 | 171 | stroke: #6f6e6e; |
| 172 | 172 | fill: none; |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | -svg.line-chart g.item:first-child>text.up , | |
| 176 | -svg.line-chart g.item:nth-last-child(3)>text.up { | |
| 175 | +svg.line-chart g.item:first-child > text.up, | |
| 176 | +svg.line-chart g.item:nth-last-child(3) > text.up { | |
| 177 | 177 | stroke: #4556b6; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | -svg.line-chart g.item:first-child>text.down , | |
| 181 | -svg.line-chart g.item:nth-last-child(3)>text.down { | |
| 180 | +svg.line-chart g.item:first-child > text.down, | |
| 181 | +svg.line-chart g.item:nth-last-child(3) > text.down { | |
| 182 | 182 | stroke: #c94f21; |
| 183 | 183 | } |
| 184 | 184 | |
| 185 | -svg.line-chart g.gps-wrap>rect { | |
| 185 | +svg.line-chart g.gps-wrap > rect { | |
| 186 | 186 | width: 30px; |
| 187 | 187 | height: 15px; |
| 188 | 188 | /* fill: #fff; */ |
| ... | ... | @@ -190,42 +190,43 @@ svg.line-chart g.gps-wrap>rect { |
| 190 | 190 | cursor: pointer; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | -svg.line-chart g.gps-wrap>rect[updown="0"] { | |
| 193 | +svg.line-chart g.gps-wrap > rect[updown="0"] { | |
| 194 | 194 | stroke: rgb(62, 80, 179); |
| 195 | 195 | fill: rgb(62, 80, 179); |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | -svg.line-chart g.gps-wrap>rect[updown="1"] { | |
| 198 | +svg.line-chart g.gps-wrap > rect[updown="1"] { | |
| 199 | 199 | stroke: #c94f21; |
| 200 | 200 | fill: #c94f21; |
| 201 | 201 | } |
| 202 | 202 | |
| 203 | -svg.line-chart g.gps-wrap>rect.hover { | |
| 203 | +svg.line-chart g.gps-wrap > rect.hover { | |
| 204 | 204 | stroke-width: 2; |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | -svg.line-chart g.gps-wrap>text { | |
| 207 | +svg.line-chart g.gps-wrap > text { | |
| 208 | 208 | font-size: 12px; |
| 209 | 209 | transform: translate(0, 12px); |
| 210 | 210 | pointer-events: none; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | -svg.line-chart g.gps-wrap>text[updown="0"] { | |
| 213 | +svg.line-chart g.gps-wrap > text[updown="0"] { | |
| 214 | 214 | fill: #fff; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | -svg.line-chart g.gps-wrap>text[updown="1"] { | |
| 217 | +svg.line-chart g.gps-wrap > text[updown="1"] { | |
| 218 | 218 | fill: #fff; |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | -svg.line-chart g.gps-wrap>rect.abnormal[updown="0"] , | |
| 222 | -svg.line-chart g.gps-wrap>rect.abnormal[updown="1"]{ | |
| 221 | +svg.line-chart g.gps-wrap > rect.abnormal[updown="0"], | |
| 222 | +svg.line-chart g.gps-wrap > rect.abnormal[updown="1"] { | |
| 223 | 223 | width: 40px; |
| 224 | 224 | fill: yellow; |
| 225 | 225 | stroke: yellow; |
| 226 | 226 | } |
| 227 | -svg.line-chart g.gps-wrap>text.abnormal[updown="0"], | |
| 228 | -svg.line-chart g.gps-wrap>text.abnormal[updown="1"]{ | |
| 227 | + | |
| 228 | +svg.line-chart g.gps-wrap > text.abnormal[updown="0"], | |
| 229 | +svg.line-chart g.gps-wrap > text.abnormal[updown="1"] { | |
| 229 | 230 | fill: black; |
| 230 | 231 | } |
| 231 | 232 | |
| ... | ... | @@ -240,7 +241,7 @@ svg.line-chart g.merge-item rect { |
| 240 | 241 | fill: #19a53a; |
| 241 | 242 | cursor: pointer; |
| 242 | 243 | stroke: #19a53a; |
| 243 | - stroke-dasharray: 1,2; | |
| 244 | + stroke-dasharray: 1, 2; | |
| 244 | 245 | stroke-width: 3px; |
| 245 | 246 | } |
| 246 | 247 | |
| ... | ... | @@ -263,15 +264,15 @@ svg.line-chart g.merge-item text { |
| 263 | 264 | width: 220px; |
| 264 | 265 | } |
| 265 | 266 | |
| 266 | -.multi-tooltip-wrap{ | |
| 267 | - width: 100%; | |
| 268 | - max-height: 350px; | |
| 269 | - overflow: auto; | |
| 267 | +.multi-tooltip-wrap { | |
| 268 | + width: 100%; | |
| 269 | + max-height: 350px; | |
| 270 | + overflow: auto; | |
| 270 | 271 | } |
| 271 | 272 | |
| 272 | -.tip_map_wrap.multi{ | |
| 273 | - width: 100%; | |
| 274 | - height: 130px; | |
| 273 | +.tip_map_wrap.multi { | |
| 274 | + width: 100%; | |
| 275 | + height: 130px; | |
| 275 | 276 | } |
| 276 | 277 | |
| 277 | 278 | .tooltip.multi-tooltip { |
| ... | ... | @@ -335,12 +336,12 @@ canvas.crosshair-layer { |
| 335 | 336 | left: 0; |
| 336 | 337 | } |
| 337 | 338 | |
| 338 | -li.map-panel{ | |
| 339 | - height: 100%; | |
| 340 | - position: relative; | |
| 339 | +li.map-panel { | |
| 340 | + height: 100%; | |
| 341 | + position: relative; | |
| 341 | 342 | } |
| 342 | 343 | |
| 343 | -.main-container .load-panel{ | |
| 344 | +.main-container .load-panel { | |
| 344 | 345 | display: block; |
| 345 | 346 | color: #999797; |
| 346 | 347 | } |
| ... | ... | @@ -348,7 +349,7 @@ li.map-panel{ |
| 348 | 349 | .uk-panel-box-danger { |
| 349 | 350 | background-color: #fff1f0; |
| 350 | 351 | /*color: #d85030;*/ |
| 351 | - border-color: rgba(216,80,48,.3); | |
| 352 | + border-color: rgba(216, 80, 48, .3); | |
| 352 | 353 | } |
| 353 | 354 | |
| 354 | 355 | /*.uk-panel-box-danger .uk-panel-title { |
| ... | ... | @@ -357,25 +358,25 @@ li.map-panel{ |
| 357 | 358 | |
| 358 | 359 | .uk-badge-default { |
| 359 | 360 | background-color: #a09b9c; |
| 360 | - background-image: -webkit-linear-gradient(top,#9a9898,#8c8687); | |
| 361 | - background-image: linear-gradient(to bottom,#9a9898,#8c8687); | |
| 361 | + background-image: -webkit-linear-gradient(top, #9a9898, #8c8687); | |
| 362 | + background-image: linear-gradient(to bottom, #9a9898, #8c8687); | |
| 362 | 363 | } |
| 363 | 364 | |
| 364 | -.ct-bottom-drawer{ | |
| 365 | +.ct-bottom-drawer { | |
| 365 | 366 | width: 100%; |
| 366 | 367 | background: rgb(255, 255, 255); |
| 367 | 368 | position: fixed; |
| 368 | 369 | bottom: 0; |
| 369 | - box-shadow: 0 0 10px rgba(0,0,0,.3); | |
| 370 | + box-shadow: 0 0 10px rgba(0, 0, 0, .3); | |
| 370 | 371 | transition: all .3s ease; |
| 371 | 372 | height: 0; |
| 372 | 373 | } |
| 373 | 374 | |
| 374 | -.ct-bottom-drawer.open{ | |
| 375 | +.ct-bottom-drawer.open { | |
| 375 | 376 | height: 320px; |
| 376 | 377 | } |
| 377 | 378 | |
| 378 | -.ct-bottom-drawer a.ct-bottom-drawer-close{ | |
| 379 | +.ct-bottom-drawer a.ct-bottom-drawer-close { | |
| 379 | 380 | position: absolute; |
| 380 | 381 | right: 10px; |
| 381 | 382 | top: 10px; |
| ... | ... | @@ -387,7 +388,7 @@ li.map-panel{ |
| 387 | 388 | z-index: 99; |
| 388 | 389 | } |
| 389 | 390 | |
| 390 | -.ct-bottom-drawer a.ct-bottom-drawer-close:hover{ | |
| 391 | +.ct-bottom-drawer a.ct-bottom-drawer-close:hover { | |
| 391 | 392 | text-decoration: none; |
| 392 | 393 | color: grey; |
| 393 | 394 | } |
| ... | ... | @@ -398,33 +399,39 @@ li.map-panel{ |
| 398 | 399 | font-family: FontAwesome; |
| 399 | 400 | } |
| 400 | 401 | |
| 401 | -.ct-bottom-drawer-body{ | |
| 402 | +.ct-bottom-drawer-body { | |
| 402 | 403 | width: 100%; |
| 403 | 404 | height: 100%; |
| 404 | 405 | } |
| 405 | 406 | |
| 406 | -#station_route_spacing_chart_drawer .svg_wrap{ | |
| 407 | - width: 80%;height: 100%;display: inline-block;font-size: 14px;overflow: hidden; | |
| 407 | +#station_route_spacing_chart_drawer .svg_wrap { | |
| 408 | + width: 80%; | |
| 409 | + height: 100%; | |
| 410 | + display: inline-block; | |
| 411 | + font-size: 14px; | |
| 412 | + overflow: hidden; | |
| 408 | 413 | position: relative; |
| 409 | 414 | } |
| 410 | 415 | |
| 411 | -#station_route_spacing_chart_drawer .drawer_right_map{ | |
| 412 | - width: 20%;height: 100%;display: inline-block; | |
| 416 | +#station_route_spacing_chart_drawer .drawer_right_map { | |
| 417 | + width: 20%; | |
| 418 | + height: 100%; | |
| 419 | + display: inline-block; | |
| 413 | 420 | } |
| 414 | 421 | |
| 415 | -#station_route_spacing_chart_drawer .svg_cont_body{ | |
| 416 | - height:100%; | |
| 422 | +#station_route_spacing_chart_drawer .svg_cont_body { | |
| 423 | + height: 100%; | |
| 417 | 424 | position: absolute; |
| 418 | - top:0; | |
| 425 | + top: 0; | |
| 419 | 426 | left: 0; |
| 420 | 427 | } |
| 421 | 428 | |
| 422 | -#station_route_spacing_chart_drawer svg{ | |
| 429 | +#station_route_spacing_chart_drawer svg { | |
| 423 | 430 | width: 100%; |
| 424 | 431 | height: 100%; |
| 425 | 432 | } |
| 426 | 433 | |
| 427 | -#station_route_spacing_chart_drawer svg g._item rect{ | |
| 434 | +#station_route_spacing_chart_drawer svg g._item rect { | |
| 428 | 435 | stroke: rgb(62, 80, 179); |
| 429 | 436 | fill: rgb(62, 80, 179); |
| 430 | 437 | width: 30px; |
| ... | ... | @@ -433,26 +440,25 @@ li.map-panel{ |
| 433 | 440 | transform: translate(-15px); |
| 434 | 441 | } |
| 435 | 442 | |
| 436 | - | |
| 437 | -#station_route_spacing_chart_drawer svg g._item text{ | |
| 443 | +#station_route_spacing_chart_drawer svg g._item text { | |
| 438 | 444 | writing-mode: tb; |
| 439 | 445 | transform: translate(0, 9px); |
| 440 | 446 | fill: #fff; |
| 441 | 447 | } |
| 442 | 448 | |
| 443 | -#station_route_spacing_chart_drawer svg g._item path{ | |
| 449 | +#station_route_spacing_chart_drawer svg g._item path { | |
| 444 | 450 | stroke-width: 5.4px; |
| 445 | 451 | stroke: #3e50b3; |
| 446 | 452 | } |
| 447 | 453 | |
| 448 | -#station_route_spacing_chart_drawer svg g._item circle{ | |
| 454 | +#station_route_spacing_chart_drawer svg g._item circle { | |
| 449 | 455 | r: 3px; |
| 450 | 456 | fill: #ffffff; |
| 451 | 457 | } |
| 452 | 458 | |
| 453 | -#station_route_spacing_chart_drawer svg g._item path.arc_path{ | |
| 454 | - stroke-width:1.3px; | |
| 455 | - stroke:#3e50b3; | |
| 459 | +#station_route_spacing_chart_drawer svg g._item path.arc_path { | |
| 460 | + stroke-width: 1.3px; | |
| 461 | + stroke: #3e50b3; | |
| 456 | 462 | stroke-dasharray: 1000; |
| 457 | 463 | stroke-dashoffset: 1000; |
| 458 | 464 | fill: none; |
| ... | ... | @@ -466,30 +472,30 @@ li.map-panel{ |
| 466 | 472 | @keyframes dash { |
| 467 | 473 | to { |
| 468 | 474 | stroke-dashoffset: 0; |
| 469 | - stroke-dasharray: 4,4; | |
| 475 | + stroke-dasharray: 4, 4; | |
| 470 | 476 | } |
| 471 | 477 | } |
| 472 | 478 | |
| 473 | -@-webkit-keyframes dash{ | |
| 479 | +@-webkit-keyframes dash { | |
| 474 | 480 | to { |
| 475 | 481 | stroke-dashoffset: 0; |
| 476 | - stroke-dasharray: 4,4; | |
| 482 | + stroke-dasharray: 4, 4; | |
| 477 | 483 | } |
| 478 | 484 | } |
| 479 | 485 | |
| 480 | -#station_route_spacing_chart_drawer svg g._item text.distance_text{ | |
| 486 | +#station_route_spacing_chart_drawer svg g._item text.distance_text { | |
| 481 | 487 | writing-mode: horizontal-tb; |
| 482 | 488 | fill: #3e50b3; |
| 483 | 489 | } |
| 484 | 490 | |
| 485 | -#station_route_spacing_chart_drawer svg g._item rect.distance_rect{ | |
| 491 | +#station_route_spacing_chart_drawer svg g._item rect.distance_rect { | |
| 486 | 492 | height: 20px; |
| 487 | 493 | width: 40px; |
| 488 | 494 | fill: #fff !important; |
| 489 | 495 | stroke-width: 0; |
| 490 | 496 | } |
| 491 | 497 | |
| 492 | -#station_route_spacing_chart_drawer .tl_desc_text{ | |
| 498 | +#station_route_spacing_chart_drawer .tl_desc_text { | |
| 493 | 499 | position: absolute; |
| 494 | 500 | top: 5px; |
| 495 | 501 | left: 5px; |
| ... | ... | @@ -498,45 +504,43 @@ li.map-panel{ |
| 498 | 504 | font-family: 微软雅黑; |
| 499 | 505 | } |
| 500 | 506 | |
| 501 | -#station_route_spacing_chart_drawer svg g._item:first-child circle{ | |
| 507 | +#station_route_spacing_chart_drawer svg g._item:first-child circle { | |
| 502 | 508 | fill: #3e50b3; |
| 503 | 509 | r: 6px; |
| 504 | 510 | } |
| 505 | 511 | |
| 506 | -#station_route_spacing_chart_drawer svg g._item:last-child circle{ | |
| 512 | +#station_route_spacing_chart_drawer svg g._item:last-child circle { | |
| 507 | 513 | fill: #3e50b3; |
| 508 | 514 | r: 6px; |
| 509 | 515 | } |
| 510 | 516 | |
| 511 | - | |
| 512 | 517 | /* 下行 */ |
| 513 | -#station_route_spacing_chart_drawer svg.down g._item rect{ | |
| 518 | +#station_route_spacing_chart_drawer svg.down g._item rect { | |
| 514 | 519 | stroke: #dd3829; |
| 515 | 520 | fill: #dd3829; |
| 516 | 521 | } |
| 517 | 522 | |
| 518 | -#station_route_spacing_chart_drawer svg.down g._item path{ | |
| 523 | +#station_route_spacing_chart_drawer svg.down g._item path { | |
| 519 | 524 | stroke: #dd3829; |
| 520 | 525 | } |
| 521 | 526 | |
| 522 | -#station_route_spacing_chart_drawer svg.down g._item:first-child circle{ | |
| 527 | +#station_route_spacing_chart_drawer svg.down g._item:first-child circle { | |
| 523 | 528 | fill: #dd3829; |
| 524 | 529 | } |
| 525 | 530 | |
| 526 | -#station_route_spacing_chart_drawer svg.down g._item text.distance_text{ | |
| 531 | +#station_route_spacing_chart_drawer svg.down g._item text.distance_text { | |
| 527 | 532 | fill: #dd3829; |
| 528 | 533 | } |
| 529 | 534 | |
| 530 | -#station_route_spacing_chart_drawer svg.down g._item path.arc_path{ | |
| 535 | +#station_route_spacing_chart_drawer svg.down g._item path.arc_path { | |
| 531 | 536 | stroke: #dd3829; |
| 532 | 537 | } |
| 533 | 538 | |
| 534 | -#station_route_spacing_chart_drawer svg.down g._item:last-child circle{ | |
| 539 | +#station_route_spacing_chart_drawer svg.down g._item:last-child circle { | |
| 535 | 540 | fill: #dd3829; |
| 536 | 541 | } |
| 537 | 542 | |
| 538 | - | |
| 539 | -.svg-edit-panel-wrap{ | |
| 543 | +.svg-edit-panel-wrap { | |
| 540 | 544 | width: 48%; |
| 541 | 545 | border: 1px solid #e1d3d3; |
| 542 | 546 | padding: 12px 0 0 0; |
| ... | ... | @@ -547,7 +551,7 @@ li.map-panel{ |
| 547 | 551 | height: 440px; |
| 548 | 552 | } |
| 549 | 553 | |
| 550 | -.svg-edit-panel-wrap .title-badge{ | |
| 554 | +.svg-edit-panel-wrap .title-badge { | |
| 551 | 555 | position: absolute; |
| 552 | 556 | top: -10px; |
| 553 | 557 | left: 7px; |
| ... | ... | @@ -557,62 +561,63 @@ li.map-panel{ |
| 557 | 561 | color: #888888; |
| 558 | 562 | } |
| 559 | 563 | |
| 560 | -.svg-edit-panel-wrap .rename-tools{ | |
| 564 | +.svg-edit-panel-wrap .rename-tools { | |
| 561 | 565 | height: 21px; |
| 562 | 566 | padding: 0 0 0 9px; |
| 563 | 567 | } |
| 564 | 568 | |
| 565 | -.svg-edit-panel-wrap .rename-item-panel{ | |
| 569 | +.svg-edit-panel-wrap .rename-item-panel { | |
| 566 | 570 | border-bottom: 1px solid #ede5e5; |
| 567 | 571 | padding: 4px; |
| 568 | 572 | } |
| 569 | 573 | |
| 570 | -.svg-edit-panel-wrap .rename-item-panel select{ | |
| 574 | +.svg-edit-panel-wrap .rename-item-panel select { | |
| 571 | 575 | width: 150px; |
| 572 | 576 | } |
| 573 | 577 | |
| 574 | -.svg-edit-panel-wrap .rename-item-panel input{ | |
| 578 | +.svg-edit-panel-wrap .rename-item-panel input { | |
| 575 | 579 | margin-left: 7px; |
| 576 | 580 | } |
| 577 | 581 | |
| 578 | -.svg-edit-panel-wrap .rename-item-panel input[type=checkbox]{ | |
| 582 | +.svg-edit-panel-wrap .rename-item-panel input[type=checkbox] { | |
| 579 | 583 | margin-top: 2px; |
| 580 | 584 | margin-right: 4px; |
| 581 | 585 | } |
| 582 | 586 | |
| 583 | -.svg-edit-panel-wrap .rename-item-panel.active{ | |
| 587 | +.svg-edit-panel-wrap .rename-item-panel.active { | |
| 584 | 588 | background: #65c9f8; |
| 585 | 589 | box-shadow: 0px 3px 7px 0 rgba(101, 201, 248, 0.48), 0px 1px 4px 0 rgba(101, 201, 248, 0.32); |
| 586 | 590 | } |
| 587 | 591 | |
| 588 | 592 | .svg-edit-panel-wrap .rename-item-panel.active select, |
| 589 | -.svg-edit-panel-wrap .rename-item-panel.active input{ | |
| 593 | +.svg-edit-panel-wrap .rename-item-panel.active input { | |
| 590 | 594 | background: #65c9f8; |
| 591 | 595 | color: #fff; |
| 592 | 596 | } |
| 593 | 597 | |
| 594 | -.svg-edit-panel-wrap .rename-item-panel.active i{ | |
| 598 | +.svg-edit-panel-wrap .rename-item-panel.active i { | |
| 595 | 599 | color: #e4f6ff; |
| 596 | 600 | } |
| 597 | 601 | |
| 598 | -.svg-edit-panel-wrap .rename-item-panel.active input[type=checkbox]{ | |
| 599 | - border:none; | |
| 602 | +.svg-edit-panel-wrap .rename-item-panel.active input[type=checkbox] { | |
| 603 | + border: none; | |
| 600 | 604 | } |
| 601 | 605 | |
| 602 | -.svg-edit-panel-wrap .rename-item-panel.active input[type=checkbox]:before{ | |
| 606 | +.svg-edit-panel-wrap .rename-item-panel.active input[type=checkbox]:before { | |
| 603 | 607 | color: #fff; |
| 604 | 608 | } |
| 605 | 609 | |
| 606 | -.svg-edit-panel-wrap .rename-tools a{ | |
| 610 | +.svg-edit-panel-wrap .rename-tools a { | |
| 607 | 611 | font-size: 14px; |
| 608 | 612 | padding: 5px; |
| 609 | 613 | } |
| 610 | -.svg-edit-panel-wrap .rename-tools a:hover{ | |
| 614 | + | |
| 615 | +.svg-edit-panel-wrap .rename-tools a:hover { | |
| 611 | 616 | background: #e8edef; |
| 612 | 617 | border-radius: 5px; |
| 613 | 618 | } |
| 614 | 619 | |
| 615 | -.station-list{ | |
| 620 | +.station-list { | |
| 616 | 621 | width: 190px; |
| 617 | 622 | padding: 2px 7px; |
| 618 | 623 | height: 100%; |
| ... | ... | @@ -620,7 +625,7 @@ li.map-panel{ |
| 620 | 625 | display: inline-block; |
| 621 | 626 | } |
| 622 | 627 | |
| 623 | -.station-list .station-item{ | |
| 628 | +.station-list .station-item { | |
| 624 | 629 | padding: 3px 0; |
| 625 | 630 | margin: 5px 0; |
| 626 | 631 | border-radius: 3px; |
| ... | ... | @@ -633,37 +638,40 @@ li.map-panel{ |
| 633 | 638 | } |
| 634 | 639 | |
| 635 | 640 | .station-list .station-item.disable, |
| 636 | -.station-list .station-item.disable:hover{ | |
| 641 | +.station-list .station-item.disable:hover { | |
| 637 | 642 | background: #d5c9c9 !important; |
| 638 | 643 | color: #686565 !important; |
| 639 | 644 | } |
| 640 | 645 | |
| 641 | -.station-list.up .station-item{ | |
| 646 | +.station-list.up .station-item { | |
| 642 | 647 | background: #5364c3; |
| 643 | 648 | color: white; |
| 644 | 649 | } |
| 645 | 650 | |
| 646 | -.station-list.up .station-item:hover{ | |
| 651 | +.station-list.up .station-item:hover { | |
| 647 | 652 | box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.2), 0px 1px 4px 0 rgba(0, 0, 0, 0.19); |
| 648 | 653 | background: #4556b6; |
| 649 | 654 | } |
| 650 | 655 | |
| 651 | - | |
| 652 | -.station-list.down .station-item{ | |
| 656 | +.station-list.down .station-item { | |
| 653 | 657 | background: #f95858; |
| 654 | 658 | color: white; |
| 655 | 659 | } |
| 656 | 660 | |
| 657 | -.station-list.down .station-item:hover{ | |
| 661 | +.station-list.down .station-item:hover { | |
| 658 | 662 | box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.2), 0px 1px 4px 0 rgba(0, 0, 0, 0.19); |
| 659 | 663 | background: #e95151; |
| 660 | 664 | } |
| 661 | 665 | |
| 662 | -.modal-dotted-hr{ | |
| 663 | - height: 1px;border: none;border-top: 1px dashed #d1d1d1;width: calc(100% + 40px);margin-left: -20px; | |
| 666 | +.modal-dotted-hr { | |
| 667 | + height: 1px; | |
| 668 | + border: none; | |
| 669 | + border-top: 1px dashed #d1d1d1; | |
| 670 | + width: calc(100% + 40px); | |
| 671 | + margin-left: -20px; | |
| 664 | 672 | } |
| 665 | 673 | |
| 666 | -#add-sub-task-range_turn-modal .main-sch-panel{ | |
| 674 | +#add-sub-task-range_turn-modal .main-sch-panel { | |
| 667 | 675 | height: 60px; |
| 668 | 676 | border: 1px solid #dddddd; |
| 669 | 677 | border-radius: 5px; |
| ... | ... | @@ -671,7 +679,7 @@ li.map-panel{ |
| 671 | 679 | padding: 20px 0 0 8px; |
| 672 | 680 | } |
| 673 | 681 | |
| 674 | -#add-sub-task-range_turn-modal .main-sch-panel:before{ | |
| 682 | +#add-sub-task-range_turn-modal .main-sch-panel:before { | |
| 675 | 683 | content: '主任务'; |
| 676 | 684 | position: absolute; |
| 677 | 685 | top: -10px; |
| ... | ... | @@ -694,11 +702,64 @@ li.map-panel{ |
| 694 | 702 | text-overflow: ellipsis; |
| 695 | 703 | } |
| 696 | 704 | |
| 697 | -.ct_row .ct_cell label{ | |
| 705 | +.ct_row .ct_cell label { | |
| 698 | 706 | color: #979393; |
| 699 | 707 | margin-right: 3px; |
| 700 | 708 | } |
| 701 | 709 | |
| 702 | 710 | .ct_row .ct_cell.c_1_3 { |
| 703 | 711 | width: 33%; |
| 712 | +} | |
| 713 | + | |
| 714 | +#schedule-lp_change-modal .sch-list { | |
| 715 | + margin-top: 25px; | |
| 716 | +} | |
| 717 | + | |
| 718 | +#schedule-lp_change-modal .sch-list .sch-item dl { | |
| 719 | + font-size: 0; | |
| 720 | + border-bottom: 1px solid #e1dbdb; | |
| 721 | + margin: 7px 0; | |
| 722 | +} | |
| 723 | + | |
| 724 | +#schedule-lp_change-modal .sch-list .sch-item dl dd { | |
| 725 | + font-size: 14px; | |
| 726 | + display: inline-block; | |
| 727 | + line-height: 35px; | |
| 728 | + text-align: center; | |
| 729 | + border-right: 1px dashed #e1dbdb; | |
| 730 | +} | |
| 731 | + | |
| 732 | +#schedule-lp_change-modal .sch-list .sch-item dl dd:nth-of-type(1) { | |
| 733 | + width: 33%; | |
| 734 | +} | |
| 735 | + | |
| 736 | +#schedule-lp_change-modal .sch-list .sch-item dl dd:nth-of-type(2) { | |
| 737 | + width: 33%; | |
| 738 | +} | |
| 739 | + | |
| 740 | +#schedule-lp_change-modal .sch-list .sch-item dl dd:nth-of-type(3) { | |
| 741 | + width: 17%; | |
| 742 | +} | |
| 743 | + | |
| 744 | +#schedule-lp_change-modal .sch-list .sch-item dl dd:nth-of-type(4) { | |
| 745 | + width: 15%; | |
| 746 | + border-right:0; | |
| 747 | +} | |
| 748 | + | |
| 749 | + | |
| 750 | +#schedule-lp_change-modal .sch-list .sch-item.reverse dl dd:nth-of-type(1) { | |
| 751 | + width: 15%; | |
| 752 | +} | |
| 753 | + | |
| 754 | +#schedule-lp_change-modal .sch-list .sch-item.reverse dl dd:nth-of-type(2) { | |
| 755 | + width: 17%; | |
| 756 | +} | |
| 757 | + | |
| 758 | +#schedule-lp_change-modal .sch-list .sch-item.reverse dl dd:nth-of-type(3) { | |
| 759 | + width: 33%; | |
| 760 | +} | |
| 761 | + | |
| 762 | +#schedule-lp_change-modal .sch-list .sch-item.reverse dl dd:nth-of-type(4) { | |
| 763 | + width: 33%; | |
| 764 | + border-right:0; | |
| 704 | 765 | } |
| 705 | 766 | \ No newline at end of file | ... | ... |
src/main/resources/static/real_control_v2/css/north.css
| ... | ... | @@ -8,8 +8,8 @@ |
| 8 | 8 | background: linear-gradient(to right, #082F4A, #125688, #0a3f64); |
| 9 | 9 | } |
| 10 | 10 | |
| 11 | -.north.monitor{ | |
| 12 | - background: linear-gradient(to right ,#595959, #7b7b7b,#595959); | |
| 11 | +.north.monitor { | |
| 12 | + background: linear-gradient(to right, #595959, #7b7b7b, #595959); | |
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | .north.scok-colse { |
| ... | ... | @@ -25,7 +25,7 @@ |
| 25 | 25 | border-radius: 20px 0 0 20px; |
| 26 | 26 | z-index: 5; |
| 27 | 27 | left: 270px; |
| 28 | - box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); | |
| 28 | + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| 29 | 29 | border: 1px solid #caaaaa; |
| 30 | 30 | font-size: 13px; |
| 31 | 31 | } |
| ... | ... | @@ -107,7 +107,7 @@ |
| 107 | 107 | display: none; |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | -#history-sch-maintain-modal .load-panel{ | |
| 110 | +#history-sch-maintain-modal .load-panel { | |
| 111 | 111 | background: #fff; |
| 112 | 112 | color: #c92121; |
| 113 | 113 | } |
| ... | ... | @@ -163,7 +163,7 @@ |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | #history-sch-maintain-modal ul.h-s-time, |
| 166 | -#history-sch-maintain-modal ul.h-s-line{ | |
| 166 | +#history-sch-maintain-modal ul.h-s-line { | |
| 167 | 167 | border: 1px solid #f0f0f0; |
| 168 | 168 | padding: 9px 0 10px 0; |
| 169 | 169 | border-radius: 3px; |
| ... | ... | @@ -171,7 +171,7 @@ |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | #history-sch-maintain-modal ul.h-s-time:before, |
| 174 | -#history-sch-maintain-modal ul.h-s-line:before{ | |
| 174 | +#history-sch-maintain-modal ul.h-s-line:before { | |
| 175 | 175 | content: "日期"; |
| 176 | 176 | position: absolute; |
| 177 | 177 | top: -9px; |
| ... | ... | @@ -182,7 +182,7 @@ |
| 182 | 182 | left: 10px; |
| 183 | 183 | } |
| 184 | 184 | |
| 185 | -#history-sch-maintain-modal ul.h-s-line:before{ | |
| 185 | +#history-sch-maintain-modal ul.h-s-line:before { | |
| 186 | 186 | content: "线路"; |
| 187 | 187 | } |
| 188 | 188 | |
| ... | ... | @@ -197,21 +197,21 @@ |
| 197 | 197 | } |
| 198 | 198 | */ |
| 199 | 199 | |
| 200 | -#history-sch-maintain-modal .uk-icon-question-circle{ | |
| 200 | +#history-sch-maintain-modal .uk-icon-question-circle { | |
| 201 | 201 | color: darkgrey; |
| 202 | 202 | font-size: 12px; |
| 203 | 203 | margin: 3px; |
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | .history-sch-table.ct_table dl.active, |
| 207 | -.history-sch-table.ct_table>.ct_table_body dl.active:hover, | |
| 208 | -.history-sch-table.ct_table>.ct_table_body dl.context-menu-active { | |
| 207 | +.history-sch-table.ct_table > .ct_table_body dl.active:hover, | |
| 208 | +.history-sch-table.ct_table > .ct_table_body dl.context-menu-active { | |
| 209 | 209 | background: #8baebc; |
| 210 | 210 | box-shadow: 0 0 4px #656c71; |
| 211 | 211 | color: white; |
| 212 | 212 | } |
| 213 | 213 | |
| 214 | -#history-sch-edit-modal.ct-form-modal form.uk-form-horizontal .uk-form-label{ | |
| 214 | +#history-sch-edit-modal.ct-form-modal form.uk-form-horizontal .uk-form-label { | |
| 215 | 215 | width: 60px; |
| 216 | 216 | } |
| 217 | 217 | |
| ... | ... | @@ -219,6 +219,92 @@ |
| 219 | 219 | margin-left: 64px; |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | +.line-config-tree { | |
| 223 | + padding-top: 15px; | |
| 224 | + border-right: 1px solid #d8d7d7; | |
| 225 | + box-shadow: 3px 1px 17px 0 rgba(0, 0, 0, 0.2), 1px 0px 20px 0 rgba(0, 0, 0, 0.19); | |
| 226 | +} | |
| 227 | + | |
| 228 | +.line-config-tree .title { | |
| 229 | + text-indent: 15px; | |
| 230 | +} | |
| 231 | + | |
| 232 | +.line-config-tree .uk-accordion { | |
| 233 | + /*padding-left: 10px;*/ | |
| 234 | +} | |
| 235 | + | |
| 236 | +.line-config-tree .uk-accordion-title { | |
| 237 | + background: none; | |
| 238 | + border: none; | |
| 239 | + color: #000; | |
| 240 | + margin-bottom: 5px; | |
| 241 | + padding-left: 40px; | |
| 242 | +} | |
| 243 | + | |
| 244 | +.line-config-tree .uk-accordion-title:hover { | |
| 245 | + background: #f7f7f7; | |
| 246 | +} | |
| 247 | + | |
| 248 | +.line-config-tree .uk-list-line li { | |
| 249 | + border-color: #ffffff; | |
| 250 | + font-size: 13px; | |
| 251 | + padding-left: 49px; | |
| 252 | + margin-top: 1px; | |
| 253 | +} | |
| 254 | + | |
| 255 | +.line-config-tree .uk-list-line li a { | |
| 256 | + color: #615f5f; | |
| 257 | +} | |
| 258 | + | |
| 259 | +.line-config-tree .uk-list-line li a.disabled{ | |
| 260 | + color: #9b9898; | |
| 261 | + cursor: no-drop; | |
| 262 | +} | |
| 263 | + | |
| 264 | +.line-config-tree .uk-accordion-title.uk-active { | |
| 265 | + background: #25a5df; | |
| 266 | + border-radius: 0; | |
| 267 | + color: white; | |
| 268 | + box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.2), 0px 2px 5px 0 rgba(0, 0, 0, 0.19); | |
| 269 | +} | |
| 222 | 270 | |
| 271 | +.line-config-tree .uk-list-line li.uk-active a { | |
| 272 | + color: #25a5df; | |
| 273 | +} | |
| 223 | 274 | |
| 275 | +.btn_title_line{ | |
| 276 | + border-bottom: 1px solid #efeded; | |
| 277 | + margin-top: 35px; | |
| 278 | +} | |
| 224 | 279 | |
| 280 | +.z-depth-input{ | |
| 281 | + box-shadow: 0px 0px 4px 0 rgba(67, 255, 243, 0.2), 0px 1px 7px 0 rgba(0, 0, 0, 0.19); | |
| 282 | +} | |
| 283 | + | |
| 284 | +.uk-form-icon i{ | |
| 285 | + z-index: 999 !important; | |
| 286 | +} | |
| 287 | + | |
| 288 | +.uk-form-icon .uk-autocomplete input{ | |
| 289 | + padding-left: 30px; | |
| 290 | +} | |
| 291 | + | |
| 292 | +#nav-line_config-modal form.uk-form{ | |
| 293 | + margin-bottom: 7px; | |
| 294 | +} | |
| 295 | + | |
| 296 | +#nav-line_config-modal small{ | |
| 297 | + color: #7c7c7c; | |
| 298 | +} | |
| 299 | + | |
| 300 | +#nav-line_config-modal .right-container{ | |
| 301 | + padding-top: 20px; | |
| 302 | + overflow: auto; | |
| 303 | + padding-bottom: 20px; | |
| 304 | +} | |
| 305 | + | |
| 306 | +#nav-line_config-modal select, | |
| 307 | +#buffer_config_wrap input{ | |
| 308 | + margin: 0 5px; | |
| 309 | + width: 110px; | |
| 310 | +} | ... | ... |
src/main/resources/static/real_control_v2/fragments/home/c0_a3.html
src/main/resources/static/real_control_v2/fragments/home/svg_edit.html
| ... | ... | @@ -12,7 +12,7 @@ |
| 12 | 12 | <div class="svg-edit-panel-wrap" style="margin-left: 25px;"> |
| 13 | 13 | <span class="title-badge">站点重命名</span> |
| 14 | 14 | <div style="height: 100%;"> |
| 15 | - <div style="height: calc(100% - 25px);"> | |
| 15 | + <div style="height: calc(100% - 25px);overflow: auto;"> | |
| 16 | 16 | <form class="uk-form rename-list-form"> |
| 17 | 17 | </form> |
| 18 | 18 | </div> |
| ... | ... | @@ -65,6 +65,7 @@ |
| 65 | 65 | lineCode, names = [], no = 0; |
| 66 | 66 | |
| 67 | 67 | $(modal).on('init', function (e, data) { |
| 68 | + e.stopPropagation(); | |
| 68 | 69 | lineCode = data.lineCode; |
| 69 | 70 | var allStationList = gb_data_basic.stationRoutes(lineCode); |
| 70 | 71 | //站点路由 | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/add_temp_sch.html
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/bc_type_major.html
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/bc_type_venting.html
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/dftz.html
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/fcxxwt.html
| ... | ... | @@ -163,6 +163,7 @@ |
| 163 | 163 | var modal = '#schedule-fcxxwt-modal' |
| 164 | 164 | ,sch; |
| 165 | 165 | $(modal).on('init', function(e, data) { |
| 166 | + e.stopPropagation(); | |
| 166 | 167 | sch=data.sch; |
| 167 | 168 | var formHtml = template('schedule-fcxxwt-form-temp', {sch: sch, adjustExps:adjustExps}); |
| 168 | 169 | $('form', modal).html(formHtml); | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/jhlb.html
| ... | ... | @@ -87,6 +87,7 @@ |
| 87 | 87 | var modal = '#schedule-jhlb-modal', |
| 88 | 88 | sch; |
| 89 | 89 | $(modal).on('init', function(e, data) { |
| 90 | + e.stopPropagation(); | |
| 90 | 91 | sch = data.sch; |
| 91 | 92 | //获取车辆所有班次 |
| 92 | 93 | var schArr = gb_common.get_vals(gb_schedule_table.findScheduleByLine(sch.xlBm)).filter(function(item) { | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/lj_zrw.html
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/lp_change.html
0 → 100644
| 1 | +<div class="uk-modal" id="schedule-lp_change-modal"> | |
| 2 | + <div class="uk-modal-dialog" style="width: 900px;"> | |
| 3 | + <a href="" class="uk-modal-close uk-close"></a> | |
| 4 | + <div class="uk-modal-header"> | |
| 5 | + <h2>路牌对调</h2></div> | |
| 6 | + | |
| 7 | + <div class="uk-grid uk-grid-divider"> | |
| 8 | + <div class="uk-width-1-2"> | |
| 9 | + <form class="uk-form"> | |
| 10 | + <fieldset> | |
| 11 | + 线路 | |
| 12 | + <select name="lineSelect" style="width: 140px;"></select> | |
| 13 | +   | |
| 14 | + 路牌 | |
| 15 | + <select name="lpName" style="width: 90px;"></select> | |
| 16 | + </fieldset> | |
| 17 | + </form> | |
| 18 | + <div class="sch-list"> | |
| 19 | + <div class="sch-item"> | |
| 20 | + <dl> | |
| 21 | + <dd>S0568/钱存哗</dd> | |
| 22 | + <dd>S0J-046</dd> | |
| 23 | + <dd>5</dd> | |
| 24 | + <dd>07:58</dd> | |
| 25 | + </dl> | |
| 26 | + <dl> | |
| 27 | + <dd>S0568/钱存哗</dd> | |
| 28 | + <dd>S0J-046</dd> | |
| 29 | + <dd>5</dd> | |
| 30 | + <dd>07:58</dd> | |
| 31 | + </dl> | |
| 32 | + <dl> | |
| 33 | + <dd>S0568/钱存哗</dd> | |
| 34 | + <dd>S0J-046</dd> | |
| 35 | + <dd>5</dd> | |
| 36 | + <dd>07:58</dd> | |
| 37 | + </dl> | |
| 38 | + <dl> | |
| 39 | + <dd>S0568/钱存哗</dd> | |
| 40 | + <dd>S0J-046</dd> | |
| 41 | + <dd>5</dd> | |
| 42 | + <dd>07:58</dd> | |
| 43 | + </dl> | |
| 44 | + <dl> | |
| 45 | + <dd>S0568/钱存哗</dd> | |
| 46 | + <dd>S0J-046</dd> | |
| 47 | + <dd>5</dd> | |
| 48 | + <dd>07:58</dd> | |
| 49 | + </dl> | |
| 50 | + <dl> | |
| 51 | + <dd>S0568/钱存哗</dd> | |
| 52 | + <dd>S0J-046</dd> | |
| 53 | + <dd>5</dd> | |
| 54 | + <dd>07:58</dd> | |
| 55 | + </dl> | |
| 56 | + <dl> | |
| 57 | + <dd>S0568/钱存哗</dd> | |
| 58 | + <dd>S0J-046</dd> | |
| 59 | + <dd>5</dd> | |
| 60 | + <dd>07:58</dd> | |
| 61 | + </dl> | |
| 62 | + </div> | |
| 63 | + </div> | |
| 64 | + </div> | |
| 65 | + <div class="uk-width-1-2"> | |
| 66 | + <form class="uk-form uk-form-horizontal"> | |
| 67 | + <fieldset> | |
| 68 | + 线路 | |
| 69 | + <select name="lineSelect" style="width: 140px;"></select> | |
| 70 | +   | |
| 71 | + 路牌 | |
| 72 | + <select name="lpName" style="width: 90px;"></select> | |
| 73 | + </fieldset> | |
| 74 | + </form> | |
| 75 | + <div class="sch-list"> | |
| 76 | + <div class="sch-item reverse"> | |
| 77 | + <dl> | |
| 78 | + <dd>07:58</dd> | |
| 79 | + <dd>5</dd> | |
| 80 | + <dd>S0J-046</dd> | |
| 81 | + <dd>S0568/钱存哗</dd> | |
| 82 | + </dl> | |
| 83 | + <dl> | |
| 84 | + <dd>07:58</dd> | |
| 85 | + <dd>5</dd> | |
| 86 | + <dd>S0J-046</dd> | |
| 87 | + <dd>S0568/钱存哗</dd> | |
| 88 | + </dl> | |
| 89 | + <dl> | |
| 90 | + <dd>07:58</dd> | |
| 91 | + <dd>5</dd> | |
| 92 | + <dd>S0J-046</dd> | |
| 93 | + <dd>S0568/钱存哗</dd> | |
| 94 | + </dl> | |
| 95 | + <dl> | |
| 96 | + <dd>07:58</dd> | |
| 97 | + <dd>5</dd> | |
| 98 | + <dd>S0J-046</dd> | |
| 99 | + <dd>S0568/钱存哗</dd> | |
| 100 | + </dl> | |
| 101 | + <dl> | |
| 102 | + <dd>07:58</dd> | |
| 103 | + <dd>5</dd> | |
| 104 | + <dd>S0J-046</dd> | |
| 105 | + <dd>S0568/钱存哗</dd> | |
| 106 | + </dl> | |
| 107 | + <dl> | |
| 108 | + <dd>07:58</dd> | |
| 109 | + <dd>5</dd> | |
| 110 | + <dd>S0J-046</dd> | |
| 111 | + <dd>S0568/钱存哗</dd> | |
| 112 | + </dl> | |
| 113 | + <dl> | |
| 114 | + <dd>07:58</dd> | |
| 115 | + <dd>5</dd> | |
| 116 | + <dd>S0J-046</dd> | |
| 117 | + <dd>S0568/钱存哗</dd> | |
| 118 | + </dl> | |
| 119 | + </div> | |
| 120 | + </div> | |
| 121 | + </div> | |
| 122 | + </div> | |
| 123 | + | |
| 124 | + <div class="uk-modal-footer uk-text-right" > | |
| 125 | + <button type="button" class="uk-button uk-modal-close">取消</button> | |
| 126 | + <button type="submit" class="uk-button uk-button-primary"><i class="uk-icon-check"></i> 提交</button> | |
| 127 | + </div> | |
| 128 | + </div> | |
| 129 | + | |
| 130 | + <script id="schedule-lp_change-form-temp" type="text/html"> | |
| 131 | + | |
| 132 | + </script> | |
| 133 | + | |
| 134 | + <script> | |
| 135 | + (function () { | |
| 136 | + var modal = '#schedule-lp_change-modal' | |
| 137 | + , sch; | |
| 138 | + $(modal).on('init', function (e, data) { | |
| 139 | + e.stopPropagation(); | |
| 140 | + sch = data.sch; | |
| 141 | + | |
| 142 | + }); | |
| 143 | + })(); | |
| 144 | + </script> | |
| 145 | +</div> | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/multi_dftz.html
| ... | ... | @@ -52,6 +52,7 @@ |
| 52 | 52 | var dateStr = moment().format('YYYY-MM-DD'); |
| 53 | 53 | |
| 54 | 54 | $(modal).on('init', function(e, data) { |
| 55 | + e.stopPropagation(); | |
| 55 | 56 | var firstSch = data.list[0]; |
| 56 | 57 | //获取线路配置信息 |
| 57 | 58 | $.get('/lineConfig/getByLineCode', {lineCode: firstSch.xlBm}, function (config) { | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/multi_tzrc.html
| ... | ... | @@ -86,6 +86,7 @@ |
| 86 | 86 | var modal = '#schedule-multi-tzrc-modal', |
| 87 | 87 | schArr; |
| 88 | 88 | $(modal).on('init', function(e, data) { |
| 89 | + e.stopPropagation(); | |
| 89 | 90 | schArr = data.list; |
| 90 | 91 | var bodyHtml = template('schedule-multi-tzrc-items-temp', data); |
| 91 | 92 | $('.tm-grid-truncate', modal).html(bodyHtml); | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/sftz.html
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/sub_task/add_sub_task_inpark.html
| ... | ... | @@ -248,6 +248,7 @@ |
| 248 | 248 | sch, stationRoutes, parks, information, esCode, timeLocStations; |
| 249 | 249 | var adjustExps = ['配车', '保养', '故障', '肇事', '路阻', '纠纷', '缺人', '客稀', '缺车', '气候', '援外', '吊慢', '抽减', '其他']; |
| 250 | 250 | $(modal).on('init', function (e, data) { |
| 251 | + e.stopPropagation(); | |
| 251 | 252 | sch = data.sch; |
| 252 | 253 | |
| 253 | 254 | //站点路由 | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/sub_task/add_sub_task_other.html
| ... | ... | @@ -130,6 +130,7 @@ |
| 130 | 130 | sch, stationRoutes, parks, information; |
| 131 | 131 | var adjustExps = ['配车', '保养', '故障', '肇事', '路阻', '纠纷', '缺人', '客稀', '缺车', '气候', '援外', '吊慢', '抽减', '其他']; |
| 132 | 132 | $(modal).on('init', function (e, data) { |
| 133 | + e.stopPropagation(); | |
| 133 | 134 | sch = data.sch; |
| 134 | 135 | var formHtml = template('sub-task-other-form-temp', {sch: sch, adjustExps: adjustExps}); |
| 135 | 136 | $('form', modal).html(formHtml); | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/sub_task/add_sub_task_outpark.html
| ... | ... | @@ -180,6 +180,7 @@ |
| 180 | 180 | emptyForm = $('form[empty_form]', modal), |
| 181 | 181 | sch, stationRoutes, parks, information, esCode; |
| 182 | 182 | $(modal).on('init', function (e, data) { |
| 183 | + e.stopPropagation(); | |
| 183 | 184 | sch = data.sch; |
| 184 | 185 | $('.linkToLineInfo', modal).attr('href', '/pages/base/lineinformation/list.html?no=' + gb_data_basic.codeToLine[sch.xlBm].id); |
| 185 | 186 | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/sub_task/add_sub_task_range_turn.html
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/sub_task/station_route_spacing_chart.html
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/tzrc.html
| ... | ... | @@ -108,7 +108,7 @@ |
| 108 | 108 | </dd> |
| 109 | 109 | <dd>{{sch.clZbh}}</dd> |
| 110 | 110 | <dd>{{sch.jGh}}/{{sch.jName}}</dd> |
| 111 | - <dd>{{sch.sGh}}/{{sch.sName}}</dddd> | |
| 111 | + <dd>{{sch.sGh}}/{{sch.sName}}</dd> | |
| 112 | 112 | </dl> |
| 113 | 113 | {{/each}} |
| 114 | 114 | </script> |
| ... | ... | @@ -117,6 +117,7 @@ |
| 117 | 117 | var modal = '#schedule-tzrc-modal', |
| 118 | 118 | sch, schList, lp2SchMap; |
| 119 | 119 | $(modal).on('init', function(e, data) { |
| 120 | + e.stopPropagation(); | |
| 120 | 121 | sch = data.sch; |
| 121 | 122 | |
| 122 | 123 | //线路下拉框 | ... | ... |
src/main/resources/static/real_control_v2/fragments/north/nav/all_devices.html
src/main/resources/static/real_control_v2/fragments/north/nav/directive_history.html
src/main/resources/static/real_control_v2/fragments/north/nav/history_sch_maintain.html
src/main/resources/static/real_control_v2/fragments/north/nav/line_config/buffer_config.html
0 → 100644
| 1 | +<!-- 缓冲区设置 和 应急停靠 --> | |
| 2 | +<div id="buffer_config_wrap"> | |
| 3 | + <div> | |
| 4 | + <h2 class="btn_title_line"> | |
| 5 | + <a class="uk-link-reset">到站缓冲区设置</a> | |
| 6 | + </h2> | |
| 7 | + <div> | |
| 8 | + <form class="uk-form"> | |
| 9 | + <div class="uk-form-row"> | |
| 10 | + 到达上行加 | |
| 11 | + <input type="number" class="z-depth-input" value="60"> | |
| 12 | + 秒 | |
| 13 | + </div> | |
| 14 | + <div class="uk-form-row"> | |
| 15 | + 上行发出减 | |
| 16 | + <input type="number" class="z-depth-input" value="60"> | |
| 17 | + 秒 | |
| 18 | + </div> | |
| 19 | + <div class="uk-form-row"> | |
| 20 | + 到达下行加 | |
| 21 | + <input type="number" class="z-depth-input" value="60"> | |
| 22 | + 秒 | |
| 23 | + </div> | |
| 24 | + <div class="uk-form-row"> | |
| 25 | + 下行发出减 | |
| 26 | + <input type="number" class="z-depth-input" value="60"> | |
| 27 | + 秒 | |
| 28 | + </div> | |
| 29 | + </form> | |
| 30 | + <a style="font-size: 80%;">编辑电子围栏</a> | |
| 31 | + </div> | |
| 32 | + </div> | |
| 33 | + | |
| 34 | + <div> | |
| 35 | + <h2 class="btn_title_line"> | |
| 36 | + <a class="uk-link-reset">应急停靠</a> | |
| 37 | + </h2> | |
| 38 | + <div> | |
| 39 | + <form class="uk-form"> | |
| 40 | + <table > | |
| 41 | + <tr> | |
| 42 | + <td colspan="2" style="padding-left: 30px;"> | |
| 43 | + 是否启用 | |
| 44 | + <select class="z-depth-input"> | |
| 45 | + <option>禁用</option> | |
| 46 | + <option>启用</option> | |
| 47 | + </select> | |
| 48 | + </td> | |
| 49 | + </tr> | |
| 50 | + <tr> | |
| 51 | + <td colspan="2" style="padding-left: 58px;"> | |
| 52 | + 时间 | |
| 53 | + <input type="time" disabled>至 | |
| 54 | + <input type="time" disabled> | |
| 55 | + </td> | |
| 56 | + </tr> | |
| 57 | + <tr> | |
| 58 | + <td> | |
| 59 | + 上行停靠时间 | |
| 60 | + <input type="number" disabled>分钟 | |
| 61 | + </td> | |
| 62 | + </tr> | |
| 63 | + <tr> | |
| 64 | + <td> | |
| 65 | + 下行停靠时间 | |
| 66 | + <input type="number" disabled>分钟 | |
| 67 | + </td> | |
| 68 | + </tr> | |
| 69 | + </table> | |
| 70 | + </form> | |
| 71 | + </div> | |
| 72 | + </div> | |
| 73 | + | |
| 74 | + <script> | |
| 75 | + (function () { | |
| 76 | + var wrap = '#buffer_config_wrap', | |
| 77 | + conf; | |
| 78 | + | |
| 79 | + $(wrap).on('init', function (e, data) { | |
| 80 | + e.stopPropagation(); | |
| 81 | + conf = data.lineConfig; | |
| 82 | + | |
| 83 | + | |
| 84 | + }); | |
| 85 | + })(); | |
| 86 | + </script> | |
| 87 | +</div> | |
| 0 | 88 | \ No newline at end of file | ... | ... |
src/main/resources/static/real_control_v2/fragments/north/nav/line_config/line_config.html
0 → 100644
| 1 | +<div id="nav-line_config-modal" class="uk-modal"> | |
| 2 | + <div class="uk-modal-dialog uk-modal-dialog-blank"> | |
| 3 | + <button class="uk-modal-close uk-close" type="button"></button> | |
| 4 | + <div class="uk-grid uk-flex-middle" data-uk-grid-margin> | |
| 5 | + <div class="uk-width-medium-1-6 uk-height-viewport line-config-tree" data-uk-observe> | |
| 6 | + <h3 class="title" >线路配置</h3> | |
| 7 | + <div class="uk-accordion" data-uk-accordion="{showfirst:false}"></div> | |
| 8 | + </div> | |
| 9 | + <div class="uk-width-medium-5-6 uk-height-viewport right-container" > | |
| 10 | + <div id="line_config_entity_panel"></div> | |
| 11 | + <div id="buffer_config_panel"></div> | |
| 12 | + </div> | |
| 13 | + </div> | |
| 14 | + </div> | |
| 15 | + | |
| 16 | + | |
| 17 | + <script id="nav-line_config-modal-tree-temp" type="text/html"> | |
| 18 | + {{each array as line i}} | |
| 19 | + <h3 class="uk-accordion-title" data-id="{{line.lineCode}}">{{line.name}}</h3> | |
| 20 | + <div class="uk-accordion-content"> | |
| 21 | + <ul class="uk-list uk-list-line"> | |
| 22 | + <li><a>班次更新时间</a></li> | |
| 23 | + <li><a>出场时间类型</a></li> | |
| 24 | + <li><a>原线路回场</a></li> | |
| 25 | + <li><a>到站缓冲区设置</a></li> | |
| 26 | + <li><a>应急停靠</a></li> | |
| 27 | + <li><a class="disabled">漂移判定</a></li> | |
| 28 | + <li><a class="disabled">到离站预测</a></li> | |
| 29 | + <li><a class="disabled">挂牌时刻表</a></li> | |
| 30 | + </ul> | |
| 31 | + </div> | |
| 32 | + {{/each}} | |
| 33 | + </script> | |
| 34 | + | |
| 35 | + <script> | |
| 36 | + (function () { | |
| 37 | + var modal = '#nav-line_config-modal', | |
| 38 | + lineConfig, activeCode; | |
| 39 | + | |
| 40 | + $(modal).on('init', function(e, data) { | |
| 41 | + e.stopPropagation(); | |
| 42 | + var htmlStr = template('nav-line_config-modal-tree-temp', {array: gb_data_basic.activeLines}); | |
| 43 | + $('.line-config-tree .uk-accordion', modal).html(htmlStr); | |
| 44 | + | |
| 45 | + var $first = $('.uk-accordion-title:eq(0)', modal); | |
| 46 | + activeCode = $first.data('id'); | |
| 47 | + load(); | |
| 48 | + | |
| 49 | + setTimeout(function () { | |
| 50 | + //选中第一条线路 | |
| 51 | + $first.trigger('click'); | |
| 52 | + }, 400); | |
| 53 | + }); | |
| 54 | + | |
| 55 | + var load = function () { | |
| 56 | + //获取线路配置信息 | |
| 57 | + $.get('/lineConfig/getByLineCode', {lineCode: activeCode}, function (conf) { | |
| 58 | + lineConfig = conf; | |
| 59 | + | |
| 60 | + loadConfigEntity(); | |
| 61 | + loadBufferConfig(); | |
| 62 | + }); | |
| 63 | + }; | |
| 64 | + | |
| 65 | + //线路配置表属性设置 | |
| 66 | + var loadConfigEntity = function () { | |
| 67 | + $.get('/real_control_v2/fragments/north/nav/line_config/line_config_entity.html', function (attrDom) { | |
| 68 | + $('.right-container #line_config_entity_panel', modal) | |
| 69 | + .append(attrDom) | |
| 70 | + .find('#line_config_entity_wrap') | |
| 71 | + .trigger('init', {lineConfig: lineConfig}); | |
| 72 | + }); | |
| 73 | + }; | |
| 74 | + | |
| 75 | + //缓冲区设置 | |
| 76 | + var loadBufferConfig = function () { | |
| 77 | + $.get('/real_control_v2/fragments/north/nav/line_config/buffer_config.html', function (attrDom) { | |
| 78 | + $('.right-container #buffer_config_panel', modal) | |
| 79 | + .append(attrDom) | |
| 80 | + .find('#buffer_config_wrap') | |
| 81 | + .trigger('init', {lineConfig: lineConfig}); | |
| 82 | + }); | |
| 83 | + }; | |
| 84 | + })(); | |
| 85 | + </script> | |
| 86 | +</div> | ... | ... |
src/main/resources/static/real_control_v2/fragments/north/nav/line_config/line_config_entity.html
0 → 100644
| 1 | +<!-- 线路配置表相关属性 --> | |
| 2 | +<div id="line_config_entity_wrap"> | |
| 3 | + <form class="uk-form"></form> | |
| 4 | + | |
| 5 | + <script id="line_config_entity_form-temp" type="text/html"> | |
| 6 | + <div> | |
| 7 | + <h2 class="btn_title_line"> | |
| 8 | + <a class="uk-link-reset">班次更新时间</a> | |
| 9 | + </h2> | |
| 10 | + <div> | |
| 11 | + <div> | |
| 12 | + 闵行11路每天 | |
| 13 | + <div class="uk-form-icon" style="margin: 0 5px;"> | |
| 14 | + <i class="uk-icon-clock-o"></i> | |
| 15 | + <input type="text" class="z-depth-input" value="{{startOpt}}" style="width: 151px;" | |
| 16 | + data-uk-timepicker> | |
| 17 | + </div> | |
| 18 | + 更新到当日排班 | |
| 19 | + </div> | |
| 20 | + <ul class="uk-list"> | |
| 21 | + <li> | |
| 22 | + <small><i class="uk-icon-question-circle"></i> 所有发车时间小于该时间的班次都默认跨过24点,手动调整的实发实达均应用此规则。</small> | |
| 23 | + </li> | |
| 24 | + </ul> | |
| 25 | + <a class="uk-button uk-button-mini">删除班次</a> | |
| 26 | + <a class="uk-button uk-button-mini">重新加载计划排班</a> | |
| 27 | + <a class="uk-button uk-button-mini">加载历史GPS恢复到离站</a> | |
| 28 | + </div> | |
| 29 | + </div> | |
| 30 | + <div> | |
| 31 | + <h2 class="btn_title_line"> | |
| 32 | + <a class="uk-link-reset">出场时间类型</a> | |
| 33 | + </h2> | |
| 34 | + <div> | |
| 35 | + 使用 | |
| 36 | + <select class="z-depth-input"> | |
| 37 | + <option {{if outConfig==0}}selected{{/if}}>GPS出场</option> | |
| 38 | + <option {{if outConfig==1}}selected{{/if}}>请求出场</option> | |
| 39 | + <option {{if outConfig==2}}selected{{/if}}>出站既出场</option> | |
| 40 | + </select> | |
| 41 | + 时间作为进出场班次的实际时间 | |
| 42 | + <ul class="uk-list"> | |
| 43 | + <li> | |
| 44 | + <small>1、【GPS出场】 使用GPS信号捕获出场时间</small> | |
| 45 | + </li> | |
| 46 | + <li> | |
| 47 | + <small>2、【请求出场】 驾驶员请求出场,调度员同意后,取请求时间作为出场时间。如无请求出场,则捕获GPS时间。</small> | |
| 48 | + </li> | |
| 49 | + <li> | |
| 50 | + <small>3、【出站既出场】 忽略出场班次,以头班车的发车时间作为出场时间,场既是站或停车场与起点站距离很近时推荐此项。</small> | |
| 51 | + </li> | |
| 52 | + </ul> | |
| 53 | + </div> | |
| 54 | + </div> | |
| 55 | + | |
| 56 | + <div> | |
| 57 | + <h2 class="btn_title_line"> | |
| 58 | + <a class="uk-link-reset">原线路回场</a> | |
| 59 | + </h2> | |
| 60 | + <div> | |
| 61 | + 是否启用 | |
| 62 | + <select class="z-depth-input"> | |
| 63 | + <option>禁用</option> | |
| 64 | + <option>启用</option> | |
| 65 | + </select> | |
| 66 | + | |
| 67 | + <ul class="uk-list"> | |
| 68 | + <li> | |
| 69 | + <small><i class="uk-icon-question-circle"></i> 回场时先回起点站,然后起点站回场。</small> | |
| 70 | + </li> | |
| 71 | + <li> | |
| 72 | + <small><i class="uk-icon-question-circle"></i> 启用该项后,回场子任务公里 = 中途站到起点站间公里 + 线路标准回场公里 。</small> | |
| 73 | + </li> | |
| 74 | + </ul> | |
| 75 | + </div> | |
| 76 | + </div> | |
| 77 | + </script> | |
| 78 | + <script> | |
| 79 | + (function () { | |
| 80 | + | |
| 81 | + var wrap = '#line_config_entity_wrap', conf; | |
| 82 | + | |
| 83 | + $(wrap).on('init', function (e, data) { | |
| 84 | + e.stopPropagation(); | |
| 85 | + conf = data.lineConfig; | |
| 86 | + var htmlStr = template('line_config_entity_form-temp', conf); | |
| 87 | + $('form', wrap).html(htmlStr); | |
| 88 | + }); | |
| 89 | + })(); | |
| 90 | + </script> | |
| 91 | +</div> | |
| 0 | 92 | \ No newline at end of file | ... | ... |
src/main/resources/static/real_control_v2/fragments/north/nav/report_80.html
src/main/resources/static/real_control_v2/fragments/north/nav/signal_state_config.html
src/main/resources/static/real_control_v2/fragments/north/nav/tts_config.html
src/main/resources/static/real_control_v2/js/common.js
| ... | ... | @@ -131,7 +131,12 @@ var gb_common = (function () { |
| 131 | 131 | var data = groupBy(get_vals(allGps), 'lineId'); |
| 132 | 132 | var name; |
| 133 | 133 | for (var code in data) { |
| 134 | - name = gb_data_basic.codeToLine[code].name; | |
| 134 | + try{ | |
| 135 | + name = gb_data_basic.codeToLine[code].name; | |
| 136 | + }catch(e) { | |
| 137 | + continue; | |
| 138 | + } | |
| 139 | + | |
| 135 | 140 | data[name] = groupBy(data[code], 'upDown'); |
| 136 | 141 | treeData.push({ |
| 137 | 142 | 'text': name, | ... | ... |
src/main/resources/static/real_control_v2/js/data/json/back deleted
100644 → 0
| 1 | -[ { | |
| 2 | - "id": 1, | |
| 3 | - "text": "数据&统计", | |
| 4 | - "clazz": "dropdown-column-2", | |
| 5 | - "columns": true, | |
| 6 | - "cls_class": "uk-width-1-2", | |
| 7 | - "grid": [ | |
| 8 | - [ | |
| 9 | - { | |
| 10 | - "id": 1.12, | |
| 11 | - "text": "数据管理", | |
| 12 | - "header": 1 | |
| 13 | - }, | |
| 14 | - { | |
| 15 | - "id": 1.52, | |
| 16 | - "text": "历史班次维护", | |
| 17 | - "event": "history_sch_maintain" | |
| 18 | - } | |
| 19 | - ], | |
| 20 | - [ | |
| 21 | - { | |
| 22 | - "id": 1.1, | |
| 23 | - "text": "统计分析", | |
| 24 | - "header": 1 | |
| 25 | - }, | |
| 26 | - { | |
| 27 | - "id": 1.2, | |
| 28 | - "text": "出车率", | |
| 29 | - "event": "turnout_rate", | |
| 30 | - "icon": "uk-icon-pie-chart" | |
| 31 | - }, | |
| 32 | - { | |
| 33 | - "id": 1.3, | |
| 34 | - "text": "设备上线率", | |
| 35 | - "event": "device_online_rate", | |
| 36 | - "icon": "uk-icon-pie-chart" | |
| 37 | - }, | |
| 38 | - { | |
| 39 | - "id": 1.4, | |
| 40 | - "divider": true | |
| 41 | - }, | |
| 42 | - { | |
| 43 | - "id": 1.5, | |
| 44 | - "text": "班次执行率", | |
| 45 | - "event": "sch_exec_rate", | |
| 46 | - "icon": "uk-icon-pie-chart" | |
| 47 | - }, | |
| 48 | - { | |
| 49 | - "id": 1.6, | |
| 50 | - "text": "线路首末班准点率", | |
| 51 | - "event": "s_e_punctuality_rate_line", | |
| 52 | - "icon": "uk-icon-pie-chart" | |
| 53 | - }, | |
| 54 | - { | |
| 55 | - "id": 1.7, | |
| 56 | - "text": "车辆首末班准点率", | |
| 57 | - "event": "s_e_punctuality_rate", | |
| 58 | - "icon": "uk-icon-pie-chart" | |
| 59 | - } | |
| 60 | - ] | |
| 61 | - ] | |
| 62 | - }, { | |
| 63 | - "id": 2, | |
| 64 | - "text": "车载设备", | |
| 65 | - "children": [{ | |
| 66 | - "id": 2.1, | |
| 67 | - "text": "设备管理", | |
| 68 | - "event": "", | |
| 69 | - "disabled": "disabled" | |
| 70 | - }, { | |
| 71 | - "id": 2.2, | |
| 72 | - "text": "设备上报记录", | |
| 73 | - "event": "device_report", | |
| 74 | - "disabled": "disabled" | |
| 75 | - }, { | |
| 76 | - "id": 2.3, | |
| 77 | - "text": "指令下发记录", | |
| 78 | - "event": "directive_history" | |
| 79 | - }] | |
| 80 | -}, { | |
| 81 | - "id": 3, | |
| 82 | - "text": "系统设置", | |
| 83 | - "children": [{ | |
| 84 | - "id": 3.1, | |
| 85 | - "text": "TTS", | |
| 86 | - "event": "", | |
| 87 | - "disabled": "disabled" | |
| 88 | - }, { | |
| 89 | - "id": 3.2, | |
| 90 | - "text": "更新日志", | |
| 91 | - "event": "", | |
| 92 | - "disabled": "disabled" | |
| 93 | - }] | |
| 94 | -}] |
src/main/resources/static/real_control_v2/js/data/json/north_toolbar.json
src/main/resources/static/real_control_v2/js/line_schedule/context_menu.js
| ... | ... | @@ -117,6 +117,11 @@ var gb_schedule_context_menu = (function () { |
| 117 | 117 | Cancel: '取消' |
| 118 | 118 | } |
| 119 | 119 | }); |
| 120 | + }, | |
| 121 | + lp_change: function (sch) { | |
| 122 | + open_modal(folder + '/lp_change.html', { | |
| 123 | + sch: sch | |
| 124 | + }, modal_opts); | |
| 120 | 125 | } |
| 121 | 126 | }; |
| 122 | 127 | |
| ... | ... | @@ -161,6 +166,11 @@ var gb_schedule_context_menu = (function () { |
| 161 | 166 | }, |
| 162 | 167 | 'zlcf': { |
| 163 | 168 | name: '指令重发' |
| 169 | + }, | |
| 170 | + 'sep3': '---------', | |
| 171 | + 'lp_change': { | |
| 172 | + name: '路牌对调', | |
| 173 | + disabled: true | |
| 164 | 174 | } |
| 165 | 175 | } |
| 166 | 176 | }); | ... | ... |
src/main/resources/static/real_control_v2/js/north/toolbar.js
| ... | ... | @@ -77,8 +77,11 @@ var gb_northToolbar = (function () { |
| 77 | 77 | }, |
| 78 | 78 | signal_state: function () { |
| 79 | 79 | open_modal('/real_control_v2/fragments/north/nav/signal_state_config.html', {}, modal_opts); |
| 80 | + }, | |
| 81 | + line_config: function () { | |
| 82 | + open_modal('/real_control_v2/fragments/north/nav/line_config/line_config.html', {}, modal_opts); | |
| 80 | 83 | } |
| 81 | - } | |
| 84 | + }; | |
| 82 | 85 | |
| 83 | 86 | return { |
| 84 | 87 | user: function () { | ... | ... |
src/main/resources/static/real_control_v2/main.html
| ... | ... | @@ -9,7 +9,7 @@ |
| 9 | 9 | <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.gradient.min.css" /> |
| 10 | 10 | <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.gradient.min.css" /> |
| 11 | 11 | <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/autocomplete.gradient.min.css" /> |
| 12 | - <!--<link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/slider.gradient.min.css" />--> | |
| 12 | + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/accordion.gradient.min.css" /> | |
| 13 | 13 | |
| 14 | 14 | <!-- main style --> |
| 15 | 15 | <link rel="stylesheet" href="/real_control_v2/css/main.css" /> |
| ... | ... | @@ -87,7 +87,9 @@ |
| 87 | 87 | <script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/pagination.min.js"></script> |
| 88 | 88 | <script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.min.js"></script> |
| 89 | 89 | <script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/autocomplete.min.js"></script> |
| 90 | - <!--<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/slider.min.js"></script>--> | |
| 90 | + <script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/accordion.min.js"></script> | |
| 91 | + <script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/timepicker.min.js"></script> | |
| 92 | + | |
| 91 | 93 | <!-- jquery contextMenu --> |
| 92 | 94 | <script src="/real_control_v2/assets/js/jquery.contextMenu.min.js"></script> |
| 93 | 95 | <script src="/real_control_v2/assets/js/jquery.ui.position.min.js"></script> | ... | ... |
src/main/resources/static/real_control_v2/mapmonitor/js/gps_tree.js
| ... | ... | @@ -139,12 +139,35 @@ var gb_map_gps_tree = (function () { |
| 139 | 139 | }, 'last', cb); |
| 140 | 140 | }; |
| 141 | 141 | |
| 142 | + var openLineNode = function (lineId, cb) { | |
| 143 | + var tree = treeObj.jstree(true); | |
| 144 | + tree.open_node(tree.get_node('map_tree_line_' + lineId), function () { | |
| 145 | + var upNode = tree.get_node('map_tree_route_' + lineId + '_0') | |
| 146 | + ,downNode = tree.get_node('map_tree_route_' + lineId + '_1'); | |
| 147 | + | |
| 148 | + tree.open_node(upNode, function () { | |
| 149 | + tree.open_node(downNode, cb); | |
| 150 | + }); | |
| 151 | + }); | |
| 152 | + }; | |
| 153 | + | |
| 154 | + var moveNode = function (i, gps) { | |
| 155 | + var tree = treeObj.jstree(true) | |
| 156 | + ,lineId = gps.lineId; | |
| 157 | + openLineNode(lineId, function () { | |
| 158 | + var node = tree.get_node('map_tree_device_' + gps.nbbm); | |
| 159 | + //移动节点 | |
| 160 | + var parent = tree.get_node('map_tree_route_' + lineId + '_' + gps.upDown); | |
| 161 | + treeObj.jstree(true).move_node(node, parent); | |
| 162 | + }); | |
| 163 | + }; | |
| 164 | + | |
| 142 | 165 | /** |
| 143 | 166 | * 上下行改变 |
| 144 | 167 | * @param changeArray |
| 145 | 168 | */ |
| 146 | 169 | var changeUpDown = function (changeArray) { |
| 147 | - console.log('changeUpDown', changeArray); | |
| 170 | + $.each(changeArray, moveNode); | |
| 148 | 171 | }; |
| 149 | 172 | |
| 150 | 173 | /** |
| ... | ... | @@ -193,10 +216,6 @@ var gb_map_gps_tree = (function () { |
| 193 | 216 | }; |
| 194 | 217 | |
| 195 | 218 | var selectitem = function (event, data, acobject) { |
| 196 | - //var deviceId = gb_data_basic.nbbm2deviceMap()[data.value]; | |
| 197 | - //gb_map_imap.call('drawRealGpsMarker', {gpsList: [gb_data_gps.findOne(deviceId)]}); | |
| 198 | - //地图定位 | |
| 199 | - //gb_map_overlay_mge._focus(gb_data_basic.nbbm2deviceMap()[data.value]); | |
| 200 | 219 | |
| 201 | 220 | var tree = treeObj.jstree(true) |
| 202 | 221 | var deviceId = gb_data_basic.nbbm2deviceMap()[data.value] | ... | ... |