Commit 9a1ac028641fc567dc7ac30db6e7eaa6cf68f113
Merge remote-tracking branch 'origin/jiading_test' into jiading_test
Showing
19 changed files
with
5325 additions
and
4249 deletions
src/main/java/com/bsth/controller/calc/CalcDlbController.java
0 → 100644
| 1 | +package com.bsth.controller.calc; | |
| 2 | + | |
| 3 | +import java.text.SimpleDateFormat; | |
| 4 | +import java.util.Date; | |
| 5 | +import java.util.HashMap; | |
| 6 | +import java.util.Map; | |
| 7 | + | |
| 8 | +import org.springframework.beans.factory.annotation.Autowired; | |
| 9 | +import org.springframework.web.bind.annotation.RequestMapping; | |
| 10 | +import org.springframework.web.bind.annotation.RequestParam; | |
| 11 | +import org.springframework.web.bind.annotation.RestController; | |
| 12 | + | |
| 13 | +import com.bsth.common.ResponseCode; | |
| 14 | +import com.bsth.service.calc.CalcDlbService; | |
| 15 | + | |
| 16 | +/** | |
| 17 | + * Created by 20/05/27. | |
| 18 | + */ | |
| 19 | +@RestController | |
| 20 | +@RequestMapping("calc_dlb") | |
| 21 | +public class CalcDlbController { | |
| 22 | + | |
| 23 | + @Autowired | |
| 24 | + CalcDlbService service; | |
| 25 | + | |
| 26 | + @RequestMapping(value="/updateDlb") | |
| 27 | + public Map<String, Object> generateDaliy(@RequestParam Map<String, Object> map) throws Exception{ | |
| 28 | + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); | |
| 29 | + Date d = new Date(); | |
| 30 | + d.setTime(d.getTime() - (1l*1000*60*60*24)); //默认前一天 | |
| 31 | + String date = ""; | |
| 32 | + if(map.containsKey("date") && map.get("date")!=null){ | |
| 33 | + date=map.get("date").toString().trim(); | |
| 34 | + } | |
| 35 | + | |
| 36 | + Map<String, Object> m = new HashMap<String, Object>(); | |
| 37 | + m.put("date", date); | |
| 38 | + try { | |
| 39 | + sdf.format(sdf.parse(date)); //校验日期格式 | |
| 40 | + | |
| 41 | +// m.put("status", service.impElectric(date)); | |
| 42 | + service.impElectric(date); | |
| 43 | + m.put("status", ResponseCode.SUCCESS); | |
| 44 | + | |
| 45 | + } catch (Exception e) { | |
| 46 | + // TODO: handle exception | |
| 47 | + e.printStackTrace(); | |
| 48 | + m.put("status", ResponseCode.ERROR); | |
| 49 | + return m; | |
| 50 | + } | |
| 51 | + return m; | |
| 52 | + } | |
| 53 | + | |
| 54 | +} | ... | ... |
src/main/java/com/bsth/entity/oil/Dlb.java
| ... | ... | @@ -39,11 +39,13 @@ public class Dlb { |
| 39 | 39 | private String jhsj; |
| 40 | 40 | //耗电 |
| 41 | 41 | private Double hd=0.0; |
| 42 | + //损耗 | |
| 42 | 43 | private Double sh=0.0; |
| 43 | 44 | private String shyy; |
| 44 | 45 | private Double zlc=0.0; |
| 45 | 46 | private int yhlx; |
| 46 | - | |
| 47 | + | |
| 48 | + //当前存入百公里油耗 | |
| 47 | 49 | private Double ns=0.0; |
| 48 | 50 | private Double fyylc=0.0; |
| 49 | 51 | private Double jhzlc=0.0; | ... | ... |
src/main/java/com/bsth/repository/oil/DlbRepository.java
| ... | ... | @@ -26,13 +26,22 @@ public interface DlbRepository extends BaseRepository<Dlb, Integer>{ |
| 26 | 26 | List<Dlb> obtainYlbefore(String rq,String gsdm,String fgsdm,String xlbm,String nbbm); |
| 27 | 27 | /** |
| 28 | 28 | * 当天DLB信息 |
| 29 | - * @param rq | |
| 29 | + * @param rq, xlbm(like) | |
| 30 | 30 | * @return |
| 31 | 31 | */ |
| 32 | 32 | @Query(value="SELECT * FROM bsth_c_dlb where rq=?1 and ssgsdm like %?2% " |
| 33 | 33 | + " and fgsdm like %?3%" |
| 34 | 34 | + " and xlbm like %?4% and nbbm like %?5% order by ?6 asc",nativeQuery=true) |
| 35 | 35 | List<Dlb> obtainDl(String rq,String gsbm,String fgsdm,String xlbm,String nbbm,String px); |
| 36 | + /** | |
| 37 | + * 当天DLB信息 | |
| 38 | + * @param rq, xlbm(=) | |
| 39 | + * @return | |
| 40 | + */ | |
| 41 | + @Query(value="SELECT * FROM bsth_c_dlb where rq=?1 and ssgsdm like %?2% " | |
| 42 | + + " and fgsdm like %?3%" | |
| 43 | + + " and xlbm = ?4 and nbbm like %?5% order by ?6 asc",nativeQuery=true) | |
| 44 | + List<Dlb> obtainDlEq(String rq,String gsbm,String fgsdm,String xlbm,String nbbm,String px); | |
| 36 | 45 | |
| 37 | 46 | @Query(value="select s from Dlb s " |
| 38 | 47 | + " where to_days(s.rq)=to_days(?1) " | ... | ... |
src/main/java/com/bsth/service/calc/CalcDlbService.java
0 → 100644
src/main/java/com/bsth/service/calc/impl/CalcDlbServiceImpl.java
0 → 100644
| 1 | +package com.bsth.service.calc.impl; | |
| 2 | + | |
| 3 | +import java.io.BufferedReader; | |
| 4 | +import java.io.InputStreamReader; | |
| 5 | +import java.math.BigDecimal; | |
| 6 | +import java.net.HttpURLConnection; | |
| 7 | +import java.net.URL; | |
| 8 | +import java.sql.PreparedStatement; | |
| 9 | +import java.sql.ResultSet; | |
| 10 | +import java.sql.SQLException; | |
| 11 | +import java.text.SimpleDateFormat; | |
| 12 | +import java.util.ArrayList; | |
| 13 | +import java.util.Calendar; | |
| 14 | +import java.util.Collections; | |
| 15 | +import java.util.Comparator; | |
| 16 | +import java.util.Date; | |
| 17 | +import java.util.HashMap; | |
| 18 | +import java.util.HashSet; | |
| 19 | +import java.util.Iterator; | |
| 20 | +import java.util.List; | |
| 21 | +import java.util.Map; | |
| 22 | +import java.util.Set; | |
| 23 | + | |
| 24 | +import com.alibaba.fastjson.JSONObject; | |
| 25 | +import com.bsth.entity.realcontrol.ChildTaskPlan; | |
| 26 | +import com.bsth.entity.realcontrol.ScheduleRealInfo; | |
| 27 | +import com.bsth.repository.realcontrol.ScheduleRealInfoRepository; | |
| 28 | +import com.bsth.service.calc.CalcDlbService; | |
| 29 | +import com.bsth.util.Arith; | |
| 30 | + | |
| 31 | +import org.joda.time.format.DateTimeFormat; | |
| 32 | +import org.joda.time.format.DateTimeFormatter; | |
| 33 | +import org.slf4j.Logger; | |
| 34 | +import org.slf4j.LoggerFactory; | |
| 35 | +import org.springframework.beans.factory.annotation.Autowired; | |
| 36 | +import org.springframework.jdbc.core.BatchPreparedStatementSetter; | |
| 37 | +import org.springframework.jdbc.core.JdbcTemplate; | |
| 38 | +import org.springframework.jdbc.core.RowMapper; | |
| 39 | +import org.springframework.jdbc.datasource.DataSourceTransactionManager; | |
| 40 | +import org.springframework.stereotype.Service; | |
| 41 | +import org.springframework.transaction.TransactionDefinition; | |
| 42 | +import org.springframework.transaction.TransactionStatus; | |
| 43 | +import org.springframework.transaction.support.DefaultTransactionDefinition; | |
| 44 | + | |
| 45 | +/** | |
| 46 | + * Created by 20/05/27. | |
| 47 | + */ | |
| 48 | +@Service | |
| 49 | +public class CalcDlbServiceImpl implements CalcDlbService { | |
| 50 | + | |
| 51 | + @Autowired | |
| 52 | + JdbcTemplate jdbcTemplate; | |
| 53 | + | |
| 54 | + @Autowired | |
| 55 | + ScheduleRealInfoRepository scheRepository; | |
| 56 | + | |
| 57 | + Logger logger = LoggerFactory.getLogger(this.getClass()); | |
| 58 | + | |
| 59 | + final DateTimeFormatter dtf = DateTimeFormat.forPattern("yyyy-MM-ddHH:mm"); | |
| 60 | + | |
| 61 | + | |
| 62 | + /** | |
| 63 | + * @throws Exception | |
| 64 | + */ | |
| 65 | + public void impElectric(String date) throws Exception{ | |
| 66 | + try { | |
| 67 | + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); | |
| 68 | + Calendar calendar2 = Calendar.getInstance(); | |
| 69 | + calendar2.setTime(new Date()); | |
| 70 | + int hours= calendar2.get(Calendar.HOUR_OF_DAY); | |
| 71 | + | |
| 72 | +// if(hoursC>=8 && hours<9){//每天8点到9点间执行 | |
| 73 | + if(true){ //无更新时点限制 | |
| 74 | + //查询所有车辆 | |
| 75 | + String sql = "select inside_code,branche_company_code, ny_type from bsth_c_cars"; | |
| 76 | + | |
| 77 | + List<Map<String, String>> listMap= jdbcTemplate.query(sql, new RowMapper<Map<String,String>>(){ | |
| 78 | + @Override | |
| 79 | + public Map<String, String> mapRow(ResultSet rs, int rowNum) throws SQLException { | |
| 80 | + Map<String, String> m=new HashMap<String, String>(); | |
| 81 | + m.put("insideCode", rs.getString("inside_code")); | |
| 82 | + m.put("brancheCompanyCode", rs.getString("branche_company_code")); | |
| 83 | + m.put("nyType", rs.getString("ny_type")); | |
| 84 | + return m; | |
| 85 | + } | |
| 86 | + }); | |
| 87 | + Map<String, String> map=new HashMap<String, String>(); | |
| 88 | + Map<String, String> nyTypeMap=new HashMap<String, String>(); | |
| 89 | + for (int i = 0; i < listMap.size(); i++) { | |
| 90 | + Map<String, String> m=listMap.get(i); | |
| 91 | + map.put(m.get("insideCode"), m.get("brancheCompanyCode")); | |
| 92 | + nyTypeMap.put(m.get("insideCode"), m.get("nyType")); | |
| 93 | + } | |
| 94 | +// Date dNow = new Date(); | |
| 95 | +// Calendar calendar = Calendar.getInstance(); | |
| 96 | +// calendar.setTime(dNow); | |
| 97 | +// calendar.add(Calendar.DAY_OF_MONTH, -1); | |
| 98 | +// Date dBefore = calendar.getTime(); | |
| 99 | +// String date = sdf.format(dBefore); | |
| 100 | + String json = this.getHttpInterface("https://web.enneagon.com/exchange/pub/rest/vehicle/getJiaDingBusDailyData?scheduleDate="+date); | |
| 101 | + List<Map<String, Object>> list=(List<Map<String, Object>>) JSONObject.parse(json); | |
| 102 | + if(list.size()>0){ | |
| 103 | + savePush(list, date, map); | |
| 104 | + } | |
| 105 | + | |
| 106 | + //第一步获取从排班表获取日期,人,车,线,路牌,里程 | |
| 107 | + List<ScheduleRealInfo> findByDate = scheRepository.findByDate(date); | |
| 108 | + Map<String, List<ScheduleRealInfo>> keyMap = new HashMap<String, List<ScheduleRealInfo>>(); | |
| 109 | + for(ScheduleRealInfo s : findByDate){ | |
| 110 | + String key = s.getGsBm() + "/" + s.getFgsBm() + "/" + s.getXlBm() + "/" + s.getLpName() + "/" + s.getClZbh() + "/" + s.getjGh(); | |
| 111 | + if(!(keyMap.containsKey(key))){ | |
| 112 | + keyMap.put(key, new ArrayList<ScheduleRealInfo>()); | |
| 113 | + } | |
| 114 | + keyMap.get(key).add(s); | |
| 115 | + } | |
| 116 | + | |
| 117 | + List<Map<String, Object>> list1 = new ArrayList<Map<String, Object>>(); | |
| 118 | + List<Map<String, Object>> list2 = (List<Map<String, Object>>) JSONObject.parse(json); | |
| 119 | + Set<String> set = new HashSet<String>(); | |
| 120 | + Map<String, List<Map<String, Object>>> keyMap1 = new HashMap<String, List<Map<String, Object>>>(); | |
| 121 | + Map<String, List<Map<String, Object>>> keyMap2 = new HashMap<String, List<Map<String, Object>>>(); | |
| 122 | + | |
| 123 | + for(String key : keyMap.keySet()){ | |
| 124 | + Map<String, Object> m = new HashMap<String, Object>(); | |
| 125 | + List<ScheduleRealInfo> list3 = keyMap.get(key); | |
| 126 | + double sjzgl = 0; | |
| 127 | + String gsName = "", fgsName = "", xlName = "", jName = "", red = "", fcsj = ""; | |
| 128 | + for (ScheduleRealInfo scheduleRealInfo : list3) { | |
| 129 | + | |
| 130 | + //取最小的发车时间 | |
| 131 | + String fcsjA = "", redA = ""; | |
| 132 | + if(scheduleRealInfo.getFcsjActual() != null && scheduleRealInfo.getFcsjActual().trim().length() > 0){ | |
| 133 | + fcsjA = scheduleRealInfo.getFcsjActual(); | |
| 134 | + } else if(scheduleRealInfo.getFcsj() != null && scheduleRealInfo.getFcsj().trim().length() > 0){ | |
| 135 | + fcsjA = scheduleRealInfo.getFcsj(); | |
| 136 | + } | |
| 137 | + if(scheduleRealInfo.getRealExecDate() != null && scheduleRealInfo.getRealExecDate().trim().length() > 0){ | |
| 138 | + redA = scheduleRealInfo.getRealExecDate(); | |
| 139 | + } else { | |
| 140 | + redA = date; | |
| 141 | + } | |
| 142 | + if(fcsjA.trim().length() > 0){ | |
| 143 | + if(fcsj.length() == 0 || dtf.parseMillis(redA+fcsjA) < dtf.parseMillis(red+fcsj)){ | |
| 144 | + fcsj = fcsjA; | |
| 145 | + red = redA; | |
| 146 | + } | |
| 147 | + } | |
| 148 | + | |
| 149 | + if(scheduleRealInfo.getGsName() != null && scheduleRealInfo.getGsName().trim().length() > 0){ | |
| 150 | + gsName = scheduleRealInfo.getGsName(); | |
| 151 | + } | |
| 152 | + if(scheduleRealInfo.getFgsName() != null && scheduleRealInfo.getFgsName().trim().length() > 0){ | |
| 153 | + fgsName = scheduleRealInfo.getFgsName(); | |
| 154 | + } | |
| 155 | + if(scheduleRealInfo.getXlName() != null && scheduleRealInfo.getXlName().trim().length() > 0){ | |
| 156 | + xlName = scheduleRealInfo.getXlName(); | |
| 157 | + } | |
| 158 | + if(scheduleRealInfo.getjName() != null && scheduleRealInfo.getjName().trim().length() > 0){ | |
| 159 | + jName = scheduleRealInfo.getjName(); | |
| 160 | + } | |
| 161 | + | |
| 162 | + //开始算里程 | |
| 163 | + if (!isInOut(scheduleRealInfo)) { | |
| 164 | + Set<ChildTaskPlan> childTaskPlans = scheduleRealInfo.getcTasks(); | |
| 165 | + if(!scheduleRealInfo.isSflj()){ | |
| 166 | + if(childTaskPlans.isEmpty()){ | |
| 167 | + if(!scheduleRealInfo.isDestroy()){ | |
| 168 | + //非子任务 实际里程 | |
| 169 | + double jhlcOrig=scheduleRealInfo.getJhlcOrig()==null?0:scheduleRealInfo.getJhlcOrig(); | |
| 170 | + double jhlc=scheduleRealInfo.getJhlc()==null?0:scheduleRealInfo.getJhlc(); | |
| 171 | + if(jhlc-jhlcOrig>0){ | |
| 172 | + sjzgl=Arith.add(sjzgl,jhlcOrig); | |
| 173 | + }else{ | |
| 174 | + sjzgl=Arith.add(sjzgl,jhlc); | |
| 175 | + } | |
| 176 | + } | |
| 177 | + //临加里程 | |
| 178 | + double jhlc=scheduleRealInfo.getJhlc()==null?0:scheduleRealInfo.getJhlc(); | |
| 179 | + double jhlcOrig=scheduleRealInfo.getJhlcOrig()==null?0:scheduleRealInfo.getJhlcOrig(); | |
| 180 | + double zjlc=Arith.sub(jhlc, jhlcOrig); | |
| 181 | + if(zjlc>0){ | |
| 182 | + sjzgl=Arith.add(zjlc, sjzgl); | |
| 183 | + } | |
| 184 | + } else { | |
| 185 | + Iterator<ChildTaskPlan> it = childTaskPlans.iterator(); | |
| 186 | + while (it.hasNext()) { | |
| 187 | + ChildTaskPlan childTaskPlan = it.next(); | |
| 188 | + if(childTaskPlan.getMileageType().equals("service") | |
| 189 | + &&"正常".equals(childTaskPlan.getType1()) | |
| 190 | + && childTaskPlan.getCcId()==null){ | |
| 191 | + //子任务 实际里程 | |
| 192 | + if (!childTaskPlan.isDestroy()) { | |
| 193 | + Float jhgl=childTaskPlan.getMileage()==null?0:childTaskPlan.getMileage(); | |
| 194 | + sjzgl=Arith.add(sjzgl,jhgl); | |
| 195 | + } | |
| 196 | + } else if(childTaskPlan.getMileageType().equals("empty") && childTaskPlan.getCcId()==null){ | |
| 197 | + //空驶公里 | |
| 198 | + if (!childTaskPlan.isDestroy()) { | |
| 199 | + Float jhgl=childTaskPlan.getMileage()==null?0:childTaskPlan.getMileage(); | |
| 200 | + sjzgl=Arith.add(sjzgl,jhgl); | |
| 201 | + } | |
| 202 | + } else if("service".equals(childTaskPlan.getMileageType())&&"临加".equals(childTaskPlan.getType1()) | |
| 203 | + && childTaskPlan.getCcId()==null){ | |
| 204 | + //临加里程 | |
| 205 | + if (!childTaskPlan.isDestroy()) { | |
| 206 | + Float jhgl=childTaskPlan.getMileage()==null?0:childTaskPlan.getMileage(); | |
| 207 | + sjzgl=Arith.add(sjzgl,jhgl); | |
| 208 | + } | |
| 209 | + } | |
| 210 | + } | |
| 211 | + } | |
| 212 | + } else { | |
| 213 | + //临加里程 | |
| 214 | + if(childTaskPlans.isEmpty()){ | |
| 215 | + sjzgl=Arith.add(sjzgl,scheduleRealInfo.getJhlc()==null?0:scheduleRealInfo.getJhlc()); | |
| 216 | + }else{ | |
| 217 | + Iterator<ChildTaskPlan> it = childTaskPlans.iterator(); | |
| 218 | + while (it.hasNext()) { | |
| 219 | + ChildTaskPlan childTaskPlan = it.next(); | |
| 220 | + if(childTaskPlan.getMileageType().equals("service") && childTaskPlan.getCcId()==null){ | |
| 221 | + if (!childTaskPlan.isDestroy()) { | |
| 222 | + Float jhgl=childTaskPlan.getMileage()==null?0:childTaskPlan.getMileage(); | |
| 223 | + sjzgl=Arith.add(sjzgl,jhgl); | |
| 224 | + } | |
| 225 | + } | |
| 226 | + } | |
| 227 | + } | |
| 228 | + } | |
| 229 | + } else { | |
| 230 | + //进出场里程 | |
| 231 | + Set<ChildTaskPlan> childTaskPlans = scheduleRealInfo.getcTasks(); | |
| 232 | + if(childTaskPlans.isEmpty()){ | |
| 233 | + if(!scheduleRealInfo.isDestroy()){ | |
| 234 | + sjzgl=Arith.add(sjzgl, scheduleRealInfo.getJhlc()==null?0:scheduleRealInfo.getJhlc()); | |
| 235 | + } | |
| 236 | + }else{ | |
| 237 | + Iterator<ChildTaskPlan> it = childTaskPlans.iterator(); | |
| 238 | + while (it.hasNext()) { | |
| 239 | + ChildTaskPlan childTaskPlan = it.next(); | |
| 240 | + if(childTaskPlan.getMileageType().equals("empty") && childTaskPlan.getCcId()==null){ | |
| 241 | + if (!childTaskPlan.isDestroy()) { | |
| 242 | + Float jhgl=childTaskPlan.getMileage()==null?0:childTaskPlan.getMileage(); | |
| 243 | + sjzgl=Arith.add(sjzgl,jhgl); | |
| 244 | + } | |
| 245 | + } | |
| 246 | + } | |
| 247 | + } | |
| 248 | + } | |
| 249 | + } | |
| 250 | + String[] split = key.split("/"); | |
| 251 | + m.put("red", red); | |
| 252 | + m.put("fcsj", fcsj); | |
| 253 | + m.put("gsName", gsName); | |
| 254 | + m.put("fgsName", fgsName); | |
| 255 | + m.put("date", date); | |
| 256 | + m.put("gsBm", split[0]); | |
| 257 | + m.put("fgsBm", split[1]); | |
| 258 | + m.put("xlBm", split[2]); | |
| 259 | + m.put("xlName", xlName); | |
| 260 | + m.put("lpName", split[3]); | |
| 261 | + m.put("clZbh", split[4]); | |
| 262 | + m.put("jGh", split[5]); | |
| 263 | + m.put("jName", jName); | |
| 264 | + m.put("sjzgl", sjzgl); | |
| 265 | + list1.add(m); | |
| 266 | + } | |
| 267 | + | |
| 268 | + //第二步根据日期,车辆匹配 | |
| 269 | + for(Map<String, Object> m : list1){//里程 | |
| 270 | + String key = m.get("date").toString() + "/" + m.get("clZbh").toString(); | |
| 271 | + if(!(keyMap1.containsKey(key))){ | |
| 272 | + keyMap1.put(key, new ArrayList<Map<String, Object>>()); | |
| 273 | + } | |
| 274 | + keyMap1.get(key).add(m); | |
| 275 | + set.add(key); | |
| 276 | + } | |
| 277 | + for(Map<String, Object> m : list2){//加电量 | |
| 278 | + String key = m.get("scheduleDate").toString() + "/" + m.get("insideCode").toString(); | |
| 279 | + if(!(keyMap2.containsKey(key))){ | |
| 280 | + keyMap2.put(key, new ArrayList<Map<String, Object>>()); | |
| 281 | + } | |
| 282 | + keyMap2.get(key).add(m); | |
| 283 | + set.add(key); | |
| 284 | + } | |
| 285 | + | |
| 286 | + //第三步 一车多单进行拆分 | |
| 287 | + final List<Map<String, Object>> list5 = new ArrayList<Map<String, Object>>(); | |
| 288 | + | |
| 289 | + for(String key : set){ | |
| 290 | +// Map<String, Object> resMap = new HashMap<String, Object>(); | |
| 291 | + List<Map<String, Object>> list3 = keyMap1.get(key); | |
| 292 | + List<Map<String, Object>> list4 = keyMap2.get(key); | |
| 293 | + | |
| 294 | + double jdl = 0d; | |
| 295 | + if(list4 != null){ | |
| 296 | + for(Map<String, Object> m : list4){ | |
| 297 | + jdl = Arith.add(jdl, m.get("sum").toString()); | |
| 298 | + } | |
| 299 | + } | |
| 300 | + | |
| 301 | + String clZbh = key.split("/")[1]; | |
| 302 | + if(jdl < 0.01d){ | |
| 303 | + if(nyTypeMap.get(clZbh) != null | |
| 304 | + && "1".equals(nyTypeMap.get(clZbh).toString()) //1:全电;2:油电混合 | |
| 305 | + && "2".equals(nyTypeMap.get(clZbh).toString())){ | |
| 306 | + //加电量为0情况下,只取电车 | |
| 307 | + } else { | |
| 308 | + continue; | |
| 309 | + } | |
| 310 | + } | |
| 311 | + | |
| 312 | + if(list3 != null && list3.size() > 0){ | |
| 313 | + | |
| 314 | + if(list3.size() > 1){ //多条时,排序 | |
| 315 | + Collections.sort(list3, new Comparator<Map<String, Object>>() { | |
| 316 | + @Override | |
| 317 | + public int compare(Map<String, Object> c1, Map<String, Object> c2) { | |
| 318 | + String k1 = c1.get("red").toString() + c1.get("fcsj").toString(); | |
| 319 | + String k2 = c2.get("red").toString() + c2.get("fcsj").toString(); | |
| 320 | + | |
| 321 | + if(c1.get("fcsj").toString().length() == 0){ | |
| 322 | + return -1; | |
| 323 | + } | |
| 324 | + if(c2.get("fcsj").toString().length() == 0){ | |
| 325 | + return 1; | |
| 326 | + } | |
| 327 | + | |
| 328 | + long l1 = dtf.parseMillis(k1); | |
| 329 | + long l2 = dtf.parseMillis(k2); | |
| 330 | + | |
| 331 | + long diff = l1 - l2; | |
| 332 | + if (diff > 0l) { | |
| 333 | + return 1; | |
| 334 | + } else if (diff < 0l) { | |
| 335 | + return -1; | |
| 336 | + } | |
| 337 | + return 0; //相等为0 | |
| 338 | + } | |
| 339 | + }); | |
| 340 | + } | |
| 341 | + | |
| 342 | + double zgl = 0; | |
| 343 | + for(Map<String, Object> m : list3){ | |
| 344 | + zgl = Arith.add(zgl, m.get("sjzgl").toString()); | |
| 345 | + } | |
| 346 | + double jdl_ = Arith.add(0, jdl);//为保精度计算最后总数不变,一车多单情况最后一条直接用减剩下的值 | |
| 347 | + for(int i = 0; i < list3.size(); i++){ | |
| 348 | + Map<String, Object> m = list3.get(i); | |
| 349 | + m.put("jcsx", i + 1); //顺序 | |
| 350 | + | |
| 351 | + if(i == (list3.size() - 1)){ //最后一条 | |
| 352 | + m.put("jdl", jdl_); | |
| 353 | + } else { | |
| 354 | + if(m.get("sjzgl") != null && !("0".equals(m.get("sjzgl").toString()))){ | |
| 355 | + double mul = Arith.mul(jdl, Arith.div(m.get("sjzgl").toString(), zgl, 2)); | |
| 356 | + double div = Arith.div(mul, 1, 2); //除1,利用工具类以去除小数点 | |
| 357 | + jdl_ = Arith.sub(jdl_, div); | |
| 358 | + m.put("jdl", div); | |
| 359 | + } else { | |
| 360 | + m.put("jdl", "0"); | |
| 361 | + } | |
| 362 | + } | |
| 363 | + | |
| 364 | + if(m.get("sjzgl") != null && new BigDecimal(m.get("sjzgl").toString()).doubleValue() > 0d | |
| 365 | + && new BigDecimal(m.get("jdl").toString()).doubleValue() > 0d){ | |
| 366 | + double mul = Arith.mul(Arith.div(m.get("jdl").toString(), m.get("sjzgl").toString(), 4), 100); | |
| 367 | + m.put("hdl",mul); | |
| 368 | + } else { | |
| 369 | + m.put("hdl", 0); | |
| 370 | + } | |
| 371 | + list5.add(m); | |
| 372 | + } | |
| 373 | + } else if(list4 != null && list4.size() > 0){ | |
| 374 | + Map<String, Object> map2 = list4.get(0); | |
| 375 | + Map<String, Object> m = new HashMap<String, Object>(); | |
| 376 | + m.put("fcsj", ""); | |
| 377 | + m.put("jcsx", "1"); | |
| 378 | + m.put("gsName", ""); | |
| 379 | + m.put("fgsName", ""); | |
| 380 | + m.put("date", date); | |
| 381 | + m.put("gsBm", "24"); | |
| 382 | + m.put("fgsBm", map.get(map2.get("insideCode").toString())==null?"":map.get(map2.get("insideCode").toString()).toString()); | |
| 383 | + m.put("xlBm", ""); | |
| 384 | + m.put("xlName", ""); | |
| 385 | + m.put("lpName", ""); | |
| 386 | + m.put("clZbh", map2.get("insideCode").toString()); | |
| 387 | + m.put("jGh", ""); | |
| 388 | + m.put("jName", ""); | |
| 389 | + m.put("sjzgl", 0); //总里程 | |
| 390 | + m.put("jdl", jdl); //加电量(耗电量) | |
| 391 | + m.put("hdl", 0); //百公里耗电 | |
| 392 | + list5.add(m); | |
| 393 | + } | |
| 394 | + } | |
| 395 | + | |
| 396 | + //第四部保存入库 | |
| 397 | + SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); | |
| 398 | + String createDate = sdf2.format(new Date()); | |
| 399 | + for(Map<String, Object> m : list5){ | |
| 400 | + m.put("created", "aotu"); //代表定时器自动生成 | |
| 401 | + m.put("createDate", createDate); | |
| 402 | + } | |
| 403 | +// String deleteSql = "delete from bsth_c_hdl where date='" + date + "' and created = 'aotu'"; | |
| 404 | + String deleteSql = "delete from bsth_c_dlb where rq = '" + date + "'"; | |
| 405 | + jdbcTemplate.batchUpdate(deleteSql); //先删除这一天的数据 | |
| 406 | +// String insertSql = "insert into bsth_c_hdl(gs_bm, fgs_bm, gs_name, fgs_name, date, nbbm, j_gh, j_name," | |
| 407 | +// + " xl_bm, xl_name, lp_name, jdl, sjzgl, hdl, created, create_date) " | |
| 408 | +// + " VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"; | |
| 409 | + String insertSql = "insert into bsth_c_dlb(ssgsdm, fgsdm, rq, czcd, jzcd, nbbm, jsy, jname," | |
| 410 | + + " xlbm, linename, lp, cdl, hd, zlc, ns, createtime, jhsj, jcsx, nylx, yhlx, jhbc, jhzbc," | |
| 411 | + + " fyylc, jhfyylc, jhzlc, jzlc, sfkt, sh, sjbc, sjzbc) " | |
| 412 | + + " VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"; | |
| 413 | + jdbcTemplate.batchUpdate(insertSql, new BatchPreparedStatementSetter() { | |
| 414 | + | |
| 415 | + @Override | |
| 416 | + public void setValues(PreparedStatement ps, int i) throws SQLException { | |
| 417 | + Map<String, Object> m = list5.get(i); | |
| 418 | + ps.setString(1, "24"); | |
| 419 | + ps.setString(2, m.get("fgsBm").toString()); | |
| 420 | + ps.setString(3, m.get("date").toString()); | |
| 421 | + ps.setString(4, "100"); | |
| 422 | + ps.setString(5, "100"); | |
| 423 | + ps.setString(6, m.get("clZbh").toString()); | |
| 424 | + ps.setString(7, m.get("jGh").toString()); | |
| 425 | + ps.setString(8, m.get("jName").toString()); | |
| 426 | + ps.setString(9, m.get("xlBm").toString()); | |
| 427 | + ps.setString(10, m.get("xlName").toString()); | |
| 428 | + ps.setString(11, m.get("lpName").toString()); | |
| 429 | + ps.setString(12, m.get("jdl").toString()); | |
| 430 | + ps.setString(13, m.get("jdl").toString()); | |
| 431 | + ps.setString(14, m.get("sjzgl").toString()); | |
| 432 | + ps.setString(15, m.get("hdl").toString()); | |
| 433 | + ps.setString(16, m.get("createDate").toString()); | |
| 434 | + ps.setString(17, m.get("fcsj").toString()); | |
| 435 | + ps.setString(18, m.get("jcsx").toString()); | |
| 436 | + ps.setString(19, "0"); | |
| 437 | + ps.setString(20, "0"); | |
| 438 | + ps.setString(21, "0"); | |
| 439 | + ps.setString(22, "0"); | |
| 440 | + ps.setString(23, "0"); | |
| 441 | + ps.setString(24, "0"); | |
| 442 | + ps.setString(25, "0"); | |
| 443 | + ps.setString(26, "0"); | |
| 444 | + ps.setString(27, "0"); | |
| 445 | + ps.setString(28, "0"); | |
| 446 | + ps.setString(29, "0"); | |
| 447 | + ps.setString(30, "0"); | |
| 448 | + } | |
| 449 | + | |
| 450 | + @Override | |
| 451 | + public int getBatchSize() { | |
| 452 | + return list5.size(); | |
| 453 | + } | |
| 454 | + }); | |
| 455 | + } | |
| 456 | + }catch (Exception e) { | |
| 457 | + // TODO Auto-generated catch block | |
| 458 | + throw e; | |
| 459 | + }finally{ | |
| 460 | + logger.info("setDDRB:"); | |
| 461 | + } | |
| 462 | + } | |
| 463 | + | |
| 464 | + private void savePush(final List<Map<String, Object>> list,final String rq,final Map<String, String> map) { | |
| 465 | + String sql = "insert into bsth_c_jdl(rq, gs_bm, fgs_bm,jdl, " | |
| 466 | + + " nbbm,adding_time,remarks) " + | |
| 467 | + " VALUES(?,?,?,?,?,?,?)"; | |
| 468 | + | |
| 469 | + //编程式事务 | |
| 470 | + DataSourceTransactionManager tran = new DataSourceTransactionManager(jdbcTemplate.getDataSource()); | |
| 471 | + DefaultTransactionDefinition def = new DefaultTransactionDefinition(); | |
| 472 | + def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED); | |
| 473 | + TransactionStatus status = tran.getTransaction(def); | |
| 474 | + try { | |
| 475 | + String sql2="delete from bsth_c_jdl where rq='"+rq+"' and remarks='JKSJ'"; | |
| 476 | + jdbcTemplate.batchUpdate(sql2); | |
| 477 | + jdbcTemplate.batchUpdate(sql, new BatchPreparedStatementSetter() { | |
| 478 | + | |
| 479 | + @Override | |
| 480 | + public void setValues(PreparedStatement ps, int i) throws SQLException { | |
| 481 | + Map<String, Object> t = list.get(i); | |
| 482 | + ps.setString(1, t.get("scheduleDate").toString()); | |
| 483 | + ps.setString(2, "24"); | |
| 484 | + ps.setString(3, map.get(t.get("insideCode").toString())==null?"":map.get(t.get("insideCode").toString()).toString()); | |
| 485 | + ps.setString(4, t.get("sum").toString()); | |
| 486 | + ps.setString(5, t.get("insideCode").toString()); | |
| 487 | + ps.setString(6, t.get("addingTime").toString()); | |
| 488 | + ps.setString(7, "JKSJ"); //代表来源接口数据 | |
| 489 | + | |
| 490 | + } | |
| 491 | + | |
| 492 | + @Override | |
| 493 | + public int getBatchSize() { | |
| 494 | + return list.size(); | |
| 495 | + } | |
| 496 | + }); | |
| 497 | + | |
| 498 | + tran.commit(status); | |
| 499 | + } catch (Exception e) { | |
| 500 | + tran.rollback(status); | |
| 501 | + logger.error("", e); | |
| 502 | + } | |
| 503 | + } | |
| 504 | + | |
| 505 | + public static boolean isInOut(ScheduleRealInfo s){ | |
| 506 | + boolean fage=false; | |
| 507 | + if(s.getBcType().equals("in")){ | |
| 508 | + fage=true; | |
| 509 | + } | |
| 510 | + if(s.getBcType().equals("out")){ | |
| 511 | + fage=true; | |
| 512 | + } | |
| 513 | + if(s.getBcType().equals("ldks")){ | |
| 514 | + fage=true; | |
| 515 | + } | |
| 516 | + | |
| 517 | + return fage; | |
| 518 | + } | |
| 519 | + | |
| 520 | + public static String getHttpInterface(String path){ | |
| 521 | + BufferedReader in = null; | |
| 522 | + StringBuffer result = null; | |
| 523 | + try { | |
| 524 | + URL url = new URL(path); | |
| 525 | + //打开和url之间的连接 | |
| 526 | + HttpURLConnection connection = (HttpURLConnection) url.openConnection(); | |
| 527 | + connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); | |
| 528 | + connection.setRequestProperty("Charset", "utf-8"); | |
| 529 | + connection.connect(); | |
| 530 | + | |
| 531 | + result = new StringBuffer(); | |
| 532 | + //读取URL的响应 | |
| 533 | + in = new BufferedReader(new InputStreamReader( | |
| 534 | + connection.getInputStream(),"utf-8")); | |
| 535 | + String line; | |
| 536 | + while ((line = in.readLine()) != null) { | |
| 537 | + | |
| 538 | + result.append(line); | |
| 539 | + } | |
| 540 | + return result.toString(); | |
| 541 | + } catch (Exception e) { | |
| 542 | + e.printStackTrace(); | |
| 543 | + }finally { | |
| 544 | + try { | |
| 545 | + if (in != null) { | |
| 546 | + in.close(); | |
| 547 | + } | |
| 548 | + } catch (Exception e2) { | |
| 549 | + e2.printStackTrace(); | |
| 550 | + } | |
| 551 | + } | |
| 552 | + return null; | |
| 553 | + } | |
| 554 | + | |
| 555 | +} | ... | ... |
src/main/java/com/bsth/service/impl/BusIntervalServiceImpl.java
| ... | ... | @@ -2682,6 +2682,10 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 2682 | 2682 | double jzl = 0.0; |
| 2683 | 2683 | double zlc = 0.0; |
| 2684 | 2684 | String rylx=""; |
| 2685 | + double ccyl_ = 0.0; | |
| 2686 | + double jcyl_ = 0.0; | |
| 2687 | + double yh_ = 0.0; | |
| 2688 | + double jzl_ = 0.0; | |
| 2685 | 2689 | // List<Ylb> listYlb = ylbRepository.queryListYlb(fcrq, s.getClZbh(), s.getjGh(),xlbm); |
| 2686 | 2690 | // List<Dlb> listDlb = dlbRepository.queryListDlb(fcrq, s.getClZbh(), s.getjGh(),xlbm); |
| 2687 | 2691 | List<Ylb> listYlb = ylbMap.get(jsy + nbbm); |
| ... | ... | @@ -2690,57 +2694,105 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 2690 | 2694 | // List<Cars> listCars = carsRepository.findCarsByCode(s.getClZbh()); |
| 2691 | 2695 | List<Cars> listCars = carMap.get(s.getClZbh()); |
| 2692 | 2696 | if (listCars != null && listCars.size() > 0) { |
| 2693 | - if(listCars.get(0).getSfdc()!=null){ | |
| 2694 | - if (listCars.get(0).getSfdc()) { | |
| 2695 | - type = 1; | |
| 2696 | - if(listDlb != null) | |
| 2697 | - for (int i = 0; i < listDlb.size(); i++) { | |
| 2698 | - Dlb d = listDlb.get(i); | |
| 2699 | - if (d.getLp() == null) { | |
| 2700 | - ccyl = Arith.add(ccyl, d.getCzcd()); | |
| 2701 | - jcyl = Arith.add(jcyl, d.getJzcd()); | |
| 2702 | - yh = Arith.add(yh, d.getHd()); | |
| 2703 | - jzl = Arith.add(jzl, d.getCdl()); | |
| 2704 | - zlc = Arith.add(zlc, d.getZlc()); | |
| 2705 | - } else { | |
| 2706 | - if (d.getLp().equals(s.getLpName())) { | |
| 2707 | - ccyl = Arith.add(ccyl, d.getCzcd()); | |
| 2708 | - jcyl = Arith.add(jcyl, d.getJzcd()); | |
| 2709 | - yh = Arith.add(yh, d.getHd()); | |
| 2710 | - jzl = Arith.add(jzl, d.getCdl()); | |
| 2711 | - zlc = Arith.add(zlc, d.getZlc()); | |
| 2712 | - } | |
| 2713 | - } | |
| 2714 | - | |
| 2715 | - } | |
| 2716 | - } else { | |
| 2717 | - type = 0; | |
| 2718 | - if(listYlb != null) | |
| 2719 | - for (int i = 0; i < listYlb.size(); i++) { | |
| 2720 | - Ylb y = listYlb.get(i); | |
| 2721 | - if (y.getLp() == null) { | |
| 2722 | - ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 2723 | - jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 2724 | - yh = Arith.add(yh, y.getYh()); | |
| 2725 | - jzl = Arith.add(jzl, y.getJzl()); | |
| 2726 | - zlc = Arith.add(zlc, y.getZlc()); | |
| 2727 | - if(dMap.get(y.getRylx())!=null) | |
| 2728 | - rylx=dMap.get(y.getRylx()).toString(); | |
| 2729 | - } else { | |
| 2730 | - if (y.getLp().equals(s.getLpName())) { | |
| 2731 | - ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 2732 | - jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 2733 | - yh = Arith.add(yh, y.getYh()); | |
| 2734 | - jzl = Arith.add(jzl, y.getJzl()); | |
| 2735 | - zlc = Arith.add(zlc, y.getZlc()); | |
| 2736 | - if(dMap.get(y.getRylx())!=null) | |
| 2737 | - rylx=dMap.get(y.getRylx()).toString(); | |
| 2738 | - | |
| 2739 | - } | |
| 2740 | - } | |
| 2741 | - } | |
| 2742 | - } | |
| 2743 | - } | |
| 2697 | + if (listCars.get(0).getNyType() != null) { | |
| 2698 | + if ("1".equals(listCars.get(0).getNyType().toString())) { //全电 | |
| 2699 | +// List<Dlb> listDlb = dlbRepository.queryListDlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); | |
| 2700 | + type = 1; | |
| 2701 | + if(listDlb != null){ | |
| 2702 | + for (int i = 0; i < listDlb.size(); i++) { | |
| 2703 | + Dlb d = listDlb.get(i); | |
| 2704 | + if (d.getLp() == null) { | |
| 2705 | + ccyl = Arith.add(ccyl, d.getCzcd()); | |
| 2706 | + jcyl = Arith.add(jcyl, d.getJzcd()); | |
| 2707 | + yh = Arith.add(yh, d.getHd()); | |
| 2708 | + jzl = Arith.add(jzl, d.getCdl()); | |
| 2709 | + zlc = Arith.add(zlc, d.getZlc()); | |
| 2710 | + } else { | |
| 2711 | + if (d.getLp().equals(s.getLpName())) { | |
| 2712 | + ccyl = Arith.add(ccyl, d.getCzcd()); | |
| 2713 | + jcyl = Arith.add(jcyl, d.getJzcd()); | |
| 2714 | + yh = Arith.add(yh, d.getHd()); | |
| 2715 | + jzl = Arith.add(jzl, d.getCdl()); | |
| 2716 | + zlc = Arith.add(zlc, d.getZlc()); | |
| 2717 | + } | |
| 2718 | + } | |
| 2719 | + } | |
| 2720 | + } | |
| 2721 | + } else if("2".equals(listCars.get(0).getNyType().toString())){ //油点混合 | |
| 2722 | +// List<Ylb> listYlb = ylbRepository.queryListYlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); | |
| 2723 | +// List<Dlb> listDlb = dlbRepository.queryListDlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); | |
| 2724 | + type = 2; | |
| 2725 | + if(listYlb != null){ | |
| 2726 | + for (int i = 0; i < listYlb.size(); i++) { | |
| 2727 | + Ylb y = listYlb.get(i); | |
| 2728 | + if (y.getLp() == null) { | |
| 2729 | + ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 2730 | + jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 2731 | + yh = Arith.add(yh, y.getYh()); | |
| 2732 | + jzl = Arith.add(jzl, y.getJzl()); | |
| 2733 | + zlc = Arith.add(zlc, y.getZlc()); | |
| 2734 | + if(dMap.get(y.getRylx())!=null) | |
| 2735 | + rylx =dMap.get(y.getRylx()).toString(); | |
| 2736 | + } else { | |
| 2737 | + if (y.getLp().equals(s.getLpName())) { | |
| 2738 | + ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 2739 | + jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 2740 | + yh = Arith.add(yh, y.getYh()); | |
| 2741 | + jzl = Arith.add(jzl, y.getJzl()); | |
| 2742 | + zlc = Arith.add(zlc, y.getZlc()); | |
| 2743 | + if(dMap.get(y.getRylx())!=null) | |
| 2744 | + rylx =dMap.get(y.getRylx()).toString(); | |
| 2745 | + } | |
| 2746 | + } | |
| 2747 | + } | |
| 2748 | + } | |
| 2749 | + if(listDlb != null){ | |
| 2750 | + for (int i = 0; i < listDlb.size(); i++) { | |
| 2751 | + Dlb d = listDlb.get(i); | |
| 2752 | + if (d.getLp() == null) { | |
| 2753 | + ccyl_ = Arith.add(ccyl_, d.getCzcd()); | |
| 2754 | + jcyl_ = Arith.add(jcyl_, d.getJzcd()); | |
| 2755 | + yh_ = Arith.add(yh_, d.getHd()); | |
| 2756 | + jzl_ = Arith.add(jzl, d.getCdl()); | |
| 2757 | + } else { | |
| 2758 | + if (d.getLp().equals(s.getLpName())) { | |
| 2759 | + ccyl_ = Arith.add(ccyl_, d.getCzcd()); | |
| 2760 | + jcyl_ = Arith.add(jcyl_, d.getJzcd()); | |
| 2761 | + yh_ = Arith.add(yh_, d.getHd()); | |
| 2762 | + jzl_ = Arith.add(jzl_, d.getCdl()); | |
| 2763 | + } | |
| 2764 | + } | |
| 2765 | + } | |
| 2766 | + } | |
| 2767 | + } else { | |
| 2768 | +// List<Ylb> listYlb = ylbRepository.queryListYlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); | |
| 2769 | + type = 0; | |
| 2770 | + if(listYlb != null){ | |
| 2771 | + for (int i = 0; i < listYlb.size(); i++) { | |
| 2772 | + Ylb y = listYlb.get(i); | |
| 2773 | + if (y.getLp() == null) { | |
| 2774 | + ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 2775 | + jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 2776 | + yh = Arith.add(yh, y.getYh()); | |
| 2777 | + jzl = Arith.add(jzl, y.getJzl()); | |
| 2778 | + zlc = Arith.add(zlc, y.getZlc()); | |
| 2779 | + if(dMap.get(y.getRylx())!=null) | |
| 2780 | + rylx =dMap.get(y.getRylx()).toString(); | |
| 2781 | + } else { | |
| 2782 | + if (y.getLp().equals(s.getLpName())) { | |
| 2783 | + ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 2784 | + jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 2785 | + yh = Arith.add(yh, y.getYh()); | |
| 2786 | + jzl = Arith.add(jzl, y.getJzl()); | |
| 2787 | + zlc = Arith.add(zlc, y.getZlc()); | |
| 2788 | + if(dMap.get(y.getRylx())!=null) | |
| 2789 | + rylx =dMap.get(y.getRylx()).toString(); | |
| 2790 | + } | |
| 2791 | + } | |
| 2792 | + } | |
| 2793 | + } | |
| 2794 | + } | |
| 2795 | + } | |
| 2744 | 2796 | } |
| 2745 | 2797 | double jylc=ylbMapJylc.get(line+"-"+jGh+"-"+nbbm+"-"+lpName)==null?0.0:ylbMapJylc.get(line+"-"+jGh+"-"+nbbm+"-"+lpName); |
| 2746 | 2798 | Map.put("jylc", jylc); |
| ... | ... | @@ -2749,6 +2801,10 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 2749 | 2801 | Map.put("yh", yh); |
| 2750 | 2802 | Map.put("ccyl", ccyl); |
| 2751 | 2803 | Map.put("jcyl", jcyl); |
| 2804 | + Map.put("jzl_", jzl_); | |
| 2805 | + Map.put("yh_", yh_); | |
| 2806 | + Map.put("ccyl_", ccyl_); | |
| 2807 | + Map.put("jcyl_", jcyl_); | |
| 2752 | 2808 | Map.put("type", type); |
| 2753 | 2809 | Map.put("zlc", zlc); |
| 2754 | 2810 | Map.put("xlName", s.getXlName()); |
| ... | ... | @@ -2964,8 +3020,10 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 2964 | 3020 | String xls=""; |
| 2965 | 3021 | if(Map.get("type").toString().equals("0")){ |
| 2966 | 3022 | xls="waybill_minhang.xls"; |
| 2967 | - }else{ | |
| 3023 | + } else if(Map.get("type").toString().equals("1")){ | |
| 2968 | 3024 | xls="waybill_minhang_dl.xls"; |
| 3025 | + } else { | |
| 3026 | + xls="waybill_minhang_yd.xls"; | |
| 2969 | 3027 | } |
| 2970 | 3028 | Map.put("sheetName", jName + "-" + clZbh + "-" + lpName); |
| 2971 | 3029 | ee.excelReplace(list1, new Object[]{Map}, path1 + "mould/"+xls, | ... | ... |
src/main/java/com/bsth/service/jdtest/impl/JdtestServiceImpl.java
| ... | ... | @@ -14,13 +14,13 @@ import org.springframework.jdbc.core.JdbcTemplate; |
| 14 | 14 | import org.springframework.jdbc.core.RowMapper; |
| 15 | 15 | import org.springframework.stereotype.Service; |
| 16 | 16 | |
| 17 | -import com.bsth.entity.mcy_forms.Daily; | |
| 18 | 17 | import com.bsth.entity.oil.Dlb; |
| 19 | 18 | import com.bsth.entity.oil.Ylb; |
| 20 | 19 | import com.bsth.entity.oil.Ylxxb; |
| 21 | 20 | import com.bsth.entity.realcontrol.ChildTaskPlan; |
| 22 | 21 | import com.bsth.entity.realcontrol.ScheduleRealInfo; |
| 23 | 22 | import com.bsth.entity.sys.Dictionary; |
| 23 | +import com.bsth.repository.oil.DlbRepository; | |
| 24 | 24 | import com.bsth.repository.oil.YlbRepository; |
| 25 | 25 | import com.bsth.repository.realcontrol.ScheduleRealInfoRepository; |
| 26 | 26 | import com.bsth.service.jdtest.JdtestService; |
| ... | ... | @@ -40,6 +40,8 @@ public class JdtestServiceImpl implements JdtestService { |
| 40 | 40 | @Autowired |
| 41 | 41 | YlbRepository ylbRepository; |
| 42 | 42 | @Autowired |
| 43 | + DlbRepository dlbRepository; | |
| 44 | + @Autowired | |
| 43 | 45 | DictionaryService dictionaryService; |
| 44 | 46 | @Override |
| 45 | 47 | public List<Ylxxb> cwjyList(Map<String, Object> map) { |
| ... | ... | @@ -159,13 +161,26 @@ public class JdtestServiceImpl implements JdtestService { |
| 159 | 161 | }else{ |
| 160 | 162 | listYlb=ylbRepository.obtainYlEq(map.get("date").toString(), "", "", xlbm, "", "xlbm"); |
| 161 | 163 | } |
| 162 | - Map<String, Ylb> mapYlb=new HashMap<>(); | |
| 164 | + Map<String, Ylb> mapYlb=new HashMap<String, Ylb>(); | |
| 163 | 165 | for (int j = 0; j < listYlb.size(); j++) { |
| 164 | 166 | Ylb y=listYlb.get(j); |
| 165 | 167 | if(mapYlb.get(y.getXlbm()+y.getJsy()+y.getNbbm()+y.getLp())==null){ |
| 166 | 168 | mapYlb.put(y.getXlbm()+y.getJsy()+y.getNbbm()+y.getLp(), y); |
| 167 | 169 | } |
| 168 | 170 | } |
| 171 | + List<Dlb> listDlb=new ArrayList<Dlb>(); | |
| 172 | + if(xlbm.equals("")){ | |
| 173 | + listDlb=dlbRepository.obtainDl(map.get("date").toString(), gsbm, fgsbm, xlbm, "", "xlbm"); | |
| 174 | + }else{ | |
| 175 | + listDlb=dlbRepository.obtainDlEq(map.get("date").toString(), "", "", xlbm, "", "xlbm"); | |
| 176 | + } | |
| 177 | + Map<String, Dlb> mapDlb=new HashMap<String, Dlb>(); | |
| 178 | + for (int i = 0; i < listDlb.size(); i++) { | |
| 179 | + Dlb d = listDlb.get(i); | |
| 180 | + if(mapDlb.get(d.getXlbm()+d.getJsy()+d.getNbbm()+d.getLp()) == null){ | |
| 181 | + mapDlb.put(d.getXlbm()+d.getJsy()+d.getNbbm()+d.getLp(), d); | |
| 182 | + } | |
| 183 | + } | |
| 169 | 184 | |
| 170 | 185 | List<ScheduleRealInfo> sList; |
| 171 | 186 | List<ScheduleRealInfo> jList; |
| ... | ... | @@ -180,6 +195,7 @@ public class JdtestServiceImpl implements JdtestService { |
| 180 | 195 | double czyl_z=0.0; |
| 181 | 196 | double jzl_z=0.0; |
| 182 | 197 | double yh_z=0.0; |
| 198 | + double dh_z=0.0; | |
| 183 | 199 | int jhbc_z=0; |
| 184 | 200 | double jhlc_z=0.0; |
| 185 | 201 | int sjbc_z=0; |
| ... | ... | @@ -193,6 +209,7 @@ public class JdtestServiceImpl implements JdtestService { |
| 193 | 209 | double czyl_line=0.0; |
| 194 | 210 | double jzl_line=0.0; |
| 195 | 211 | double yh_line=0.0; |
| 212 | + double dh_line=0.0; | |
| 196 | 213 | int jhbc_line=0; |
| 197 | 214 | double jhlc_line=0.0; |
| 198 | 215 | int sjbc_line=0; |
| ... | ... | @@ -209,6 +226,7 @@ public class JdtestServiceImpl implements JdtestService { |
| 209 | 226 | double czyl=0.0; |
| 210 | 227 | double jzl=0.0; |
| 211 | 228 | double yh=0.0; |
| 229 | + double dh=0.0; //电耗 | |
| 212 | 230 | String rylx=""; |
| 213 | 231 | if(mapYlb.get(m.get("xlBm").toString()+m.get("jGh").toString()+m.get("clZbh").toString()+m.get("lp").toString())!=null){ |
| 214 | 232 | Ylb t=mapYlb.get(m.get("xlBm").toString()+m.get("jGh").toString()+m.get("clZbh").toString()+m.get("lp").toString()); |
| ... | ... | @@ -225,6 +243,10 @@ public class JdtestServiceImpl implements JdtestService { |
| 225 | 243 | } |
| 226 | 244 | } |
| 227 | 245 | } |
| 246 | + if(mapDlb.get(m.get("xlBm").toString()+m.get("jGh").toString()+m.get("clZbh").toString()+m.get("lp").toString())!=null){ | |
| 247 | + Dlb d=mapDlb.get(m.get("xlBm").toString()+m.get("jGh").toString()+m.get("clZbh").toString()+m.get("lp").toString()); | |
| 248 | + dh = d.getHd(); | |
| 249 | + } | |
| 228 | 250 | m.put("jylc",jylc); |
| 229 | 251 | jylc_z=Arith.add(jylc, jylc_z); |
| 230 | 252 | m.put("jzyl",jzyl); |
| ... | ... | @@ -236,7 +258,8 @@ public class JdtestServiceImpl implements JdtestService { |
| 236 | 258 | m.put("yh", yh); |
| 237 | 259 | yh_z=Arith.add(yh, yh_z); |
| 238 | 260 | m.put("rylx", rylx); |
| 239 | - m.put("dh", ""); | |
| 261 | + m.put("dh", dh); | |
| 262 | + dh_z=Arith.add(dh, dh_z); | |
| 240 | 263 | for (int j = 0; j < lists.size(); j++) { |
| 241 | 264 | ScheduleRealInfo s=lists.get(j); |
| 242 | 265 | if(m.get("xlBm").toString().equals(s.getXlBm()) && |
| ... | ... | @@ -263,6 +286,7 @@ public class JdtestServiceImpl implements JdtestService { |
| 263 | 286 | double jhlc=culateMileageService.culateJhgl(jList); |
| 264 | 287 | jhlc_z=Arith.add(jhlc, jhlc_z); |
| 265 | 288 | int sjbc=culateMileageService.culateSjbc(sList, "")+culateMileageService.culateLjbc(sList, ""); |
| 289 | + sjbc_z=sjbc+sjbc_z; | |
| 266 | 290 | double ljgl=culateMileageService.culateLjgl(sList); |
| 267 | 291 | double sjgl=culateMileageService.culateSjgl(sList); |
| 268 | 292 | double sjzlc=Arith.add(ljgl, sjgl); |
| ... | ... | @@ -284,127 +308,154 @@ public class JdtestServiceImpl implements JdtestService { |
| 284 | 308 | m.put("zlc2", zlc2); |
| 285 | 309 | listAll.add(m); |
| 286 | 310 | //线路小计 |
| 287 | - if (i < list.size() - 1) { | |
| 288 | - if ((list.get(i+1).get("xlBm").toString()).equals(list.get(i).get("xlBm").toString())) { | |
| 289 | - jylc_line=Arith.add(jylc_line, jylc); | |
| 290 | - jzyl_line=Arith.add(jzyl_line, jzyl); | |
| 291 | - czyl_line=Arith.add(czyl_line, czyl); | |
| 292 | - jzl_line=Arith.add(jzl_line, jzl); | |
| 293 | - yh_line=Arith.add(yh_line, yh); | |
| 294 | - jhbc_line=jhbc_line+jhbc; | |
| 295 | - jhlc_line=Arith.add(jhlc_line,jhlc); | |
| 296 | - sjbc_line=sjbc_line+sjbc; | |
| 297 | - sjzlc_line=Arith.add(sjzlc_line, sjzlc); | |
| 298 | - kszlc_line=Arith.add(kszlc_line,kszlc); | |
| 299 | - zlc_line=Arith.add(zlc_line, zlc); | |
| 300 | - zlc_line2=Arith.add(zlc_line2, zlc2); | |
| 301 | - } else { | |
| 302 | - jylc_line=Arith.add(jylc_line, jylc); | |
| 303 | - jzyl_line=Arith.add(jzyl_line, jzyl); | |
| 304 | - czyl_line=Arith.add(czyl_line, czyl); | |
| 305 | - jzl_line=Arith.add(jzl_line, jzl); | |
| 306 | - yh_line=Arith.add(yh_line, yh); | |
| 307 | - jhbc_line=jhbc_line+jhbc; | |
| 308 | - jhlc_line=Arith.add(jhlc_line,jhlc); | |
| 309 | - sjbc_line=sjbc_line+sjbc; | |
| 310 | - sjzlc_line=Arith.add(sjzlc_line, sjzlc); | |
| 311 | - kszlc_line=Arith.add(kszlc_line,kszlc); | |
| 312 | - zlc_line=Arith.add(zlc_line, zlc); | |
| 313 | - zlc_line2=Arith.add(zlc_line2, zlc2); | |
| 314 | - | |
| 315 | - Map<String, Object> mmm=new HashMap<>(); | |
| 316 | - mmm.put("xlName", "小计"); | |
| 317 | - mmm.put("lp", ""); | |
| 318 | - mmm.put("jGh", ""); | |
| 319 | - mmm.put("clZbh", ""); | |
| 320 | - mmm.put("jName", ""); | |
| 321 | - mmm.put("jhbc", jhbc_line); | |
| 322 | - mmm.put("jhlc", jhlc_line); | |
| 323 | - mmm.put("sjbc", sjbc_line); | |
| 324 | - mmm.put("sjzlc", sjzlc_line); | |
| 325 | - mmm.put("kszlc",kszlc_line); | |
| 326 | - mmm.put("jylc", jylc_line); | |
| 327 | - mmm.put("zlc", zlc_line); | |
| 328 | - mmm.put("zlc2", zlc_line2); | |
| 329 | - mmm.put("jzyl",jzyl_line); | |
| 330 | - mmm.put("czyl",czyl_line); | |
| 331 | - mmm.put("jzl", jzl_line); | |
| 332 | - mmm.put("yh", yh_line); | |
| 333 | - mmm.put("rylx", ""); | |
| 334 | - mmm.put("dh",""); | |
| 335 | - listAll.add(mmm); | |
| 336 | - jylc_line=0.0; | |
| 337 | - jzyl_line=0.0; | |
| 338 | - czyl_line=0.0; | |
| 339 | - jzl_line=0.0; | |
| 340 | - yh_line=0.0; | |
| 341 | - jhbc_line=0; | |
| 342 | - jhlc_line=0.0; | |
| 343 | - sjbc_line=0; | |
| 344 | - sjzlc_line=0.0; | |
| 345 | - kszlc_line=0.0; | |
| 346 | - zlc_line=0.0; | |
| 347 | - zlc_line2=0.0; | |
| 348 | - } | |
| 349 | - } else { | |
| 350 | - if ((list.get(i).get("xlBm").toString()).equals(list.get(i - 1).get("xlBm").toString())) { | |
| 351 | - jylc_line=Arith.add(jylc_line, jylc); | |
| 352 | - jzyl_line=Arith.add(jzyl_line, jzyl); | |
| 353 | - czyl_line=Arith.add(czyl_line, czyl); | |
| 354 | - jzl_line=Arith.add(jzl_line, jzl); | |
| 355 | - yh_line=Arith.add(yh_line, yh); | |
| 356 | - jhbc_line=jhbc_line+jhbc; | |
| 357 | - jhlc_line=Arith.add(jhlc_line,jhlc); | |
| 358 | - sjbc_line=sjbc_line+sjbc; | |
| 359 | - sjzlc_line=Arith.add(sjzlc_line, sjzlc); | |
| 360 | - kszlc_line=Arith.add(kszlc_line,kszlc); | |
| 361 | - zlc_line=Arith.add(zlc_line, zlc); | |
| 362 | - zlc_line2=Arith.add(zlc_line2, zlc2); | |
| 363 | - Map<String, Object> mmm=new HashMap<>(); | |
| 364 | - mmm.put("xlName", "小计"); | |
| 365 | - mmm.put("lp", ""); | |
| 366 | - mmm.put("jGh", ""); | |
| 367 | - mmm.put("clZbh", ""); | |
| 368 | - mmm.put("jName", ""); | |
| 369 | - mmm.put("jhbc", jhbc_line); | |
| 370 | - mmm.put("jhlc", jhlc_line); | |
| 371 | - mmm.put("sjbc", sjbc_line); | |
| 372 | - mmm.put("sjzlc", sjzlc_line); | |
| 373 | - mmm.put("kszlc",kszlc_line); | |
| 374 | - mmm.put("jylc", jylc_line); | |
| 375 | - mmm.put("zlc", zlc_line); | |
| 376 | - mmm.put("zlc2", zlc_line2); | |
| 377 | - mmm.put("jzyl",jzyl_line); | |
| 378 | - mmm.put("czyl",czyl_line); | |
| 379 | - mmm.put("jzl", jzl_line); | |
| 380 | - mmm.put("yh", yh_line); | |
| 381 | - mmm.put("rylx", ""); | |
| 382 | - mmm.put("dh",""); | |
| 383 | - listAll.add(mmm); | |
| 384 | - } else { | |
| 385 | - | |
| 386 | - Map<String, Object> mmm=new HashMap<>(); | |
| 387 | - mmm.put("xlName", "小计"); | |
| 388 | - mmm.put("lp", ""); | |
| 389 | - mmm.put("jGh", ""); | |
| 390 | - mmm.put("clZbh", ""); | |
| 391 | - mmm.put("jName", ""); | |
| 392 | - mmm.put("jhbc", jhbc); | |
| 393 | - mmm.put("jhlc", jhlc); | |
| 394 | - mmm.put("sjbc", sjbc); | |
| 395 | - mmm.put("sjzlc", sjzlc); | |
| 396 | - mmm.put("kszlc",kszlc); | |
| 397 | - mmm.put("jylc", jylc_line); | |
| 398 | - mmm.put("zlc", zlc); | |
| 399 | - mmm.put("zlc2", zlc2); | |
| 400 | - mmm.put("jzyl",jzyl); | |
| 401 | - mmm.put("czyl",czyl); | |
| 402 | - mmm.put("jzl", jzl); | |
| 403 | - mmm.put("yh", yh); | |
| 404 | - mmm.put("rylx", ""); | |
| 405 | - mmm.put("dh",""); | |
| 406 | - listAll.add(mmm); | |
| 407 | - } | |
| 311 | + if(list.size()==1){ | |
| 312 | + Map<String, Object> mmm=new HashMap<>(); | |
| 313 | + mmm.put("xlName", "小计"); | |
| 314 | + mmm.put("lp", ""); | |
| 315 | + mmm.put("jGh", ""); | |
| 316 | + mmm.put("clZbh", ""); | |
| 317 | + mmm.put("jName", ""); | |
| 318 | + mmm.put("jhbc", jhbc); | |
| 319 | + mmm.put("jhlc", jhlc); | |
| 320 | + mmm.put("sjbc", sjbc); | |
| 321 | + mmm.put("sjzlc", sjzlc); | |
| 322 | + mmm.put("kszlc",kszlc); | |
| 323 | + mmm.put("jylc", jylc_line); | |
| 324 | + mmm.put("zlc", zlc); | |
| 325 | + mmm.put("zlc2", zlc2); | |
| 326 | + mmm.put("jzyl",jzyl); | |
| 327 | + mmm.put("czyl",czyl); | |
| 328 | + mmm.put("jzl", jzl); | |
| 329 | + mmm.put("yh", yh); | |
| 330 | + mmm.put("rylx", ""); | |
| 331 | + mmm.put("dh", dh); | |
| 332 | + listAll.add(mmm); | |
| 333 | + }else{ | |
| 334 | + if (i < list.size() - 1) { | |
| 335 | + if ((list.get(i+1).get("xlBm").toString()).equals(list.get(i).get("xlBm").toString())) { | |
| 336 | + jylc_line=Arith.add(jylc_line, jylc); | |
| 337 | + jzyl_line=Arith.add(jzyl_line, jzyl); | |
| 338 | + czyl_line=Arith.add(czyl_line, czyl); | |
| 339 | + jzl_line=Arith.add(jzl_line, jzl); | |
| 340 | + yh_line=Arith.add(yh_line, yh); | |
| 341 | + dh_line=Arith.add(dh_line, dh); | |
| 342 | + jhbc_line=jhbc_line+jhbc; | |
| 343 | + jhlc_line=Arith.add(jhlc_line,jhlc); | |
| 344 | + sjbc_line=sjbc_line+sjbc; | |
| 345 | + sjzlc_line=Arith.add(sjzlc_line, sjzlc); | |
| 346 | + kszlc_line=Arith.add(kszlc_line,kszlc); | |
| 347 | + zlc_line=Arith.add(zlc_line, zlc); | |
| 348 | + zlc_line2=Arith.add(zlc_line2, zlc2); | |
| 349 | + } else { | |
| 350 | + jylc_line=Arith.add(jylc_line, jylc); | |
| 351 | + jzyl_line=Arith.add(jzyl_line, jzyl); | |
| 352 | + czyl_line=Arith.add(czyl_line, czyl); | |
| 353 | + jzl_line=Arith.add(jzl_line, jzl); | |
| 354 | + yh_line=Arith.add(yh_line, yh); | |
| 355 | + dh_line=Arith.add(dh_line, dh); | |
| 356 | + jhbc_line=jhbc_line+jhbc; | |
| 357 | + jhlc_line=Arith.add(jhlc_line,jhlc); | |
| 358 | + sjbc_line=sjbc_line+sjbc; | |
| 359 | + sjzlc_line=Arith.add(sjzlc_line, sjzlc); | |
| 360 | + kszlc_line=Arith.add(kszlc_line,kszlc); | |
| 361 | + zlc_line=Arith.add(zlc_line, zlc); | |
| 362 | + zlc_line2=Arith.add(zlc_line2, zlc2); | |
| 363 | + | |
| 364 | + Map<String, Object> mmm=new HashMap<>(); | |
| 365 | + mmm.put("xlName", "小计"); | |
| 366 | + mmm.put("lp", ""); | |
| 367 | + mmm.put("jGh", ""); | |
| 368 | + mmm.put("clZbh", ""); | |
| 369 | + mmm.put("jName", ""); | |
| 370 | + mmm.put("jhbc", jhbc_line); | |
| 371 | + mmm.put("jhlc", jhlc_line); | |
| 372 | + mmm.put("sjbc", sjbc_line); | |
| 373 | + mmm.put("sjzlc", sjzlc_line); | |
| 374 | + mmm.put("kszlc",kszlc_line); | |
| 375 | + mmm.put("jylc", jylc_line); | |
| 376 | + mmm.put("zlc", zlc_line); | |
| 377 | + mmm.put("zlc2", zlc_line2); | |
| 378 | + mmm.put("jzyl",jzyl_line); | |
| 379 | + mmm.put("czyl",czyl_line); | |
| 380 | + mmm.put("jzl", jzl_line); | |
| 381 | + mmm.put("yh", yh_line); | |
| 382 | + mmm.put("rylx", ""); | |
| 383 | + mmm.put("dh", dh_line); | |
| 384 | + listAll.add(mmm); | |
| 385 | + jylc_line=0.0; | |
| 386 | + jzyl_line=0.0; | |
| 387 | + czyl_line=0.0; | |
| 388 | + jzl_line=0.0; | |
| 389 | + yh_line=0.0; | |
| 390 | + dh_line=0.0; | |
| 391 | + jhbc_line=0; | |
| 392 | + jhlc_line=0.0; | |
| 393 | + sjbc_line=0; | |
| 394 | + sjzlc_line=0.0; | |
| 395 | + kszlc_line=0.0; | |
| 396 | + zlc_line=0.0; | |
| 397 | + zlc_line2=0.0; | |
| 398 | + } | |
| 399 | + } else { | |
| 400 | + if ((list.get(i).get("xlBm").toString()).equals(list.get(i - 1).get("xlBm").toString())) { | |
| 401 | + jylc_line=Arith.add(jylc_line, jylc); | |
| 402 | + jzyl_line=Arith.add(jzyl_line, jzyl); | |
| 403 | + czyl_line=Arith.add(czyl_line, czyl); | |
| 404 | + jzl_line=Arith.add(jzl_line, jzl); | |
| 405 | + yh_line=Arith.add(yh_line, yh); | |
| 406 | + dh_line=Arith.add(dh_line, dh); | |
| 407 | + jhbc_line=jhbc_line+jhbc; | |
| 408 | + jhlc_line=Arith.add(jhlc_line,jhlc); | |
| 409 | + sjbc_line=sjbc_line+sjbc; | |
| 410 | + sjzlc_line=Arith.add(sjzlc_line, sjzlc); | |
| 411 | + kszlc_line=Arith.add(kszlc_line,kszlc); | |
| 412 | + zlc_line=Arith.add(zlc_line, zlc); | |
| 413 | + zlc_line2=Arith.add(zlc_line2, zlc2); | |
| 414 | + Map<String, Object> mmm=new HashMap<>(); | |
| 415 | + mmm.put("xlName", "小计"); | |
| 416 | + mmm.put("lp", ""); | |
| 417 | + mmm.put("jGh", ""); | |
| 418 | + mmm.put("clZbh", ""); | |
| 419 | + mmm.put("jName", ""); | |
| 420 | + mmm.put("jhbc", jhbc_line); | |
| 421 | + mmm.put("jhlc", jhlc_line); | |
| 422 | + mmm.put("sjbc", sjbc_line); | |
| 423 | + mmm.put("sjzlc", sjzlc_line); | |
| 424 | + mmm.put("kszlc",kszlc_line); | |
| 425 | + mmm.put("jylc", jylc_line); | |
| 426 | + mmm.put("zlc", zlc_line); | |
| 427 | + mmm.put("zlc2", zlc_line2); | |
| 428 | + mmm.put("jzyl",jzyl_line); | |
| 429 | + mmm.put("czyl",czyl_line); | |
| 430 | + mmm.put("jzl", jzl_line); | |
| 431 | + mmm.put("yh", yh_line); | |
| 432 | + mmm.put("rylx", ""); | |
| 433 | + mmm.put("dh", dh_line); | |
| 434 | + listAll.add(mmm); | |
| 435 | + } else { | |
| 436 | + Map<String, Object> mmm=new HashMap<>(); | |
| 437 | + mmm.put("xlName", "小计"); | |
| 438 | + mmm.put("lp", ""); | |
| 439 | + mmm.put("jGh", ""); | |
| 440 | + mmm.put("clZbh", ""); | |
| 441 | + mmm.put("jName", ""); | |
| 442 | + mmm.put("jhbc", jhbc); | |
| 443 | + mmm.put("jhlc", jhlc); | |
| 444 | + mmm.put("sjbc", sjbc); | |
| 445 | + mmm.put("sjzlc", sjzlc); | |
| 446 | + mmm.put("kszlc",kszlc); | |
| 447 | + mmm.put("jylc", jylc_line); | |
| 448 | + mmm.put("zlc", zlc); | |
| 449 | + mmm.put("zlc2", zlc2); | |
| 450 | + mmm.put("jzyl",jzyl); | |
| 451 | + mmm.put("czyl",czyl); | |
| 452 | + mmm.put("jzl", jzl); | |
| 453 | + mmm.put("yh", yh); | |
| 454 | + mmm.put("rylx", ""); | |
| 455 | + mmm.put("dh", dh); | |
| 456 | + listAll.add(mmm); | |
| 457 | + } | |
| 458 | + } | |
| 408 | 459 | } |
| 409 | 460 | } |
| 410 | 461 | Map<String, Object> mmp=new HashMap<>(); |
| ... | ... | @@ -426,7 +477,7 @@ public class JdtestServiceImpl implements JdtestService { |
| 426 | 477 | mmp.put("jzl", jzl_z); |
| 427 | 478 | mmp.put("yh", yh_z); |
| 428 | 479 | mmp.put("rylx", ""); |
| 429 | - mmp.put("dh",""); | |
| 480 | + mmp.put("dh", dh_z); | |
| 430 | 481 | listAll.add(mmp); |
| 431 | 482 | return listAll; |
| 432 | 483 | } | ... | ... |
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
| ... | ... | @@ -1162,8 +1162,10 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 1162 | 1162 | String xls = ""; |
| 1163 | 1163 | if (map.get("type").toString().equals("0")) { |
| 1164 | 1164 | xls = "waybill_minhang.xls"; |
| 1165 | + } else if (map.get("type").toString().equals("1")){ | |
| 1166 | + xls = "waybill_minhang_dl.xls"; | |
| 1165 | 1167 | } else { |
| 1166 | - xls = "waybill_minhang_dl.xls"; | |
| 1168 | + xls = "waybill_minhang_yd.xls"; | |
| 1167 | 1169 | } |
| 1168 | 1170 | |
| 1169 | 1171 | |
| ... | ... | @@ -4610,10 +4612,14 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 4610 | 4612 | Double jzl = 0.0; |
| 4611 | 4613 | Double zlc = 0.0; |
| 4612 | 4614 | String rylx=""; |
| 4615 | + Double ccyl_ = 0.0; | |
| 4616 | + Double jcyl_ = 0.0; | |
| 4617 | + Double yh_ = 0.0; | |
| 4618 | + Double jzl_ = 0.0; | |
| 4613 | 4619 | List<Cars> listCars = carsRepository.findCarsByCode(s.getClZbh()); |
| 4614 | 4620 | if (listCars.size() > 0) { |
| 4615 | - if (listCars.get(0).getSfdc() != null) { | |
| 4616 | - if (listCars.get(0).getSfdc()) { | |
| 4621 | + if (listCars.get(0).getNyType() != null) { | |
| 4622 | + if ("1".equals(listCars.get(0).getNyType().toString())) { //全电 | |
| 4617 | 4623 | List<Dlb> listDlb = dlbRepository.queryListDlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); |
| 4618 | 4624 | type = 1; |
| 4619 | 4625 | for (int i = 0; i < listDlb.size(); i++) { |
| ... | ... | @@ -4633,7 +4639,48 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 4633 | 4639 | zlc = Arith.add(zlc, d.getZlc()); |
| 4634 | 4640 | } |
| 4635 | 4641 | } |
| 4636 | - | |
| 4642 | + } | |
| 4643 | + } else if("2".equals(listCars.get(0).getNyType().toString())){ //油点混合 | |
| 4644 | + List<Ylb> listYlb = ylbRepository.queryListYlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); | |
| 4645 | + List<Dlb> listDlb = dlbRepository.queryListDlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); | |
| 4646 | + type = 2; | |
| 4647 | + for (int i = 0; i < listYlb.size(); i++) { | |
| 4648 | + Ylb y = listYlb.get(i); | |
| 4649 | + if (y.getLp() == null) { | |
| 4650 | + ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 4651 | + jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 4652 | + yh = Arith.add(yh, y.getYh()); | |
| 4653 | + jzl = Arith.add(jzl, y.getJzl()); | |
| 4654 | + zlc = Arith.add(zlc, y.getZlc()); | |
| 4655 | + if(dMap.get(y.getRylx())!=null) | |
| 4656 | + rylx =dMap.get(y.getRylx()).toString(); | |
| 4657 | + } else { | |
| 4658 | + if (y.getLp().equals(s.getLpName())) { | |
| 4659 | + ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 4660 | + jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 4661 | + yh = Arith.add(yh, y.getYh()); | |
| 4662 | + jzl = Arith.add(jzl, y.getJzl()); | |
| 4663 | + zlc = Arith.add(zlc, y.getZlc()); | |
| 4664 | + if(dMap.get(y.getRylx())!=null) | |
| 4665 | + rylx =dMap.get(y.getRylx()).toString(); | |
| 4666 | + } | |
| 4667 | + } | |
| 4668 | + } | |
| 4669 | + for (int i = 0; i < listDlb.size(); i++) { | |
| 4670 | + Dlb d = listDlb.get(i); | |
| 4671 | + if (d.getLp() == null) { | |
| 4672 | + ccyl_ = Arith.add(ccyl_, d.getCzcd()); | |
| 4673 | + jcyl_ = Arith.add(jcyl_, d.getJzcd()); | |
| 4674 | + yh_ = Arith.add(yh_, d.getHd()); | |
| 4675 | + jzl_ = Arith.add(jzl, d.getCdl()); | |
| 4676 | + } else { | |
| 4677 | + if (d.getLp().equals(s.getLpName())) { | |
| 4678 | + ccyl_ = Arith.add(ccyl_, d.getCzcd()); | |
| 4679 | + jcyl_ = Arith.add(jcyl_, d.getJzcd()); | |
| 4680 | + yh_ = Arith.add(yh_, d.getHd()); | |
| 4681 | + jzl_ = Arith.add(jzl_, d.getCdl()); | |
| 4682 | + } | |
| 4683 | + } | |
| 4637 | 4684 | } |
| 4638 | 4685 | } else { |
| 4639 | 4686 | List<Ylb> listYlb = ylbRepository.queryListYlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); |
| ... | ... | @@ -4661,6 +4708,49 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 4661 | 4708 | } |
| 4662 | 4709 | } |
| 4663 | 4710 | } |
| 4711 | + } else { | |
| 4712 | + //油点混合 | |
| 4713 | + List<Ylb> listYlb = ylbRepository.queryListYlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); | |
| 4714 | + List<Dlb> listDlb = dlbRepository.queryListDlb(fcrq, s.getClZbh(), s.getjGh(), xlbm); | |
| 4715 | + type = 2; | |
| 4716 | + for (int i = 0; i < listYlb.size(); i++) { | |
| 4717 | + Ylb y = listYlb.get(i); | |
| 4718 | + if (y.getLp() == null) { | |
| 4719 | + ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 4720 | + jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 4721 | + yh = Arith.add(yh, y.getYh()); | |
| 4722 | + jzl = Arith.add(jzl, y.getJzl()); | |
| 4723 | + zlc = Arith.add(zlc, y.getZlc()); | |
| 4724 | + if(dMap.get(y.getRylx())!=null) | |
| 4725 | + rylx =dMap.get(y.getRylx()).toString(); | |
| 4726 | + } else { | |
| 4727 | + if (y.getLp().equals(s.getLpName())) { | |
| 4728 | + ccyl = Arith.add(ccyl, y.getCzyl()); | |
| 4729 | + jcyl = Arith.add(jcyl, y.getJzyl()); | |
| 4730 | + yh = Arith.add(yh, y.getYh()); | |
| 4731 | + jzl = Arith.add(jzl, y.getJzl()); | |
| 4732 | + zlc = Arith.add(zlc, y.getZlc()); | |
| 4733 | + if(dMap.get(y.getRylx())!=null) | |
| 4734 | + rylx =dMap.get(y.getRylx()).toString(); | |
| 4735 | + } | |
| 4736 | + } | |
| 4737 | + } | |
| 4738 | + for (int i = 0; i < listDlb.size(); i++) { | |
| 4739 | + Dlb d = listDlb.get(i); | |
| 4740 | + if (d.getLp() == null) { | |
| 4741 | + ccyl_ = Arith.add(ccyl_, d.getCzcd()); | |
| 4742 | + jcyl_ = Arith.add(jcyl_, d.getJzcd()); | |
| 4743 | + yh_ = Arith.add(yh_, d.getHd()); | |
| 4744 | + jzl_ = Arith.add(jzl, d.getCdl()); | |
| 4745 | + } else { | |
| 4746 | + if (d.getLp().equals(s.getLpName())) { | |
| 4747 | + ccyl_ = Arith.add(ccyl_, d.getCzcd()); | |
| 4748 | + jcyl_ = Arith.add(jcyl_, d.getJzcd()); | |
| 4749 | + yh_ = Arith.add(yh_, d.getHd()); | |
| 4750 | + jzl_ = Arith.add(jzl_, d.getCdl()); | |
| 4751 | + } | |
| 4752 | + } | |
| 4753 | + } | |
| 4664 | 4754 | } |
| 4665 | 4755 | } |
| 4666 | 4756 | |
| ... | ... | @@ -4669,6 +4759,10 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 4669 | 4759 | map.put("yh", yh); |
| 4670 | 4760 | map.put("ccyl", ccyl); |
| 4671 | 4761 | map.put("jcyl", jcyl); |
| 4762 | + map.put("jzl_", jzl_); | |
| 4763 | + map.put("yh_", yh_); | |
| 4764 | + map.put("ccyl_", ccyl_); | |
| 4765 | + map.put("jcyl_", jcyl_); | |
| 4672 | 4766 | map.put("type", type); |
| 4673 | 4767 | map.put("zlc", zlc); |
| 4674 | 4768 | map.put("xlName", s.getXlName()); |
| ... | ... | @@ -5203,20 +5297,22 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 5203 | 5297 | fcsjm = String.valueOf(fcsjActural_ - fcsj_); |
| 5204 | 5298 | } |
| 5205 | 5299 | } |
| 5206 | - String[] dfsj_s =schedule.getDfsj().split(":"); | |
| 5207 | - Long dfsj_ = Long.parseLong(dfsj_s[0]) * 60 + Long.parseLong(dfsj_s[1]); | |
| 5208 | - if ((dfsj_ - fcsjActural_) > 0) { | |
| 5209 | - if(dfsj_ - fcsjActural_>1200){ | |
| 5210 | - dfsjm=String.valueOf(1440-(dfsj_ - fcsjActural_)); | |
| 5211 | - }else{ | |
| 5212 | - dfsjk = String.valueOf(dfsj_ - fcsjActural_); | |
| 5213 | - } | |
| 5214 | - } else { | |
| 5215 | - if(fcsjActural_ - dfsj_>1200){ | |
| 5216 | - dfsjk= String.valueOf(1440-(fcsjActural_ - dfsj_)); | |
| 5217 | - }else{ | |
| 5218 | - dfsjm = String.valueOf(fcsjActural_ - dfsj_); | |
| 5219 | - } | |
| 5300 | + if(df.equals("df")){ | |
| 5301 | + String[] dfsj_s =schedule.getDfsj().split(":"); | |
| 5302 | + Long dfsj_ = Long.parseLong(dfsj_s[0]) * 60 + Long.parseLong(dfsj_s[1]); | |
| 5303 | + if ((dfsj_ - fcsjActural_) > 0) { | |
| 5304 | + if(dfsj_ - fcsjActural_>1200){ | |
| 5305 | + dfsjm=String.valueOf(1440-(dfsj_ - fcsjActural_)); | |
| 5306 | + }else{ | |
| 5307 | + dfsjk = String.valueOf(dfsj_ - fcsjActural_); | |
| 5308 | + } | |
| 5309 | + } else { | |
| 5310 | + if(fcsjActural_ - dfsj_>1200){ | |
| 5311 | + dfsjk= String.valueOf(1440-(fcsjActural_ - dfsj_)); | |
| 5312 | + }else{ | |
| 5313 | + dfsjm = String.valueOf(fcsjActural_ - dfsj_); | |
| 5314 | + } | |
| 5315 | + } | |
| 5220 | 5316 | } |
| 5221 | 5317 | } |
| 5222 | 5318 | if(df.equals("df")){ | ... | ... |
src/main/java/com/bsth/service/schedule/datatools/TTInfoDetailDataToolsImpl.java
| ... | ... | @@ -348,7 +348,7 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail |
| 348 | 348 | for (int r = 1; r < sheet.getRows(); r++) { |
| 349 | 349 | List<FcInfo> fcInfos = new ArrayList<>(); |
| 350 | 350 | // 每行第一列都是路牌 |
| 351 | - fcInfos.add(new FcInfo(null, null, sheet.getCell(0, r).getContents(), null, null, null, null, null)); // 用fcsj放置路牌显示 | |
| 351 | + fcInfos.add(new FcInfo(null, null, sheet.getCell(0, r).getContents(), null, null, null, null, null, null)); // 用fcsj放置路牌显示 | |
| 352 | 352 | |
| 353 | 353 | int bc_ks = 0; // 空驶班次 |
| 354 | 354 | int bc_yy = 0; // 营运班次 |
| ... | ... | @@ -373,7 +373,9 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail |
| 373 | 373 | |
| 374 | 374 | String ists = content == null ? "" : content[9]; // 是否停驶 |
| 375 | 375 | |
| 376 | - FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb, qdzCode, zdzCode, ists); | |
| 376 | + String bcsj = content == null ? "" : content[10]; // 班次时间 | |
| 377 | + | |
| 378 | + FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb, qdzCode, zdzCode, ists, bcsj); | |
| 377 | 379 | |
| 378 | 380 | if (StringUtils.isNotEmpty(fzdname)) |
| 379 | 381 | headarrays[c] = fzdname; |
| ... | ... | @@ -407,10 +409,10 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail |
| 407 | 409 | } |
| 408 | 410 | |
| 409 | 411 | // 添加一列 空驶班次/空驶里程,fcsj放置数据 |
| 410 | - fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_ks, lc_ks), null, null, null, null, null)); | |
| 412 | + fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_ks, lc_ks), null, null, null, null, null, null)); | |
| 411 | 413 | |
| 412 | 414 | // 添加一列 营运班次/营运里程,fcsj放置数据 |
| 413 | - fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_yy, lc_yy), null, null, null, null, null)); | |
| 415 | + fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_yy, lc_yy), null, null, null, null, null, null)); | |
| 414 | 416 | |
| 415 | 417 | editInfo.getContents().add(fcInfos); |
| 416 | 418 | } | ... | ... |
src/main/java/com/bsth/service/schedule/datatools/TTInfoDetailForEdit.java
| ... | ... | @@ -31,6 +31,8 @@ public interface TTInfoDetailForEdit { |
| 31 | 31 | private String zdzCode; |
| 32 | 32 | /** 是否停驶 */ |
| 33 | 33 | private Boolean ists; |
| 34 | + /** 班次时间 */ | |
| 35 | + private String bcsj; | |
| 34 | 36 | |
| 35 | 37 | public FcInfo() { |
| 36 | 38 | } |
| ... | ... | @@ -43,7 +45,8 @@ public interface TTInfoDetailForEdit { |
| 43 | 45 | String isfb, |
| 44 | 46 | String qdzCode, |
| 45 | 47 | String zdzCode, |
| 46 | - String ists) { | |
| 48 | + String ists, | |
| 49 | + String bcsj) { | |
| 47 | 50 | this.ttdid = StringUtils.isEmpty(ttdid_str) ? null : Long.valueOf(ttdid_str); |
| 48 | 51 | this.bc_type = bc_type; |
| 49 | 52 | this.fcsj = fcsj; |
| ... | ... | @@ -69,6 +72,10 @@ public interface TTInfoDetailForEdit { |
| 69 | 72 | else |
| 70 | 73 | this.ists = false; |
| 71 | 74 | |
| 75 | + if (StringUtils.isNotEmpty(bcsj) && !"null".equals(bcsj)) { | |
| 76 | + this.bcsj = bcsj; | |
| 77 | + } | |
| 78 | + | |
| 72 | 79 | } |
| 73 | 80 | |
| 74 | 81 | public Long getTtdid() { |
| ... | ... | @@ -134,6 +141,14 @@ public interface TTInfoDetailForEdit { |
| 134 | 141 | public void setIsts(Boolean ists) { |
| 135 | 142 | this.ists = ists; |
| 136 | 143 | } |
| 144 | + | |
| 145 | + public String getBcsj() { | |
| 146 | + return bcsj; | |
| 147 | + } | |
| 148 | + | |
| 149 | + public void setBcsj(String bcsj) { | |
| 150 | + this.bcsj = bcsj; | |
| 151 | + } | |
| 137 | 152 | } |
| 138 | 153 | |
| 139 | 154 | /** | ... | ... |
src/main/java/com/bsth/service/schedule/impl/plan/kBase3/validate/timetable/ErrorBcCountFunction.java
| ... | ... | @@ -59,10 +59,16 @@ public class ErrorBcCountFunction implements AccumulateFunction { |
| 59 | 59 | return; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | + // 判定条件(数据库中的对应字段没有非空约束),与界面saTimeTable.js的validInfo方法对应 | |
| 63 | + // 1、起点站编码,名字为空 | |
| 64 | + // 2、终点站编码,名字为空 | |
| 65 | + // 3、班次时间 | |
| 66 | + // TODO:其他再议 | |
| 62 | 67 | if (StringUtils.isEmpty(ttInfoDetail.getQdzCode()) || |
| 63 | 68 | StringUtils.isEmpty(ttInfoDetail.getQdzName()) || |
| 64 | 69 | StringUtils.isEmpty(ttInfoDetail.getZdzCode()) || |
| 65 | - StringUtils.isEmpty(ttInfoDetail.getZdzName()) ) { | |
| 70 | + StringUtils.isEmpty(ttInfoDetail.getZdzName()) || | |
| 71 | + (ttInfoDetail.getBcsj() == null) ) { | |
| 66 | 72 | |
| 67 | 73 | errorCountData.errorcount ++; |
| 68 | 74 | } | ... | ... |
src/main/resources/META-INF/drools.packagebuilder.conf
0 → 100644
| 1 | +# 貌似用import accumulate报错,使用配置文件方式 | |
| 2 | + | |
| 3 | +drools.accumulate.function.gidscount = com.bsth.service.schedule.impl.plan.kBase1.core.shiftloop.GidsCountFunction | |
| 4 | +drools.accumulate.function.gidfbtime = com.bsth.service.schedule.impl.plan.kBase1.core.shiftloop.GidFbTimeFunction | |
| 5 | +drools.accumulate.function.gidfbfcno = com.bsth.service.schedule.impl.plan.kBase1.core.shiftloop.GidFbFcnoFunction | |
| 6 | + | |
| 7 | +drools.accumulate.function.lpinforesult = com.bsth.service.schedule.impl.plan.kBase1.core.ttinfo.LpInfoResultsFunction | |
| 8 | +drools.accumulate.function.minruleqyrq = com.bsth.service.schedule.impl.plan.kBase1.core.ttinfo.MinRuleQyrqFunction | |
| 9 | + | |
| 10 | +drools.accumulate.function.vrb = com.bsth.service.schedule.impl.plan.kBase1.core.validate.ValidRepeatBcFunction | |
| 11 | +drools.accumulate.function.vwrb = com.bsth.service.schedule.impl.plan.kBase1.core.validate.ValidWholeRerunBcFunction | |
| 12 | +drools.accumulate.function.vwlp = com.bsth.service.schedule.impl.plan.kBase1.core.validate.ValidWantLpFunction | ... | ... |
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>79</default_value> | |
| 20 | - <description>时刻表id</description> | |
| 21 | - </parameter> | |
| 22 | - <parameter> | |
| 23 | - <name>xlid</name> | |
| 24 | - <default_value>63020</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>此处转换excel有问题,
2003格式的xls最多256列,
这里明显超过,所以把所有内容合并成1列,
用,分隔</note> | |
| 94 | - <xloc>316</xloc> | |
| 95 | - <yloc>166</yloc> | |
| 96 | - <width>245</width> | |
| 97 | - <heigth>74</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 | - </notepads> | |
| 114 | - <connection> | |
| 115 | - <name>192.168.168.1_jwgl_dw</name> | |
| 116 | - <server>192.168.168.1</server> | |
| 117 | - <type>ORACLE</type> | |
| 118 | - <access>Native</access> | |
| 119 | - <database>orcl</database> | |
| 120 | - <port>1521</port> | |
| 121 | - <username>jwgl_dw</username> | |
| 122 | - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | |
| 123 | - <servername/> | |
| 124 | - <data_tablespace/> | |
| 125 | - <index_tablespace/> | |
| 126 | - <attributes> | |
| 127 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 128 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 129 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 130 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 131 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 132 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 133 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 134 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 135 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 136 | - </attributes> | |
| 137 | - </connection> | |
| 138 | - <connection> | |
| 139 | - <name>bus_control_variable</name> | |
| 140 | - <server>${v_db_ip}</server> | |
| 141 | - <type>MYSQL</type> | |
| 142 | - <access>Native</access> | |
| 143 | - <database>${v_db_dname}</database> | |
| 144 | - <port>3306</port> | |
| 145 | - <username>${v_db_uname}</username> | |
| 146 | - <password>${v_db_pwd}</password> | |
| 147 | - <servername/> | |
| 148 | - <data_tablespace/> | |
| 149 | - <index_tablespace/> | |
| 150 | - <attributes> | |
| 151 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 152 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 153 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 154 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 155 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 156 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 157 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 158 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 159 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 160 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 161 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 162 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 163 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 164 | - </attributes> | |
| 165 | - </connection> | |
| 166 | - <connection> | |
| 167 | - <name>bus_control_公司_201</name> | |
| 168 | - <server>localhost</server> | |
| 169 | - <type>MYSQL</type> | |
| 170 | - <access>Native</access> | |
| 171 | - <database>control</database> | |
| 172 | - <port>3306</port> | |
| 173 | - <username>root</username> | |
| 174 | - <password>Encrypted </password> | |
| 175 | - <servername/> | |
| 176 | - <data_tablespace/> | |
| 177 | - <index_tablespace/> | |
| 178 | - <attributes> | |
| 179 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 180 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 181 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 182 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 183 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 184 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 185 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 186 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 187 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 188 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 189 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 190 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 191 | - </attributes> | |
| 192 | - </connection> | |
| 193 | - <connection> | |
| 194 | - <name>bus_control_本机</name> | |
| 195 | - <server>localhost</server> | |
| 196 | - <type>MYSQL</type> | |
| 197 | - <access>Native</access> | |
| 198 | - <database>control</database> | |
| 199 | - <port>3306</port> | |
| 200 | - <username>root</username> | |
| 201 | - <password>Encrypted </password> | |
| 202 | - <servername/> | |
| 203 | - <data_tablespace/> | |
| 204 | - <index_tablespace/> | |
| 205 | - <attributes> | |
| 206 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 207 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 208 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 209 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 210 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 211 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 212 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 213 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 214 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 215 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 216 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 217 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 218 | - </attributes> | |
| 219 | - </connection> | |
| 220 | - <connection> | |
| 221 | - <name>xlab_mysql_youle</name> | |
| 222 | - <server>101.231.124.8</server> | |
| 223 | - <type>MYSQL</type> | |
| 224 | - <access>Native</access> | |
| 225 | - <database>xlab_youle</database> | |
| 226 | - <port>45687</port> | |
| 227 | - <username>xlab-youle</username> | |
| 228 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 229 | - <servername/> | |
| 230 | - <data_tablespace/> | |
| 231 | - <index_tablespace/> | |
| 232 | - <attributes> | |
| 233 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 234 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 235 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 236 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 237 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 238 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 239 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 240 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 241 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 242 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 243 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 244 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 245 | - </attributes> | |
| 246 | - </connection> | |
| 247 | - <connection> | |
| 248 | - <name>xlab_mysql_youle(本机)</name> | |
| 249 | - <server>localhost</server> | |
| 250 | - <type>MYSQL</type> | |
| 251 | - <access>Native</access> | |
| 252 | - <database>xlab_youle</database> | |
| 253 | - <port>3306</port> | |
| 254 | - <username>root</username> | |
| 255 | - <password>Encrypted </password> | |
| 256 | - <servername/> | |
| 257 | - <data_tablespace/> | |
| 258 | - <index_tablespace/> | |
| 259 | - <attributes> | |
| 260 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 261 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 262 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 263 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 264 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 265 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 266 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 267 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 268 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 269 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 270 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 271 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 272 | - </attributes> | |
| 273 | - </connection> | |
| 274 | - <connection> | |
| 275 | - <name>xlab_youle</name> | |
| 276 | - <server/> | |
| 277 | - <type>MYSQL</type> | |
| 278 | - <access>JNDI</access> | |
| 279 | - <database>xlab_youle</database> | |
| 280 | - <port>1521</port> | |
| 281 | - <username/> | |
| 282 | - <password>Encrypted </password> | |
| 283 | - <servername/> | |
| 284 | - <data_tablespace/> | |
| 285 | - <index_tablespace/> | |
| 286 | - <attributes> | |
| 287 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 288 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 289 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 290 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 291 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 292 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 293 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 294 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 295 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 296 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 297 | - </attributes> | |
| 298 | - </connection> | |
| 299 | - <order> | |
| 300 | - <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> | |
| 301 | - <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 302 | - <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> | |
| 303 | - <hop> <from>计算发车站名</from><to>合并内容</to><enabled>Y</enabled> </hop> | |
| 304 | - <hop> <from>合并内容</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 305 | - <hop> <from>表输入</from><to>计算发车站名</to><enabled>Y</enabled> </hop> | |
| 306 | - </order> | |
| 307 | - <step> | |
| 308 | - <name>Excel输出</name> | |
| 309 | - <type>ExcelOutput</type> | |
| 310 | - <description/> | |
| 311 | - <distribute>Y</distribute> | |
| 312 | - <custom_distribution/> | |
| 313 | - <copies>1</copies> | |
| 314 | - <partitioning> | |
| 315 | - <method>none</method> | |
| 316 | - <schema_name/> | |
| 317 | - </partitioning> | |
| 318 | - <header>Y</header> | |
| 319 | - <footer>N</footer> | |
| 320 | - <encoding/> | |
| 321 | - <append>N</append> | |
| 322 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 323 | - <file> | |
| 324 | - <name>${tempfilepath}</name> | |
| 325 | - <extention>xls</extention> | |
| 326 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 327 | - <create_parent_folder>N</create_parent_folder> | |
| 328 | - <split>N</split> | |
| 329 | - <add_date>N</add_date> | |
| 330 | - <add_time>N</add_time> | |
| 331 | - <SpecifyFormat>N</SpecifyFormat> | |
| 332 | - <date_time_format/> | |
| 333 | - <sheetname>Sheet1</sheetname> | |
| 334 | - <autosizecolums>N</autosizecolums> | |
| 335 | - <nullisblank>N</nullisblank> | |
| 336 | - <protect_sheet>N</protect_sheet> | |
| 337 | - <password>Encrypted </password> | |
| 338 | - <splitevery>0</splitevery> | |
| 339 | - <usetempfiles>N</usetempfiles> | |
| 340 | - <tempdirectory/> | |
| 341 | - </file> | |
| 342 | - <template> | |
| 343 | - <enabled>N</enabled> | |
| 344 | - <append>N</append> | |
| 345 | - <filename>template.xls</filename> | |
| 346 | - </template> | |
| 347 | - <fields> | |
| 348 | - <field> | |
| 349 | - <name>lp</name> | |
| 350 | - <type>String</type> | |
| 351 | - <format/> | |
| 352 | - </field> | |
| 353 | - <field> | |
| 354 | - <name>fcno1</name> | |
| 355 | - <type>String</type> | |
| 356 | - <format/> | |
| 357 | - </field> | |
| 358 | - <field> | |
| 359 | - <name>fcno2</name> | |
| 360 | - <type>String</type> | |
| 361 | - <format/> | |
| 362 | - </field> | |
| 363 | - <field> | |
| 364 | - <name>fcno3</name> | |
| 365 | - <type>String</type> | |
| 366 | - <format/> | |
| 367 | - </field> | |
| 368 | - <field> | |
| 369 | - <name>fcno4</name> | |
| 370 | - <type>String</type> | |
| 371 | - <format/> | |
| 372 | - </field> | |
| 373 | - <field> | |
| 374 | - <name>fcno5</name> | |
| 375 | - <type>String</type> | |
| 376 | - <format/> | |
| 377 | - </field> | |
| 378 | - <field> | |
| 379 | - <name>fcno6</name> | |
| 380 | - <type>String</type> | |
| 381 | - <format/> | |
| 382 | - </field> | |
| 383 | - <field> | |
| 384 | - <name>fcno7</name> | |
| 385 | - <type>String</type> | |
| 386 | - <format/> | |
| 387 | - </field> | |
| 388 | - <field> | |
| 389 | - <name>fcno8</name> | |
| 390 | - <type>String</type> | |
| 391 | - <format/> | |
| 392 | - </field> | |
| 393 | - <field> | |
| 394 | - <name>fcno9</name> | |
| 395 | - <type>String</type> | |
| 396 | - <format/> | |
| 397 | - </field> | |
| 398 | - <field> | |
| 399 | - <name>fcno10</name> | |
| 400 | - <type>String</type> | |
| 401 | - <format/> | |
| 402 | - </field> | |
| 403 | - <field> | |
| 404 | - <name>fcno11</name> | |
| 405 | - <type>String</type> | |
| 406 | - <format/> | |
| 407 | - </field> | |
| 408 | - <field> | |
| 409 | - <name>fcno12</name> | |
| 410 | - <type>String</type> | |
| 411 | - <format/> | |
| 412 | - </field> | |
| 413 | - <field> | |
| 414 | - <name>fcno13</name> | |
| 415 | - <type>String</type> | |
| 416 | - <format/> | |
| 417 | - </field> | |
| 418 | - <field> | |
| 419 | - <name>fcno14</name> | |
| 420 | - <type>String</type> | |
| 421 | - <format/> | |
| 422 | - </field> | |
| 423 | - <field> | |
| 424 | - <name>fcno15</name> | |
| 425 | - <type>String</type> | |
| 426 | - <format/> | |
| 427 | - </field> | |
| 428 | - <field> | |
| 429 | - <name>fcno16</name> | |
| 430 | - <type>String</type> | |
| 431 | - <format/> | |
| 432 | - </field> | |
| 433 | - <field> | |
| 434 | - <name>fcno17</name> | |
| 435 | - <type>String</type> | |
| 436 | - <format/> | |
| 437 | - </field> | |
| 438 | - <field> | |
| 439 | - <name>fcno18</name> | |
| 440 | - <type>String</type> | |
| 441 | - <format/> | |
| 442 | - </field> | |
| 443 | - <field> | |
| 444 | - <name>fcno19</name> | |
| 445 | - <type>String</type> | |
| 446 | - <format/> | |
| 447 | - </field> | |
| 448 | - <field> | |
| 449 | - <name>fcno20</name> | |
| 450 | - <type>String</type> | |
| 451 | - <format/> | |
| 452 | - </field> | |
| 453 | - <field> | |
| 454 | - <name>fcno21</name> | |
| 455 | - <type>String</type> | |
| 456 | - <format/> | |
| 457 | - </field> | |
| 458 | - <field> | |
| 459 | - <name>fcno22</name> | |
| 460 | - <type>String</type> | |
| 461 | - <format/> | |
| 462 | - </field> | |
| 463 | - <field> | |
| 464 | - <name>fcno23</name> | |
| 465 | - <type>String</type> | |
| 466 | - <format/> | |
| 467 | - </field> | |
| 468 | - <field> | |
| 469 | - <name>fcno24</name> | |
| 470 | - <type>String</type> | |
| 471 | - <format/> | |
| 472 | - </field> | |
| 473 | - <field> | |
| 474 | - <name>fcno25</name> | |
| 475 | - <type>String</type> | |
| 476 | - <format/> | |
| 477 | - </field> | |
| 478 | - <field> | |
| 479 | - <name>fcno26</name> | |
| 480 | - <type>String</type> | |
| 481 | - <format/> | |
| 482 | - </field> | |
| 483 | - <field> | |
| 484 | - <name>fcno27</name> | |
| 485 | - <type>String</type> | |
| 486 | - <format/> | |
| 487 | - </field> | |
| 488 | - <field> | |
| 489 | - <name>fcno28</name> | |
| 490 | - <type>String</type> | |
| 491 | - <format/> | |
| 492 | - </field> | |
| 493 | - <field> | |
| 494 | - <name>fcno29</name> | |
| 495 | - <type>String</type> | |
| 496 | - <format/> | |
| 497 | - </field> | |
| 498 | - <field> | |
| 499 | - <name>fcno30</name> | |
| 500 | - <type>String</type> | |
| 501 | - <format/> | |
| 502 | - </field> | |
| 503 | - <field> | |
| 504 | - <name>fcno31</name> | |
| 505 | - <type>String</type> | |
| 506 | - <format/> | |
| 507 | - </field> | |
| 508 | - <field> | |
| 509 | - <name>fcno32</name> | |
| 510 | - <type>String</type> | |
| 511 | - <format/> | |
| 512 | - </field> | |
| 513 | - <field> | |
| 514 | - <name>fcno33</name> | |
| 515 | - <type>String</type> | |
| 516 | - <format/> | |
| 517 | - </field> | |
| 518 | - <field> | |
| 519 | - <name>fcno34</name> | |
| 520 | - <type>String</type> | |
| 521 | - <format/> | |
| 522 | - </field> | |
| 523 | - <field> | |
| 524 | - <name>fcno35</name> | |
| 525 | - <type>String</type> | |
| 526 | - <format/> | |
| 527 | - </field> | |
| 528 | - <field> | |
| 529 | - <name>fcno36</name> | |
| 530 | - <type>String</type> | |
| 531 | - <format/> | |
| 532 | - </field> | |
| 533 | - <field> | |
| 534 | - <name>fcno37</name> | |
| 535 | - <type>String</type> | |
| 536 | - <format/> | |
| 537 | - </field> | |
| 538 | - <field> | |
| 539 | - <name>fcno38</name> | |
| 540 | - <type>String</type> | |
| 541 | - <format/> | |
| 542 | - </field> | |
| 543 | - <field> | |
| 544 | - <name>fcno39</name> | |
| 545 | - <type>String</type> | |
| 546 | - <format/> | |
| 547 | - </field> | |
| 548 | - <field> | |
| 549 | - <name>fcno40</name> | |
| 550 | - <type>String</type> | |
| 551 | - <format/> | |
| 552 | - </field> | |
| 553 | - <field> | |
| 554 | - <name>fcno41</name> | |
| 555 | - <type>String</type> | |
| 556 | - <format/> | |
| 557 | - </field> | |
| 558 | - <field> | |
| 559 | - <name>fcno42</name> | |
| 560 | - <type>String</type> | |
| 561 | - <format/> | |
| 562 | - </field> | |
| 563 | - <field> | |
| 564 | - <name>fcno43</name> | |
| 565 | - <type>String</type> | |
| 566 | - <format/> | |
| 567 | - </field> | |
| 568 | - <field> | |
| 569 | - <name>fcno44</name> | |
| 570 | - <type>String</type> | |
| 571 | - <format/> | |
| 572 | - </field> | |
| 573 | - <field> | |
| 574 | - <name>fcno45</name> | |
| 575 | - <type>String</type> | |
| 576 | - <format/> | |
| 577 | - </field> | |
| 578 | - <field> | |
| 579 | - <name>fcno46</name> | |
| 580 | - <type>String</type> | |
| 581 | - <format/> | |
| 582 | - </field> | |
| 583 | - <field> | |
| 584 | - <name>fcno47</name> | |
| 585 | - <type>String</type> | |
| 586 | - <format/> | |
| 587 | - </field> | |
| 588 | - <field> | |
| 589 | - <name>fcno48</name> | |
| 590 | - <type>String</type> | |
| 591 | - <format/> | |
| 592 | - </field> | |
| 593 | - <field> | |
| 594 | - <name>fcno49</name> | |
| 595 | - <type>String</type> | |
| 596 | - <format/> | |
| 597 | - </field> | |
| 598 | - <field> | |
| 599 | - <name>fcno50</name> | |
| 600 | - <type>String</type> | |
| 601 | - <format/> | |
| 602 | - </field> | |
| 603 | - <field> | |
| 604 | - <name>fcno51</name> | |
| 605 | - <type>String</type> | |
| 606 | - <format/> | |
| 607 | - </field> | |
| 608 | - <field> | |
| 609 | - <name>fcno52</name> | |
| 610 | - <type>String</type> | |
| 611 | - <format/> | |
| 612 | - </field> | |
| 613 | - <field> | |
| 614 | - <name>fcno53</name> | |
| 615 | - <type>String</type> | |
| 616 | - <format/> | |
| 617 | - </field> | |
| 618 | - <field> | |
| 619 | - <name>fcno54</name> | |
| 620 | - <type>String</type> | |
| 621 | - <format/> | |
| 622 | - </field> | |
| 623 | - <field> | |
| 624 | - <name>fcno55</name> | |
| 625 | - <type>String</type> | |
| 626 | - <format/> | |
| 627 | - </field> | |
| 628 | - <field> | |
| 629 | - <name>fcno56</name> | |
| 630 | - <type>String</type> | |
| 631 | - <format/> | |
| 632 | - </field> | |
| 633 | - <field> | |
| 634 | - <name>fcno57</name> | |
| 635 | - <type>String</type> | |
| 636 | - <format/> | |
| 637 | - </field> | |
| 638 | - <field> | |
| 639 | - <name>fcno58</name> | |
| 640 | - <type>String</type> | |
| 641 | - <format/> | |
| 642 | - </field> | |
| 643 | - <field> | |
| 644 | - <name>fcno59</name> | |
| 645 | - <type>String</type> | |
| 646 | - <format/> | |
| 647 | - </field> | |
| 648 | - <field> | |
| 649 | - <name>fcno60</name> | |
| 650 | - <type>String</type> | |
| 651 | - <format/> | |
| 652 | - </field> | |
| 653 | - <field> | |
| 654 | - <name>fcno61</name> | |
| 655 | - <type>String</type> | |
| 656 | - <format/> | |
| 657 | - </field> | |
| 658 | - <field> | |
| 659 | - <name>fcno62</name> | |
| 660 | - <type>String</type> | |
| 661 | - <format/> | |
| 662 | - </field> | |
| 663 | - <field> | |
| 664 | - <name>fcno63</name> | |
| 665 | - <type>String</type> | |
| 666 | - <format/> | |
| 667 | - </field> | |
| 668 | - <field> | |
| 669 | - <name>fcno64</name> | |
| 670 | - <type>String</type> | |
| 671 | - <format/> | |
| 672 | - </field> | |
| 673 | - <field> | |
| 674 | - <name>fcno65</name> | |
| 675 | - <type>String</type> | |
| 676 | - <format/> | |
| 677 | - </field> | |
| 678 | - <field> | |
| 679 | - <name>fcno66</name> | |
| 680 | - <type>String</type> | |
| 681 | - <format/> | |
| 682 | - </field> | |
| 683 | - <field> | |
| 684 | - <name>fcno67</name> | |
| 685 | - <type>String</type> | |
| 686 | - <format/> | |
| 687 | - </field> | |
| 688 | - <field> | |
| 689 | - <name>fcno68</name> | |
| 690 | - <type>String</type> | |
| 691 | - <format/> | |
| 692 | - </field> | |
| 693 | - <field> | |
| 694 | - <name>fcno69</name> | |
| 695 | - <type>String</type> | |
| 696 | - <format/> | |
| 697 | - </field> | |
| 698 | - <field> | |
| 699 | - <name>fcno70</name> | |
| 700 | - <type>String</type> | |
| 701 | - <format/> | |
| 702 | - </field> | |
| 703 | - <field> | |
| 704 | - <name>fcno71</name> | |
| 705 | - <type>String</type> | |
| 706 | - <format/> | |
| 707 | - </field> | |
| 708 | - <field> | |
| 709 | - <name>fcno72</name> | |
| 710 | - <type>String</type> | |
| 711 | - <format/> | |
| 712 | - </field> | |
| 713 | - <field> | |
| 714 | - <name>fcno73</name> | |
| 715 | - <type>String</type> | |
| 716 | - <format/> | |
| 717 | - </field> | |
| 718 | - <field> | |
| 719 | - <name>fcno74</name> | |
| 720 | - <type>String</type> | |
| 721 | - <format/> | |
| 722 | - </field> | |
| 723 | - <field> | |
| 724 | - <name>fcno75</name> | |
| 725 | - <type>String</type> | |
| 726 | - <format/> | |
| 727 | - </field> | |
| 728 | - <field> | |
| 729 | - <name>fcno76</name> | |
| 730 | - <type>String</type> | |
| 731 | - <format/> | |
| 732 | - </field> | |
| 733 | - <field> | |
| 734 | - <name>fcno77</name> | |
| 735 | - <type>String</type> | |
| 736 | - <format/> | |
| 737 | - </field> | |
| 738 | - <field> | |
| 739 | - <name>fcno78</name> | |
| 740 | - <type>String</type> | |
| 741 | - <format/> | |
| 742 | - </field> | |
| 743 | - <field> | |
| 744 | - <name>fcno79</name> | |
| 745 | - <type>String</type> | |
| 746 | - <format/> | |
| 747 | - </field> | |
| 748 | - <field> | |
| 749 | - <name>fcno80</name> | |
| 750 | - <type>String</type> | |
| 751 | - <format/> | |
| 752 | - </field> | |
| 753 | - <field> | |
| 754 | - <name>fcno81</name> | |
| 755 | - <type>String</type> | |
| 756 | - <format/> | |
| 757 | - </field> | |
| 758 | - <field> | |
| 759 | - <name>fcno82</name> | |
| 760 | - <type>String</type> | |
| 761 | - <format/> | |
| 762 | - </field> | |
| 763 | - <field> | |
| 764 | - <name>fcno83</name> | |
| 765 | - <type>String</type> | |
| 766 | - <format/> | |
| 767 | - </field> | |
| 768 | - <field> | |
| 769 | - <name>fcno84</name> | |
| 770 | - <type>String</type> | |
| 771 | - <format/> | |
| 772 | - </field> | |
| 773 | - <field> | |
| 774 | - <name>fcno85</name> | |
| 775 | - <type>String</type> | |
| 776 | - <format/> | |
| 777 | - </field> | |
| 778 | - <field> | |
| 779 | - <name>fcno86</name> | |
| 780 | - <type>String</type> | |
| 781 | - <format/> | |
| 782 | - </field> | |
| 783 | - <field> | |
| 784 | - <name>fcno87</name> | |
| 785 | - <type>String</type> | |
| 786 | - <format/> | |
| 787 | - </field> | |
| 788 | - <field> | |
| 789 | - <name>fcno88</name> | |
| 790 | - <type>String</type> | |
| 791 | - <format/> | |
| 792 | - </field> | |
| 793 | - <field> | |
| 794 | - <name>fcno89</name> | |
| 795 | - <type>String</type> | |
| 796 | - <format/> | |
| 797 | - </field> | |
| 798 | - <field> | |
| 799 | - <name>fcno90</name> | |
| 800 | - <type>String</type> | |
| 801 | - <format/> | |
| 802 | - </field> | |
| 803 | - <field> | |
| 804 | - <name>fcno91</name> | |
| 805 | - <type>String</type> | |
| 806 | - <format/> | |
| 807 | - </field> | |
| 808 | - <field> | |
| 809 | - <name>fcno92</name> | |
| 810 | - <type>String</type> | |
| 811 | - <format/> | |
| 812 | - </field> | |
| 813 | - <field> | |
| 814 | - <name>fcno93</name> | |
| 815 | - <type>String</type> | |
| 816 | - <format/> | |
| 817 | - </field> | |
| 818 | - <field> | |
| 819 | - <name>fcno94</name> | |
| 820 | - <type>String</type> | |
| 821 | - <format/> | |
| 822 | - </field> | |
| 823 | - <field> | |
| 824 | - <name>fcno95</name> | |
| 825 | - <type>String</type> | |
| 826 | - <format/> | |
| 827 | - </field> | |
| 828 | - <field> | |
| 829 | - <name>fcno96</name> | |
| 830 | - <type>String</type> | |
| 831 | - <format/> | |
| 832 | - </field> | |
| 833 | - <field> | |
| 834 | - <name>fcno97</name> | |
| 835 | - <type>String</type> | |
| 836 | - <format/> | |
| 837 | - </field> | |
| 838 | - <field> | |
| 839 | - <name>fcno98</name> | |
| 840 | - <type>String</type> | |
| 841 | - <format/> | |
| 842 | - </field> | |
| 843 | - <field> | |
| 844 | - <name>fcno99</name> | |
| 845 | - <type>String</type> | |
| 846 | - <format/> | |
| 847 | - </field> | |
| 848 | - <field> | |
| 849 | - <name>fcno100</name> | |
| 850 | - <type>String</type> | |
| 851 | - <format/> | |
| 852 | - </field> | |
| 853 | - <field> | |
| 854 | - <name>fcno101</name> | |
| 855 | - <type>String</type> | |
| 856 | - <format/> | |
| 857 | - </field> | |
| 858 | - <field> | |
| 859 | - <name>fcno102</name> | |
| 860 | - <type>String</type> | |
| 861 | - <format/> | |
| 862 | - </field> | |
| 863 | - <field> | |
| 864 | - <name>fcno103</name> | |
| 865 | - <type>String</type> | |
| 866 | - <format/> | |
| 867 | - </field> | |
| 868 | - <field> | |
| 869 | - <name>fcno104</name> | |
| 870 | - <type>String</type> | |
| 871 | - <format/> | |
| 872 | - </field> | |
| 873 | - <field> | |
| 874 | - <name>fcno105</name> | |
| 875 | - <type>String</type> | |
| 876 | - <format/> | |
| 877 | - </field> | |
| 878 | - <field> | |
| 879 | - <name>fcno106</name> | |
| 880 | - <type>String</type> | |
| 881 | - <format/> | |
| 882 | - </field> | |
| 883 | - <field> | |
| 884 | - <name>fcno107</name> | |
| 885 | - <type>String</type> | |
| 886 | - <format/> | |
| 887 | - </field> | |
| 888 | - <field> | |
| 889 | - <name>fcno108</name> | |
| 890 | - <type>String</type> | |
| 891 | - <format/> | |
| 892 | - </field> | |
| 893 | - <field> | |
| 894 | - <name>fcno109</name> | |
| 895 | - <type>String</type> | |
| 896 | - <format/> | |
| 897 | - </field> | |
| 898 | - <field> | |
| 899 | - <name>fcno110</name> | |
| 900 | - <type>String</type> | |
| 901 | - <format/> | |
| 902 | - </field> | |
| 903 | - <field> | |
| 904 | - <name>fcno111</name> | |
| 905 | - <type>String</type> | |
| 906 | - <format/> | |
| 907 | - </field> | |
| 908 | - <field> | |
| 909 | - <name>fcno112</name> | |
| 910 | - <type>String</type> | |
| 911 | - <format/> | |
| 912 | - </field> | |
| 913 | - <field> | |
| 914 | - <name>fcno113</name> | |
| 915 | - <type>String</type> | |
| 916 | - <format/> | |
| 917 | - </field> | |
| 918 | - <field> | |
| 919 | - <name>fcno114</name> | |
| 920 | - <type>String</type> | |
| 921 | - <format/> | |
| 922 | - </field> | |
| 923 | - <field> | |
| 924 | - <name>fcno115</name> | |
| 925 | - <type>String</type> | |
| 926 | - <format/> | |
| 927 | - </field> | |
| 928 | - <field> | |
| 929 | - <name>fcno116</name> | |
| 930 | - <type>String</type> | |
| 931 | - <format/> | |
| 932 | - </field> | |
| 933 | - <field> | |
| 934 | - <name>fcno117</name> | |
| 935 | - <type>String</type> | |
| 936 | - <format/> | |
| 937 | - </field> | |
| 938 | - <field> | |
| 939 | - <name>fcno118</name> | |
| 940 | - <type>String</type> | |
| 941 | - <format/> | |
| 942 | - </field> | |
| 943 | - <field> | |
| 944 | - <name>fcno119</name> | |
| 945 | - <type>String</type> | |
| 946 | - <format/> | |
| 947 | - </field> | |
| 948 | - <field> | |
| 949 | - <name>fcno120</name> | |
| 950 | - <type>String</type> | |
| 951 | - <format/> | |
| 952 | - </field> | |
| 953 | - <field> | |
| 954 | - <name>fcno121</name> | |
| 955 | - <type>String</type> | |
| 956 | - <format/> | |
| 957 | - </field> | |
| 958 | - <field> | |
| 959 | - <name>fcno122</name> | |
| 960 | - <type>String</type> | |
| 961 | - <format/> | |
| 962 | - </field> | |
| 963 | - <field> | |
| 964 | - <name>fcno123</name> | |
| 965 | - <type>String</type> | |
| 966 | - <format/> | |
| 967 | - </field> | |
| 968 | - <field> | |
| 969 | - <name>fcno124</name> | |
| 970 | - <type>String</type> | |
| 971 | - <format/> | |
| 972 | - </field> | |
| 973 | - <field> | |
| 974 | - <name>fcno125</name> | |
| 975 | - <type>String</type> | |
| 976 | - <format/> | |
| 977 | - </field> | |
| 978 | - <field> | |
| 979 | - <name>fcno126</name> | |
| 980 | - <type>String</type> | |
| 981 | - <format/> | |
| 982 | - </field> | |
| 983 | - <field> | |
| 984 | - <name>fcno127</name> | |
| 985 | - <type>String</type> | |
| 986 | - <format/> | |
| 987 | - </field> | |
| 988 | - <field> | |
| 989 | - <name>fcno128</name> | |
| 990 | - <type>String</type> | |
| 991 | - <format/> | |
| 992 | - </field> | |
| 993 | - <field> | |
| 994 | - <name>fcno129</name> | |
| 995 | - <type>String</type> | |
| 996 | - <format/> | |
| 997 | - </field> | |
| 998 | - <field> | |
| 999 | - <name>fcno130</name> | |
| 1000 | - <type>String</type> | |
| 1001 | - <format/> | |
| 1002 | - </field> | |
| 1003 | - <field> | |
| 1004 | - <name>fcno131</name> | |
| 1005 | - <type>String</type> | |
| 1006 | - <format/> | |
| 1007 | - </field> | |
| 1008 | - <field> | |
| 1009 | - <name>fcno132</name> | |
| 1010 | - <type>String</type> | |
| 1011 | - <format/> | |
| 1012 | - </field> | |
| 1013 | - <field> | |
| 1014 | - <name>fcno133</name> | |
| 1015 | - <type>String</type> | |
| 1016 | - <format/> | |
| 1017 | - </field> | |
| 1018 | - <field> | |
| 1019 | - <name>fcno134</name> | |
| 1020 | - <type>String</type> | |
| 1021 | - <format/> | |
| 1022 | - </field> | |
| 1023 | - <field> | |
| 1024 | - <name>fcno135</name> | |
| 1025 | - <type>String</type> | |
| 1026 | - <format/> | |
| 1027 | - </field> | |
| 1028 | - <field> | |
| 1029 | - <name>fcno136</name> | |
| 1030 | - <type>String</type> | |
| 1031 | - <format/> | |
| 1032 | - </field> | |
| 1033 | - <field> | |
| 1034 | - <name>fcno137</name> | |
| 1035 | - <type>String</type> | |
| 1036 | - <format/> | |
| 1037 | - </field> | |
| 1038 | - <field> | |
| 1039 | - <name>fcno138</name> | |
| 1040 | - <type>String</type> | |
| 1041 | - <format/> | |
| 1042 | - </field> | |
| 1043 | - <field> | |
| 1044 | - <name>fcno139</name> | |
| 1045 | - <type>String</type> | |
| 1046 | - <format/> | |
| 1047 | - </field> | |
| 1048 | - <field> | |
| 1049 | - <name>fcno140</name> | |
| 1050 | - <type>String</type> | |
| 1051 | - <format/> | |
| 1052 | - </field> | |
| 1053 | - <field> | |
| 1054 | - <name>fcno141</name> | |
| 1055 | - <type>String</type> | |
| 1056 | - <format/> | |
| 1057 | - </field> | |
| 1058 | - <field> | |
| 1059 | - <name>fcno142</name> | |
| 1060 | - <type>String</type> | |
| 1061 | - <format/> | |
| 1062 | - </field> | |
| 1063 | - <field> | |
| 1064 | - <name>fcno143</name> | |
| 1065 | - <type>String</type> | |
| 1066 | - <format/> | |
| 1067 | - </field> | |
| 1068 | - <field> | |
| 1069 | - <name>fcno144</name> | |
| 1070 | - <type>String</type> | |
| 1071 | - <format/> | |
| 1072 | - </field> | |
| 1073 | - <field> | |
| 1074 | - <name>fcno145</name> | |
| 1075 | - <type>String</type> | |
| 1076 | - <format/> | |
| 1077 | - </field> | |
| 1078 | - <field> | |
| 1079 | - <name>fcno146</name> | |
| 1080 | - <type>String</type> | |
| 1081 | - <format/> | |
| 1082 | - </field> | |
| 1083 | - <field> | |
| 1084 | - <name>fcno147</name> | |
| 1085 | - <type>String</type> | |
| 1086 | - <format/> | |
| 1087 | - </field> | |
| 1088 | - <field> | |
| 1089 | - <name>fcno148</name> | |
| 1090 | - <type>String</type> | |
| 1091 | - <format/> | |
| 1092 | - </field> | |
| 1093 | - <field> | |
| 1094 | - <name>fcno149</name> | |
| 1095 | - <type>String</type> | |
| 1096 | - <format/> | |
| 1097 | - </field> | |
| 1098 | - <field> | |
| 1099 | - <name>fcno150</name> | |
| 1100 | - <type>String</type> | |
| 1101 | - <format/> | |
| 1102 | - </field> | |
| 1103 | - </fields> | |
| 1104 | - <custom> | |
| 1105 | - <header_font_name>arial</header_font_name> | |
| 1106 | - <header_font_size>10</header_font_size> | |
| 1107 | - <header_font_bold>N</header_font_bold> | |
| 1108 | - <header_font_italic>N</header_font_italic> | |
| 1109 | - <header_font_underline>no</header_font_underline> | |
| 1110 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 1111 | - <header_font_color>black</header_font_color> | |
| 1112 | - <header_background_color>none</header_background_color> | |
| 1113 | - <header_row_height>255</header_row_height> | |
| 1114 | - <header_alignment>left</header_alignment> | |
| 1115 | - <header_image/> | |
| 1116 | - <row_font_name>arial</row_font_name> | |
| 1117 | - <row_font_size>10</row_font_size> | |
| 1118 | - <row_font_color>black</row_font_color> | |
| 1119 | - <row_background_color>none</row_background_color> | |
| 1120 | - </custom> | |
| 1121 | - <cluster_schema/> | |
| 1122 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1123 | - <xloc>692</xloc> | |
| 1124 | - <yloc>514</yloc> | |
| 1125 | - <draw>Y</draw> | |
| 1126 | - </GUI> | |
| 1127 | - </step> | |
| 1128 | - | |
| 1129 | - <step> | |
| 1130 | - <name>列转行</name> | |
| 1131 | - <type>Denormaliser</type> | |
| 1132 | - <description/> | |
| 1133 | - <distribute>N</distribute> | |
| 1134 | - <custom_distribution/> | |
| 1135 | - <copies>1</copies> | |
| 1136 | - <partitioning> | |
| 1137 | - <method>none</method> | |
| 1138 | - <schema_name/> | |
| 1139 | - </partitioning> | |
| 1140 | - <key_field>fcno</key_field> | |
| 1141 | - <group> | |
| 1142 | - <field> | |
| 1143 | - <name>lp</name> | |
| 1144 | - </field> | |
| 1145 | - </group> | |
| 1146 | - <fields> | |
| 1147 | - <field> | |
| 1148 | - <field_name>all_content</field_name> | |
| 1149 | - <key_value>1</key_value> | |
| 1150 | - <target_name>fcno1</target_name> | |
| 1151 | - <target_type>String</target_type> | |
| 1152 | - <target_format/> | |
| 1153 | - <target_length>-1</target_length> | |
| 1154 | - <target_precision>-1</target_precision> | |
| 1155 | - <target_decimal_symbol/> | |
| 1156 | - <target_grouping_symbol/> | |
| 1157 | - <target_currency_symbol/> | |
| 1158 | - <target_null_string/> | |
| 1159 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1160 | - </field> | |
| 1161 | - <field> | |
| 1162 | - <field_name>all_content</field_name> | |
| 1163 | - <key_value>2</key_value> | |
| 1164 | - <target_name>fcno2</target_name> | |
| 1165 | - <target_type>String</target_type> | |
| 1166 | - <target_format/> | |
| 1167 | - <target_length>-1</target_length> | |
| 1168 | - <target_precision>-1</target_precision> | |
| 1169 | - <target_decimal_symbol/> | |
| 1170 | - <target_grouping_symbol/> | |
| 1171 | - <target_currency_symbol/> | |
| 1172 | - <target_null_string/> | |
| 1173 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1174 | - </field> | |
| 1175 | - <field> | |
| 1176 | - <field_name>all_content</field_name> | |
| 1177 | - <key_value>3</key_value> | |
| 1178 | - <target_name>fcno3</target_name> | |
| 1179 | - <target_type>String</target_type> | |
| 1180 | - <target_format/> | |
| 1181 | - <target_length>-1</target_length> | |
| 1182 | - <target_precision>-1</target_precision> | |
| 1183 | - <target_decimal_symbol/> | |
| 1184 | - <target_grouping_symbol/> | |
| 1185 | - <target_currency_symbol/> | |
| 1186 | - <target_null_string/> | |
| 1187 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1188 | - </field> | |
| 1189 | - <field> | |
| 1190 | - <field_name>all_content</field_name> | |
| 1191 | - <key_value>4</key_value> | |
| 1192 | - <target_name>fcno4</target_name> | |
| 1193 | - <target_type>String</target_type> | |
| 1194 | - <target_format/> | |
| 1195 | - <target_length>-1</target_length> | |
| 1196 | - <target_precision>-1</target_precision> | |
| 1197 | - <target_decimal_symbol/> | |
| 1198 | - <target_grouping_symbol/> | |
| 1199 | - <target_currency_symbol/> | |
| 1200 | - <target_null_string/> | |
| 1201 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1202 | - </field> | |
| 1203 | - <field> | |
| 1204 | - <field_name>all_content</field_name> | |
| 1205 | - <key_value>5</key_value> | |
| 1206 | - <target_name>fcno5</target_name> | |
| 1207 | - <target_type>String</target_type> | |
| 1208 | - <target_format/> | |
| 1209 | - <target_length>-1</target_length> | |
| 1210 | - <target_precision>-1</target_precision> | |
| 1211 | - <target_decimal_symbol/> | |
| 1212 | - <target_grouping_symbol/> | |
| 1213 | - <target_currency_symbol/> | |
| 1214 | - <target_null_string/> | |
| 1215 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1216 | - </field> | |
| 1217 | - <field> | |
| 1218 | - <field_name>all_content</field_name> | |
| 1219 | - <key_value>6</key_value> | |
| 1220 | - <target_name>fcno6</target_name> | |
| 1221 | - <target_type>String</target_type> | |
| 1222 | - <target_format/> | |
| 1223 | - <target_length>-1</target_length> | |
| 1224 | - <target_precision>-1</target_precision> | |
| 1225 | - <target_decimal_symbol/> | |
| 1226 | - <target_grouping_symbol/> | |
| 1227 | - <target_currency_symbol/> | |
| 1228 | - <target_null_string/> | |
| 1229 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1230 | - </field> | |
| 1231 | - <field> | |
| 1232 | - <field_name>all_content</field_name> | |
| 1233 | - <key_value>7</key_value> | |
| 1234 | - <target_name>fcno7</target_name> | |
| 1235 | - <target_type>String</target_type> | |
| 1236 | - <target_format/> | |
| 1237 | - <target_length>-1</target_length> | |
| 1238 | - <target_precision>-1</target_precision> | |
| 1239 | - <target_decimal_symbol/> | |
| 1240 | - <target_grouping_symbol/> | |
| 1241 | - <target_currency_symbol/> | |
| 1242 | - <target_null_string/> | |
| 1243 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1244 | - </field> | |
| 1245 | - <field> | |
| 1246 | - <field_name>all_content</field_name> | |
| 1247 | - <key_value>8</key_value> | |
| 1248 | - <target_name>fcno8</target_name> | |
| 1249 | - <target_type>String</target_type> | |
| 1250 | - <target_format/> | |
| 1251 | - <target_length>-1</target_length> | |
| 1252 | - <target_precision>-1</target_precision> | |
| 1253 | - <target_decimal_symbol/> | |
| 1254 | - <target_grouping_symbol/> | |
| 1255 | - <target_currency_symbol/> | |
| 1256 | - <target_null_string/> | |
| 1257 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1258 | - </field> | |
| 1259 | - <field> | |
| 1260 | - <field_name>all_content</field_name> | |
| 1261 | - <key_value>9</key_value> | |
| 1262 | - <target_name>fcno9</target_name> | |
| 1263 | - <target_type>String</target_type> | |
| 1264 | - <target_format/> | |
| 1265 | - <target_length>-1</target_length> | |
| 1266 | - <target_precision>-1</target_precision> | |
| 1267 | - <target_decimal_symbol/> | |
| 1268 | - <target_grouping_symbol/> | |
| 1269 | - <target_currency_symbol/> | |
| 1270 | - <target_null_string/> | |
| 1271 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1272 | - </field> | |
| 1273 | - <field> | |
| 1274 | - <field_name>all_content</field_name> | |
| 1275 | - <key_value>10</key_value> | |
| 1276 | - <target_name>fcno10</target_name> | |
| 1277 | - <target_type>String</target_type> | |
| 1278 | - <target_format/> | |
| 1279 | - <target_length>-1</target_length> | |
| 1280 | - <target_precision>-1</target_precision> | |
| 1281 | - <target_decimal_symbol/> | |
| 1282 | - <target_grouping_symbol/> | |
| 1283 | - <target_currency_symbol/> | |
| 1284 | - <target_null_string/> | |
| 1285 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1286 | - </field> | |
| 1287 | - <field> | |
| 1288 | - <field_name>all_content</field_name> | |
| 1289 | - <key_value>11</key_value> | |
| 1290 | - <target_name>fcno11</target_name> | |
| 1291 | - <target_type>String</target_type> | |
| 1292 | - <target_format/> | |
| 1293 | - <target_length>-1</target_length> | |
| 1294 | - <target_precision>-1</target_precision> | |
| 1295 | - <target_decimal_symbol/> | |
| 1296 | - <target_grouping_symbol/> | |
| 1297 | - <target_currency_symbol/> | |
| 1298 | - <target_null_string/> | |
| 1299 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1300 | - </field> | |
| 1301 | - <field> | |
| 1302 | - <field_name>all_content</field_name> | |
| 1303 | - <key_value>12</key_value> | |
| 1304 | - <target_name>fcno12</target_name> | |
| 1305 | - <target_type>String</target_type> | |
| 1306 | - <target_format/> | |
| 1307 | - <target_length>-1</target_length> | |
| 1308 | - <target_precision>-1</target_precision> | |
| 1309 | - <target_decimal_symbol/> | |
| 1310 | - <target_grouping_symbol/> | |
| 1311 | - <target_currency_symbol/> | |
| 1312 | - <target_null_string/> | |
| 1313 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1314 | - </field> | |
| 1315 | - <field> | |
| 1316 | - <field_name>all_content</field_name> | |
| 1317 | - <key_value>13</key_value> | |
| 1318 | - <target_name>fcno13</target_name> | |
| 1319 | - <target_type>String</target_type> | |
| 1320 | - <target_format/> | |
| 1321 | - <target_length>-1</target_length> | |
| 1322 | - <target_precision>-1</target_precision> | |
| 1323 | - <target_decimal_symbol/> | |
| 1324 | - <target_grouping_symbol/> | |
| 1325 | - <target_currency_symbol/> | |
| 1326 | - <target_null_string/> | |
| 1327 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1328 | - </field> | |
| 1329 | - <field> | |
| 1330 | - <field_name>all_content</field_name> | |
| 1331 | - <key_value>14</key_value> | |
| 1332 | - <target_name>fcno14</target_name> | |
| 1333 | - <target_type>String</target_type> | |
| 1334 | - <target_format/> | |
| 1335 | - <target_length>-1</target_length> | |
| 1336 | - <target_precision>-1</target_precision> | |
| 1337 | - <target_decimal_symbol/> | |
| 1338 | - <target_grouping_symbol/> | |
| 1339 | - <target_currency_symbol/> | |
| 1340 | - <target_null_string/> | |
| 1341 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1342 | - </field> | |
| 1343 | - <field> | |
| 1344 | - <field_name>all_content</field_name> | |
| 1345 | - <key_value>15</key_value> | |
| 1346 | - <target_name>fcno15</target_name> | |
| 1347 | - <target_type>String</target_type> | |
| 1348 | - <target_format/> | |
| 1349 | - <target_length>-1</target_length> | |
| 1350 | - <target_precision>-1</target_precision> | |
| 1351 | - <target_decimal_symbol/> | |
| 1352 | - <target_grouping_symbol/> | |
| 1353 | - <target_currency_symbol/> | |
| 1354 | - <target_null_string/> | |
| 1355 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1356 | - </field> | |
| 1357 | - <field> | |
| 1358 | - <field_name>all_content</field_name> | |
| 1359 | - <key_value>16</key_value> | |
| 1360 | - <target_name>fcno16</target_name> | |
| 1361 | - <target_type>String</target_type> | |
| 1362 | - <target_format/> | |
| 1363 | - <target_length>-1</target_length> | |
| 1364 | - <target_precision>-1</target_precision> | |
| 1365 | - <target_decimal_symbol/> | |
| 1366 | - <target_grouping_symbol/> | |
| 1367 | - <target_currency_symbol/> | |
| 1368 | - <target_null_string/> | |
| 1369 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1370 | - </field> | |
| 1371 | - <field> | |
| 1372 | - <field_name>all_content</field_name> | |
| 1373 | - <key_value>17</key_value> | |
| 1374 | - <target_name>fcno17</target_name> | |
| 1375 | - <target_type>String</target_type> | |
| 1376 | - <target_format/> | |
| 1377 | - <target_length>-1</target_length> | |
| 1378 | - <target_precision>-1</target_precision> | |
| 1379 | - <target_decimal_symbol/> | |
| 1380 | - <target_grouping_symbol/> | |
| 1381 | - <target_currency_symbol/> | |
| 1382 | - <target_null_string/> | |
| 1383 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1384 | - </field> | |
| 1385 | - <field> | |
| 1386 | - <field_name>all_content</field_name> | |
| 1387 | - <key_value>18</key_value> | |
| 1388 | - <target_name>fcno18</target_name> | |
| 1389 | - <target_type>String</target_type> | |
| 1390 | - <target_format/> | |
| 1391 | - <target_length>-1</target_length> | |
| 1392 | - <target_precision>-1</target_precision> | |
| 1393 | - <target_decimal_symbol/> | |
| 1394 | - <target_grouping_symbol/> | |
| 1395 | - <target_currency_symbol/> | |
| 1396 | - <target_null_string/> | |
| 1397 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1398 | - </field> | |
| 1399 | - <field> | |
| 1400 | - <field_name>all_content</field_name> | |
| 1401 | - <key_value>19</key_value> | |
| 1402 | - <target_name>fcno19</target_name> | |
| 1403 | - <target_type>String</target_type> | |
| 1404 | - <target_format/> | |
| 1405 | - <target_length>-1</target_length> | |
| 1406 | - <target_precision>-1</target_precision> | |
| 1407 | - <target_decimal_symbol/> | |
| 1408 | - <target_grouping_symbol/> | |
| 1409 | - <target_currency_symbol/> | |
| 1410 | - <target_null_string/> | |
| 1411 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1412 | - </field> | |
| 1413 | - <field> | |
| 1414 | - <field_name>all_content</field_name> | |
| 1415 | - <key_value>20</key_value> | |
| 1416 | - <target_name>fcno20</target_name> | |
| 1417 | - <target_type>String</target_type> | |
| 1418 | - <target_format/> | |
| 1419 | - <target_length>-1</target_length> | |
| 1420 | - <target_precision>-1</target_precision> | |
| 1421 | - <target_decimal_symbol/> | |
| 1422 | - <target_grouping_symbol/> | |
| 1423 | - <target_currency_symbol/> | |
| 1424 | - <target_null_string/> | |
| 1425 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1426 | - </field> | |
| 1427 | - <field> | |
| 1428 | - <field_name>all_content</field_name> | |
| 1429 | - <key_value>21</key_value> | |
| 1430 | - <target_name>fcno21</target_name> | |
| 1431 | - <target_type>String</target_type> | |
| 1432 | - <target_format/> | |
| 1433 | - <target_length>-1</target_length> | |
| 1434 | - <target_precision>-1</target_precision> | |
| 1435 | - <target_decimal_symbol/> | |
| 1436 | - <target_grouping_symbol/> | |
| 1437 | - <target_currency_symbol/> | |
| 1438 | - <target_null_string/> | |
| 1439 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1440 | - </field> | |
| 1441 | - <field> | |
| 1442 | - <field_name>all_content</field_name> | |
| 1443 | - <key_value>22</key_value> | |
| 1444 | - <target_name>fcno22</target_name> | |
| 1445 | - <target_type>String</target_type> | |
| 1446 | - <target_format/> | |
| 1447 | - <target_length>-1</target_length> | |
| 1448 | - <target_precision>-1</target_precision> | |
| 1449 | - <target_decimal_symbol/> | |
| 1450 | - <target_grouping_symbol/> | |
| 1451 | - <target_currency_symbol/> | |
| 1452 | - <target_null_string/> | |
| 1453 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1454 | - </field> | |
| 1455 | - <field> | |
| 1456 | - <field_name>all_content</field_name> | |
| 1457 | - <key_value>23</key_value> | |
| 1458 | - <target_name>fcno23</target_name> | |
| 1459 | - <target_type>String</target_type> | |
| 1460 | - <target_format/> | |
| 1461 | - <target_length>-1</target_length> | |
| 1462 | - <target_precision>-1</target_precision> | |
| 1463 | - <target_decimal_symbol/> | |
| 1464 | - <target_grouping_symbol/> | |
| 1465 | - <target_currency_symbol/> | |
| 1466 | - <target_null_string/> | |
| 1467 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1468 | - </field> | |
| 1469 | - <field> | |
| 1470 | - <field_name>all_content</field_name> | |
| 1471 | - <key_value>24</key_value> | |
| 1472 | - <target_name>fcno24</target_name> | |
| 1473 | - <target_type>String</target_type> | |
| 1474 | - <target_format/> | |
| 1475 | - <target_length>-1</target_length> | |
| 1476 | - <target_precision>-1</target_precision> | |
| 1477 | - <target_decimal_symbol/> | |
| 1478 | - <target_grouping_symbol/> | |
| 1479 | - <target_currency_symbol/> | |
| 1480 | - <target_null_string/> | |
| 1481 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1482 | - </field> | |
| 1483 | - <field> | |
| 1484 | - <field_name>all_content</field_name> | |
| 1485 | - <key_value>25</key_value> | |
| 1486 | - <target_name>fcno25</target_name> | |
| 1487 | - <target_type>String</target_type> | |
| 1488 | - <target_format/> | |
| 1489 | - <target_length>-1</target_length> | |
| 1490 | - <target_precision>-1</target_precision> | |
| 1491 | - <target_decimal_symbol/> | |
| 1492 | - <target_grouping_symbol/> | |
| 1493 | - <target_currency_symbol/> | |
| 1494 | - <target_null_string/> | |
| 1495 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1496 | - </field> | |
| 1497 | - <field> | |
| 1498 | - <field_name>all_content</field_name> | |
| 1499 | - <key_value>26</key_value> | |
| 1500 | - <target_name>fcno26</target_name> | |
| 1501 | - <target_type>String</target_type> | |
| 1502 | - <target_format/> | |
| 1503 | - <target_length>-1</target_length> | |
| 1504 | - <target_precision>-1</target_precision> | |
| 1505 | - <target_decimal_symbol/> | |
| 1506 | - <target_grouping_symbol/> | |
| 1507 | - <target_currency_symbol/> | |
| 1508 | - <target_null_string/> | |
| 1509 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1510 | - </field> | |
| 1511 | - <field> | |
| 1512 | - <field_name>all_content</field_name> | |
| 1513 | - <key_value>27</key_value> | |
| 1514 | - <target_name>fcno27</target_name> | |
| 1515 | - <target_type>String</target_type> | |
| 1516 | - <target_format/> | |
| 1517 | - <target_length>-1</target_length> | |
| 1518 | - <target_precision>-1</target_precision> | |
| 1519 | - <target_decimal_symbol/> | |
| 1520 | - <target_grouping_symbol/> | |
| 1521 | - <target_currency_symbol/> | |
| 1522 | - <target_null_string/> | |
| 1523 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1524 | - </field> | |
| 1525 | - <field> | |
| 1526 | - <field_name>all_content</field_name> | |
| 1527 | - <key_value>28</key_value> | |
| 1528 | - <target_name>fcno28</target_name> | |
| 1529 | - <target_type>String</target_type> | |
| 1530 | - <target_format/> | |
| 1531 | - <target_length>-1</target_length> | |
| 1532 | - <target_precision>-1</target_precision> | |
| 1533 | - <target_decimal_symbol/> | |
| 1534 | - <target_grouping_symbol/> | |
| 1535 | - <target_currency_symbol/> | |
| 1536 | - <target_null_string/> | |
| 1537 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1538 | - </field> | |
| 1539 | - <field> | |
| 1540 | - <field_name>all_content</field_name> | |
| 1541 | - <key_value>29</key_value> | |
| 1542 | - <target_name>fcno29</target_name> | |
| 1543 | - <target_type>String</target_type> | |
| 1544 | - <target_format/> | |
| 1545 | - <target_length>-1</target_length> | |
| 1546 | - <target_precision>-1</target_precision> | |
| 1547 | - <target_decimal_symbol/> | |
| 1548 | - <target_grouping_symbol/> | |
| 1549 | - <target_currency_symbol/> | |
| 1550 | - <target_null_string/> | |
| 1551 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1552 | - </field> | |
| 1553 | - <field> | |
| 1554 | - <field_name>all_content</field_name> | |
| 1555 | - <key_value>30</key_value> | |
| 1556 | - <target_name>fcno30</target_name> | |
| 1557 | - <target_type>String</target_type> | |
| 1558 | - <target_format/> | |
| 1559 | - <target_length>-1</target_length> | |
| 1560 | - <target_precision>-1</target_precision> | |
| 1561 | - <target_decimal_symbol/> | |
| 1562 | - <target_grouping_symbol/> | |
| 1563 | - <target_currency_symbol/> | |
| 1564 | - <target_null_string/> | |
| 1565 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1566 | - </field> | |
| 1567 | - <field> | |
| 1568 | - <field_name>all_content</field_name> | |
| 1569 | - <key_value>31</key_value> | |
| 1570 | - <target_name>fcno31</target_name> | |
| 1571 | - <target_type>String</target_type> | |
| 1572 | - <target_format/> | |
| 1573 | - <target_length>-1</target_length> | |
| 1574 | - <target_precision>-1</target_precision> | |
| 1575 | - <target_decimal_symbol/> | |
| 1576 | - <target_grouping_symbol/> | |
| 1577 | - <target_currency_symbol/> | |
| 1578 | - <target_null_string/> | |
| 1579 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1580 | - </field> | |
| 1581 | - <field> | |
| 1582 | - <field_name>all_content</field_name> | |
| 1583 | - <key_value>32</key_value> | |
| 1584 | - <target_name>fcno32</target_name> | |
| 1585 | - <target_type>String</target_type> | |
| 1586 | - <target_format/> | |
| 1587 | - <target_length>-1</target_length> | |
| 1588 | - <target_precision>-1</target_precision> | |
| 1589 | - <target_decimal_symbol/> | |
| 1590 | - <target_grouping_symbol/> | |
| 1591 | - <target_currency_symbol/> | |
| 1592 | - <target_null_string/> | |
| 1593 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1594 | - </field> | |
| 1595 | - <field> | |
| 1596 | - <field_name>all_content</field_name> | |
| 1597 | - <key_value>33</key_value> | |
| 1598 | - <target_name>fcno33</target_name> | |
| 1599 | - <target_type>String</target_type> | |
| 1600 | - <target_format/> | |
| 1601 | - <target_length>-1</target_length> | |
| 1602 | - <target_precision>-1</target_precision> | |
| 1603 | - <target_decimal_symbol/> | |
| 1604 | - <target_grouping_symbol/> | |
| 1605 | - <target_currency_symbol/> | |
| 1606 | - <target_null_string/> | |
| 1607 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1608 | - </field> | |
| 1609 | - <field> | |
| 1610 | - <field_name>all_content</field_name> | |
| 1611 | - <key_value>34</key_value> | |
| 1612 | - <target_name>fcno34</target_name> | |
| 1613 | - <target_type>String</target_type> | |
| 1614 | - <target_format/> | |
| 1615 | - <target_length>-1</target_length> | |
| 1616 | - <target_precision>-1</target_precision> | |
| 1617 | - <target_decimal_symbol/> | |
| 1618 | - <target_grouping_symbol/> | |
| 1619 | - <target_currency_symbol/> | |
| 1620 | - <target_null_string/> | |
| 1621 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1622 | - </field> | |
| 1623 | - <field> | |
| 1624 | - <field_name>all_content</field_name> | |
| 1625 | - <key_value>35</key_value> | |
| 1626 | - <target_name>fcno35</target_name> | |
| 1627 | - <target_type>String</target_type> | |
| 1628 | - <target_format/> | |
| 1629 | - <target_length>-1</target_length> | |
| 1630 | - <target_precision>-1</target_precision> | |
| 1631 | - <target_decimal_symbol/> | |
| 1632 | - <target_grouping_symbol/> | |
| 1633 | - <target_currency_symbol/> | |
| 1634 | - <target_null_string/> | |
| 1635 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1636 | - </field> | |
| 1637 | - <field> | |
| 1638 | - <field_name>all_content</field_name> | |
| 1639 | - <key_value>36</key_value> | |
| 1640 | - <target_name>fcno36</target_name> | |
| 1641 | - <target_type>String</target_type> | |
| 1642 | - <target_format/> | |
| 1643 | - <target_length>-1</target_length> | |
| 1644 | - <target_precision>-1</target_precision> | |
| 1645 | - <target_decimal_symbol/> | |
| 1646 | - <target_grouping_symbol/> | |
| 1647 | - <target_currency_symbol/> | |
| 1648 | - <target_null_string/> | |
| 1649 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1650 | - </field> | |
| 1651 | - <field> | |
| 1652 | - <field_name>all_content</field_name> | |
| 1653 | - <key_value>37</key_value> | |
| 1654 | - <target_name>fcno37</target_name> | |
| 1655 | - <target_type>String</target_type> | |
| 1656 | - <target_format/> | |
| 1657 | - <target_length>-1</target_length> | |
| 1658 | - <target_precision>-1</target_precision> | |
| 1659 | - <target_decimal_symbol/> | |
| 1660 | - <target_grouping_symbol/> | |
| 1661 | - <target_currency_symbol/> | |
| 1662 | - <target_null_string/> | |
| 1663 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1664 | - </field> | |
| 1665 | - <field> | |
| 1666 | - <field_name>all_content</field_name> | |
| 1667 | - <key_value>38</key_value> | |
| 1668 | - <target_name>fcno38</target_name> | |
| 1669 | - <target_type>String</target_type> | |
| 1670 | - <target_format/> | |
| 1671 | - <target_length>-1</target_length> | |
| 1672 | - <target_precision>-1</target_precision> | |
| 1673 | - <target_decimal_symbol/> | |
| 1674 | - <target_grouping_symbol/> | |
| 1675 | - <target_currency_symbol/> | |
| 1676 | - <target_null_string/> | |
| 1677 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1678 | - </field> | |
| 1679 | - <field> | |
| 1680 | - <field_name>all_content</field_name> | |
| 1681 | - <key_value>39</key_value> | |
| 1682 | - <target_name>fcno39</target_name> | |
| 1683 | - <target_type>String</target_type> | |
| 1684 | - <target_format/> | |
| 1685 | - <target_length>-1</target_length> | |
| 1686 | - <target_precision>-1</target_precision> | |
| 1687 | - <target_decimal_symbol/> | |
| 1688 | - <target_grouping_symbol/> | |
| 1689 | - <target_currency_symbol/> | |
| 1690 | - <target_null_string/> | |
| 1691 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1692 | - </field> | |
| 1693 | - <field> | |
| 1694 | - <field_name>all_content</field_name> | |
| 1695 | - <key_value>40</key_value> | |
| 1696 | - <target_name>fcno40</target_name> | |
| 1697 | - <target_type>String</target_type> | |
| 1698 | - <target_format/> | |
| 1699 | - <target_length>-1</target_length> | |
| 1700 | - <target_precision>-1</target_precision> | |
| 1701 | - <target_decimal_symbol/> | |
| 1702 | - <target_grouping_symbol/> | |
| 1703 | - <target_currency_symbol/> | |
| 1704 | - <target_null_string/> | |
| 1705 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1706 | - </field> | |
| 1707 | - <field> | |
| 1708 | - <field_name>all_content</field_name> | |
| 1709 | - <key_value>41</key_value> | |
| 1710 | - <target_name>fcno41</target_name> | |
| 1711 | - <target_type>String</target_type> | |
| 1712 | - <target_format/> | |
| 1713 | - <target_length>-1</target_length> | |
| 1714 | - <target_precision>-1</target_precision> | |
| 1715 | - <target_decimal_symbol/> | |
| 1716 | - <target_grouping_symbol/> | |
| 1717 | - <target_currency_symbol/> | |
| 1718 | - <target_null_string/> | |
| 1719 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1720 | - </field> | |
| 1721 | - <field> | |
| 1722 | - <field_name>all_content</field_name> | |
| 1723 | - <key_value>42</key_value> | |
| 1724 | - <target_name>fcno42</target_name> | |
| 1725 | - <target_type>String</target_type> | |
| 1726 | - <target_format/> | |
| 1727 | - <target_length>-1</target_length> | |
| 1728 | - <target_precision>-1</target_precision> | |
| 1729 | - <target_decimal_symbol/> | |
| 1730 | - <target_grouping_symbol/> | |
| 1731 | - <target_currency_symbol/> | |
| 1732 | - <target_null_string/> | |
| 1733 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1734 | - </field> | |
| 1735 | - <field> | |
| 1736 | - <field_name>all_content</field_name> | |
| 1737 | - <key_value>43</key_value> | |
| 1738 | - <target_name>fcno43</target_name> | |
| 1739 | - <target_type>String</target_type> | |
| 1740 | - <target_format/> | |
| 1741 | - <target_length>-1</target_length> | |
| 1742 | - <target_precision>-1</target_precision> | |
| 1743 | - <target_decimal_symbol/> | |
| 1744 | - <target_grouping_symbol/> | |
| 1745 | - <target_currency_symbol/> | |
| 1746 | - <target_null_string/> | |
| 1747 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1748 | - </field> | |
| 1749 | - <field> | |
| 1750 | - <field_name>all_content</field_name> | |
| 1751 | - <key_value>44</key_value> | |
| 1752 | - <target_name>fcno44</target_name> | |
| 1753 | - <target_type>String</target_type> | |
| 1754 | - <target_format/> | |
| 1755 | - <target_length>-1</target_length> | |
| 1756 | - <target_precision>-1</target_precision> | |
| 1757 | - <target_decimal_symbol/> | |
| 1758 | - <target_grouping_symbol/> | |
| 1759 | - <target_currency_symbol/> | |
| 1760 | - <target_null_string/> | |
| 1761 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1762 | - </field> | |
| 1763 | - <field> | |
| 1764 | - <field_name>all_content</field_name> | |
| 1765 | - <key_value>45</key_value> | |
| 1766 | - <target_name>fcno45</target_name> | |
| 1767 | - <target_type>String</target_type> | |
| 1768 | - <target_format/> | |
| 1769 | - <target_length>-1</target_length> | |
| 1770 | - <target_precision>-1</target_precision> | |
| 1771 | - <target_decimal_symbol/> | |
| 1772 | - <target_grouping_symbol/> | |
| 1773 | - <target_currency_symbol/> | |
| 1774 | - <target_null_string/> | |
| 1775 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1776 | - </field> | |
| 1777 | - <field> | |
| 1778 | - <field_name>all_content</field_name> | |
| 1779 | - <key_value>46</key_value> | |
| 1780 | - <target_name>fcno46</target_name> | |
| 1781 | - <target_type>String</target_type> | |
| 1782 | - <target_format/> | |
| 1783 | - <target_length>-1</target_length> | |
| 1784 | - <target_precision>-1</target_precision> | |
| 1785 | - <target_decimal_symbol/> | |
| 1786 | - <target_grouping_symbol/> | |
| 1787 | - <target_currency_symbol/> | |
| 1788 | - <target_null_string/> | |
| 1789 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1790 | - </field> | |
| 1791 | - <field> | |
| 1792 | - <field_name>all_content</field_name> | |
| 1793 | - <key_value>47</key_value> | |
| 1794 | - <target_name>fcno47</target_name> | |
| 1795 | - <target_type>String</target_type> | |
| 1796 | - <target_format/> | |
| 1797 | - <target_length>-1</target_length> | |
| 1798 | - <target_precision>-1</target_precision> | |
| 1799 | - <target_decimal_symbol/> | |
| 1800 | - <target_grouping_symbol/> | |
| 1801 | - <target_currency_symbol/> | |
| 1802 | - <target_null_string/> | |
| 1803 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1804 | - </field> | |
| 1805 | - <field> | |
| 1806 | - <field_name>all_content</field_name> | |
| 1807 | - <key_value>48</key_value> | |
| 1808 | - <target_name>fcno48</target_name> | |
| 1809 | - <target_type>String</target_type> | |
| 1810 | - <target_format/> | |
| 1811 | - <target_length>-1</target_length> | |
| 1812 | - <target_precision>-1</target_precision> | |
| 1813 | - <target_decimal_symbol/> | |
| 1814 | - <target_grouping_symbol/> | |
| 1815 | - <target_currency_symbol/> | |
| 1816 | - <target_null_string/> | |
| 1817 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1818 | - </field> | |
| 1819 | - <field> | |
| 1820 | - <field_name>all_content</field_name> | |
| 1821 | - <key_value>49</key_value> | |
| 1822 | - <target_name>fcno49</target_name> | |
| 1823 | - <target_type>String</target_type> | |
| 1824 | - <target_format/> | |
| 1825 | - <target_length>-1</target_length> | |
| 1826 | - <target_precision>-1</target_precision> | |
| 1827 | - <target_decimal_symbol/> | |
| 1828 | - <target_grouping_symbol/> | |
| 1829 | - <target_currency_symbol/> | |
| 1830 | - <target_null_string/> | |
| 1831 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1832 | - </field> | |
| 1833 | - <field> | |
| 1834 | - <field_name>all_content</field_name> | |
| 1835 | - <key_value>50</key_value> | |
| 1836 | - <target_name>fcno50</target_name> | |
| 1837 | - <target_type>String</target_type> | |
| 1838 | - <target_format/> | |
| 1839 | - <target_length>-1</target_length> | |
| 1840 | - <target_precision>-1</target_precision> | |
| 1841 | - <target_decimal_symbol/> | |
| 1842 | - <target_grouping_symbol/> | |
| 1843 | - <target_currency_symbol/> | |
| 1844 | - <target_null_string/> | |
| 1845 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1846 | - </field> | |
| 1847 | - <field> | |
| 1848 | - <field_name>all_content</field_name> | |
| 1849 | - <key_value>51</key_value> | |
| 1850 | - <target_name>fcno51</target_name> | |
| 1851 | - <target_type>String</target_type> | |
| 1852 | - <target_format/> | |
| 1853 | - <target_length>-1</target_length> | |
| 1854 | - <target_precision>-1</target_precision> | |
| 1855 | - <target_decimal_symbol/> | |
| 1856 | - <target_grouping_symbol/> | |
| 1857 | - <target_currency_symbol/> | |
| 1858 | - <target_null_string/> | |
| 1859 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1860 | - </field> | |
| 1861 | - <field> | |
| 1862 | - <field_name>all_content</field_name> | |
| 1863 | - <key_value>52</key_value> | |
| 1864 | - <target_name>fcno52</target_name> | |
| 1865 | - <target_type>String</target_type> | |
| 1866 | - <target_format/> | |
| 1867 | - <target_length>-1</target_length> | |
| 1868 | - <target_precision>-1</target_precision> | |
| 1869 | - <target_decimal_symbol/> | |
| 1870 | - <target_grouping_symbol/> | |
| 1871 | - <target_currency_symbol/> | |
| 1872 | - <target_null_string/> | |
| 1873 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1874 | - </field> | |
| 1875 | - <field> | |
| 1876 | - <field_name>all_content</field_name> | |
| 1877 | - <key_value>53</key_value> | |
| 1878 | - <target_name>fcno53</target_name> | |
| 1879 | - <target_type>String</target_type> | |
| 1880 | - <target_format/> | |
| 1881 | - <target_length>-1</target_length> | |
| 1882 | - <target_precision>-1</target_precision> | |
| 1883 | - <target_decimal_symbol/> | |
| 1884 | - <target_grouping_symbol/> | |
| 1885 | - <target_currency_symbol/> | |
| 1886 | - <target_null_string/> | |
| 1887 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1888 | - </field> | |
| 1889 | - <field> | |
| 1890 | - <field_name>all_content</field_name> | |
| 1891 | - <key_value>54</key_value> | |
| 1892 | - <target_name>fcno54</target_name> | |
| 1893 | - <target_type>String</target_type> | |
| 1894 | - <target_format/> | |
| 1895 | - <target_length>-1</target_length> | |
| 1896 | - <target_precision>-1</target_precision> | |
| 1897 | - <target_decimal_symbol/> | |
| 1898 | - <target_grouping_symbol/> | |
| 1899 | - <target_currency_symbol/> | |
| 1900 | - <target_null_string/> | |
| 1901 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1902 | - </field> | |
| 1903 | - <field> | |
| 1904 | - <field_name>all_content</field_name> | |
| 1905 | - <key_value>55</key_value> | |
| 1906 | - <target_name>fcno55</target_name> | |
| 1907 | - <target_type>String</target_type> | |
| 1908 | - <target_format/> | |
| 1909 | - <target_length>-1</target_length> | |
| 1910 | - <target_precision>-1</target_precision> | |
| 1911 | - <target_decimal_symbol/> | |
| 1912 | - <target_grouping_symbol/> | |
| 1913 | - <target_currency_symbol/> | |
| 1914 | - <target_null_string/> | |
| 1915 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1916 | - </field> | |
| 1917 | - <field> | |
| 1918 | - <field_name>all_content</field_name> | |
| 1919 | - <key_value>56</key_value> | |
| 1920 | - <target_name>fcno56</target_name> | |
| 1921 | - <target_type>String</target_type> | |
| 1922 | - <target_format/> | |
| 1923 | - <target_length>-1</target_length> | |
| 1924 | - <target_precision>-1</target_precision> | |
| 1925 | - <target_decimal_symbol/> | |
| 1926 | - <target_grouping_symbol/> | |
| 1927 | - <target_currency_symbol/> | |
| 1928 | - <target_null_string/> | |
| 1929 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1930 | - </field> | |
| 1931 | - <field> | |
| 1932 | - <field_name>all_content</field_name> | |
| 1933 | - <key_value>57</key_value> | |
| 1934 | - <target_name>fcno57</target_name> | |
| 1935 | - <target_type>String</target_type> | |
| 1936 | - <target_format/> | |
| 1937 | - <target_length>-1</target_length> | |
| 1938 | - <target_precision>-1</target_precision> | |
| 1939 | - <target_decimal_symbol/> | |
| 1940 | - <target_grouping_symbol/> | |
| 1941 | - <target_currency_symbol/> | |
| 1942 | - <target_null_string/> | |
| 1943 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1944 | - </field> | |
| 1945 | - <field> | |
| 1946 | - <field_name>all_content</field_name> | |
| 1947 | - <key_value>58</key_value> | |
| 1948 | - <target_name>fcno58</target_name> | |
| 1949 | - <target_type>String</target_type> | |
| 1950 | - <target_format/> | |
| 1951 | - <target_length>-1</target_length> | |
| 1952 | - <target_precision>-1</target_precision> | |
| 1953 | - <target_decimal_symbol/> | |
| 1954 | - <target_grouping_symbol/> | |
| 1955 | - <target_currency_symbol/> | |
| 1956 | - <target_null_string/> | |
| 1957 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1958 | - </field> | |
| 1959 | - <field> | |
| 1960 | - <field_name>all_content</field_name> | |
| 1961 | - <key_value>59</key_value> | |
| 1962 | - <target_name>fcno59</target_name> | |
| 1963 | - <target_type>String</target_type> | |
| 1964 | - <target_format/> | |
| 1965 | - <target_length>-1</target_length> | |
| 1966 | - <target_precision>-1</target_precision> | |
| 1967 | - <target_decimal_symbol/> | |
| 1968 | - <target_grouping_symbol/> | |
| 1969 | - <target_currency_symbol/> | |
| 1970 | - <target_null_string/> | |
| 1971 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1972 | - </field> | |
| 1973 | - <field> | |
| 1974 | - <field_name>all_content</field_name> | |
| 1975 | - <key_value>60</key_value> | |
| 1976 | - <target_name>fcno60</target_name> | |
| 1977 | - <target_type>String</target_type> | |
| 1978 | - <target_format/> | |
| 1979 | - <target_length>-1</target_length> | |
| 1980 | - <target_precision>-1</target_precision> | |
| 1981 | - <target_decimal_symbol/> | |
| 1982 | - <target_grouping_symbol/> | |
| 1983 | - <target_currency_symbol/> | |
| 1984 | - <target_null_string/> | |
| 1985 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1986 | - </field> | |
| 1987 | - <field> | |
| 1988 | - <field_name>all_content</field_name> | |
| 1989 | - <key_value>61</key_value> | |
| 1990 | - <target_name>fcno61</target_name> | |
| 1991 | - <target_type>String</target_type> | |
| 1992 | - <target_format/> | |
| 1993 | - <target_length>-1</target_length> | |
| 1994 | - <target_precision>-1</target_precision> | |
| 1995 | - <target_decimal_symbol/> | |
| 1996 | - <target_grouping_symbol/> | |
| 1997 | - <target_currency_symbol/> | |
| 1998 | - <target_null_string/> | |
| 1999 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2000 | - </field> | |
| 2001 | - <field> | |
| 2002 | - <field_name>all_content</field_name> | |
| 2003 | - <key_value>62</key_value> | |
| 2004 | - <target_name>fcno62</target_name> | |
| 2005 | - <target_type>String</target_type> | |
| 2006 | - <target_format/> | |
| 2007 | - <target_length>-1</target_length> | |
| 2008 | - <target_precision>-1</target_precision> | |
| 2009 | - <target_decimal_symbol/> | |
| 2010 | - <target_grouping_symbol/> | |
| 2011 | - <target_currency_symbol/> | |
| 2012 | - <target_null_string/> | |
| 2013 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2014 | - </field> | |
| 2015 | - <field> | |
| 2016 | - <field_name>all_content</field_name> | |
| 2017 | - <key_value>63</key_value> | |
| 2018 | - <target_name>fcno63</target_name> | |
| 2019 | - <target_type>String</target_type> | |
| 2020 | - <target_format/> | |
| 2021 | - <target_length>-1</target_length> | |
| 2022 | - <target_precision>-1</target_precision> | |
| 2023 | - <target_decimal_symbol/> | |
| 2024 | - <target_grouping_symbol/> | |
| 2025 | - <target_currency_symbol/> | |
| 2026 | - <target_null_string/> | |
| 2027 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2028 | - </field> | |
| 2029 | - <field> | |
| 2030 | - <field_name>all_content</field_name> | |
| 2031 | - <key_value>64</key_value> | |
| 2032 | - <target_name>fcno64</target_name> | |
| 2033 | - <target_type>String</target_type> | |
| 2034 | - <target_format/> | |
| 2035 | - <target_length>-1</target_length> | |
| 2036 | - <target_precision>-1</target_precision> | |
| 2037 | - <target_decimal_symbol/> | |
| 2038 | - <target_grouping_symbol/> | |
| 2039 | - <target_currency_symbol/> | |
| 2040 | - <target_null_string/> | |
| 2041 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2042 | - </field> | |
| 2043 | - <field> | |
| 2044 | - <field_name>all_content</field_name> | |
| 2045 | - <key_value>65</key_value> | |
| 2046 | - <target_name>fcno65</target_name> | |
| 2047 | - <target_type>String</target_type> | |
| 2048 | - <target_format/> | |
| 2049 | - <target_length>-1</target_length> | |
| 2050 | - <target_precision>-1</target_precision> | |
| 2051 | - <target_decimal_symbol/> | |
| 2052 | - <target_grouping_symbol/> | |
| 2053 | - <target_currency_symbol/> | |
| 2054 | - <target_null_string/> | |
| 2055 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2056 | - </field> | |
| 2057 | - <field> | |
| 2058 | - <field_name>all_content</field_name> | |
| 2059 | - <key_value>66</key_value> | |
| 2060 | - <target_name>fcno66</target_name> | |
| 2061 | - <target_type>String</target_type> | |
| 2062 | - <target_format/> | |
| 2063 | - <target_length>-1</target_length> | |
| 2064 | - <target_precision>-1</target_precision> | |
| 2065 | - <target_decimal_symbol/> | |
| 2066 | - <target_grouping_symbol/> | |
| 2067 | - <target_currency_symbol/> | |
| 2068 | - <target_null_string/> | |
| 2069 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2070 | - </field> | |
| 2071 | - <field> | |
| 2072 | - <field_name>all_content</field_name> | |
| 2073 | - <key_value>67</key_value> | |
| 2074 | - <target_name>fcno67</target_name> | |
| 2075 | - <target_type>String</target_type> | |
| 2076 | - <target_format/> | |
| 2077 | - <target_length>-1</target_length> | |
| 2078 | - <target_precision>-1</target_precision> | |
| 2079 | - <target_decimal_symbol/> | |
| 2080 | - <target_grouping_symbol/> | |
| 2081 | - <target_currency_symbol/> | |
| 2082 | - <target_null_string/> | |
| 2083 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2084 | - </field> | |
| 2085 | - <field> | |
| 2086 | - <field_name>all_content</field_name> | |
| 2087 | - <key_value>68</key_value> | |
| 2088 | - <target_name>fcno68</target_name> | |
| 2089 | - <target_type>String</target_type> | |
| 2090 | - <target_format/> | |
| 2091 | - <target_length>-1</target_length> | |
| 2092 | - <target_precision>-1</target_precision> | |
| 2093 | - <target_decimal_symbol/> | |
| 2094 | - <target_grouping_symbol/> | |
| 2095 | - <target_currency_symbol/> | |
| 2096 | - <target_null_string/> | |
| 2097 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2098 | - </field> | |
| 2099 | - <field> | |
| 2100 | - <field_name>all_content</field_name> | |
| 2101 | - <key_value>69</key_value> | |
| 2102 | - <target_name>fcno69</target_name> | |
| 2103 | - <target_type>String</target_type> | |
| 2104 | - <target_format/> | |
| 2105 | - <target_length>-1</target_length> | |
| 2106 | - <target_precision>-1</target_precision> | |
| 2107 | - <target_decimal_symbol/> | |
| 2108 | - <target_grouping_symbol/> | |
| 2109 | - <target_currency_symbol/> | |
| 2110 | - <target_null_string/> | |
| 2111 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2112 | - </field> | |
| 2113 | - <field> | |
| 2114 | - <field_name>all_content</field_name> | |
| 2115 | - <key_value>70</key_value> | |
| 2116 | - <target_name>fcno70</target_name> | |
| 2117 | - <target_type>String</target_type> | |
| 2118 | - <target_format/> | |
| 2119 | - <target_length>-1</target_length> | |
| 2120 | - <target_precision>-1</target_precision> | |
| 2121 | - <target_decimal_symbol/> | |
| 2122 | - <target_grouping_symbol/> | |
| 2123 | - <target_currency_symbol/> | |
| 2124 | - <target_null_string/> | |
| 2125 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2126 | - </field> | |
| 2127 | - <field> | |
| 2128 | - <field_name>all_content</field_name> | |
| 2129 | - <key_value>71</key_value> | |
| 2130 | - <target_name>fcno71</target_name> | |
| 2131 | - <target_type>String</target_type> | |
| 2132 | - <target_format/> | |
| 2133 | - <target_length>-1</target_length> | |
| 2134 | - <target_precision>-1</target_precision> | |
| 2135 | - <target_decimal_symbol/> | |
| 2136 | - <target_grouping_symbol/> | |
| 2137 | - <target_currency_symbol/> | |
| 2138 | - <target_null_string/> | |
| 2139 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2140 | - </field> | |
| 2141 | - <field> | |
| 2142 | - <field_name>all_content</field_name> | |
| 2143 | - <key_value>72</key_value> | |
| 2144 | - <target_name>fcno72</target_name> | |
| 2145 | - <target_type>String</target_type> | |
| 2146 | - <target_format/> | |
| 2147 | - <target_length>-1</target_length> | |
| 2148 | - <target_precision>-1</target_precision> | |
| 2149 | - <target_decimal_symbol/> | |
| 2150 | - <target_grouping_symbol/> | |
| 2151 | - <target_currency_symbol/> | |
| 2152 | - <target_null_string/> | |
| 2153 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2154 | - </field> | |
| 2155 | - <field> | |
| 2156 | - <field_name>all_content</field_name> | |
| 2157 | - <key_value>73</key_value> | |
| 2158 | - <target_name>fcno73</target_name> | |
| 2159 | - <target_type>String</target_type> | |
| 2160 | - <target_format/> | |
| 2161 | - <target_length>-1</target_length> | |
| 2162 | - <target_precision>-1</target_precision> | |
| 2163 | - <target_decimal_symbol/> | |
| 2164 | - <target_grouping_symbol/> | |
| 2165 | - <target_currency_symbol/> | |
| 2166 | - <target_null_string/> | |
| 2167 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2168 | - </field> | |
| 2169 | - <field> | |
| 2170 | - <field_name>all_content</field_name> | |
| 2171 | - <key_value>74</key_value> | |
| 2172 | - <target_name>fcno74</target_name> | |
| 2173 | - <target_type>String</target_type> | |
| 2174 | - <target_format/> | |
| 2175 | - <target_length>-1</target_length> | |
| 2176 | - <target_precision>-1</target_precision> | |
| 2177 | - <target_decimal_symbol/> | |
| 2178 | - <target_grouping_symbol/> | |
| 2179 | - <target_currency_symbol/> | |
| 2180 | - <target_null_string/> | |
| 2181 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2182 | - </field> | |
| 2183 | - <field> | |
| 2184 | - <field_name>all_content</field_name> | |
| 2185 | - <key_value>75</key_value> | |
| 2186 | - <target_name>fcno75</target_name> | |
| 2187 | - <target_type>String</target_type> | |
| 2188 | - <target_format/> | |
| 2189 | - <target_length>-1</target_length> | |
| 2190 | - <target_precision>-1</target_precision> | |
| 2191 | - <target_decimal_symbol/> | |
| 2192 | - <target_grouping_symbol/> | |
| 2193 | - <target_currency_symbol/> | |
| 2194 | - <target_null_string/> | |
| 2195 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2196 | - </field> | |
| 2197 | - <field> | |
| 2198 | - <field_name>all_content</field_name> | |
| 2199 | - <key_value>76</key_value> | |
| 2200 | - <target_name>fcno76</target_name> | |
| 2201 | - <target_type>String</target_type> | |
| 2202 | - <target_format/> | |
| 2203 | - <target_length>-1</target_length> | |
| 2204 | - <target_precision>-1</target_precision> | |
| 2205 | - <target_decimal_symbol/> | |
| 2206 | - <target_grouping_symbol/> | |
| 2207 | - <target_currency_symbol/> | |
| 2208 | - <target_null_string/> | |
| 2209 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2210 | - </field> | |
| 2211 | - <field> | |
| 2212 | - <field_name>all_content</field_name> | |
| 2213 | - <key_value>77</key_value> | |
| 2214 | - <target_name>fcno77</target_name> | |
| 2215 | - <target_type>String</target_type> | |
| 2216 | - <target_format/> | |
| 2217 | - <target_length>-1</target_length> | |
| 2218 | - <target_precision>-1</target_precision> | |
| 2219 | - <target_decimal_symbol/> | |
| 2220 | - <target_grouping_symbol/> | |
| 2221 | - <target_currency_symbol/> | |
| 2222 | - <target_null_string/> | |
| 2223 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2224 | - </field> | |
| 2225 | - <field> | |
| 2226 | - <field_name>all_content</field_name> | |
| 2227 | - <key_value>78</key_value> | |
| 2228 | - <target_name>fcno78</target_name> | |
| 2229 | - <target_type>String</target_type> | |
| 2230 | - <target_format/> | |
| 2231 | - <target_length>-1</target_length> | |
| 2232 | - <target_precision>-1</target_precision> | |
| 2233 | - <target_decimal_symbol/> | |
| 2234 | - <target_grouping_symbol/> | |
| 2235 | - <target_currency_symbol/> | |
| 2236 | - <target_null_string/> | |
| 2237 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2238 | - </field> | |
| 2239 | - <field> | |
| 2240 | - <field_name>all_content</field_name> | |
| 2241 | - <key_value>79</key_value> | |
| 2242 | - <target_name>fcno79</target_name> | |
| 2243 | - <target_type>String</target_type> | |
| 2244 | - <target_format/> | |
| 2245 | - <target_length>-1</target_length> | |
| 2246 | - <target_precision>-1</target_precision> | |
| 2247 | - <target_decimal_symbol/> | |
| 2248 | - <target_grouping_symbol/> | |
| 2249 | - <target_currency_symbol/> | |
| 2250 | - <target_null_string/> | |
| 2251 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2252 | - </field> | |
| 2253 | - <field> | |
| 2254 | - <field_name>all_content</field_name> | |
| 2255 | - <key_value>80</key_value> | |
| 2256 | - <target_name>fcno80</target_name> | |
| 2257 | - <target_type>String</target_type> | |
| 2258 | - <target_format/> | |
| 2259 | - <target_length>-1</target_length> | |
| 2260 | - <target_precision>-1</target_precision> | |
| 2261 | - <target_decimal_symbol/> | |
| 2262 | - <target_grouping_symbol/> | |
| 2263 | - <target_currency_symbol/> | |
| 2264 | - <target_null_string/> | |
| 2265 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2266 | - </field> | |
| 2267 | - <field> | |
| 2268 | - <field_name>all_content</field_name> | |
| 2269 | - <key_value>81</key_value> | |
| 2270 | - <target_name>fcno81</target_name> | |
| 2271 | - <target_type>String</target_type> | |
| 2272 | - <target_format/> | |
| 2273 | - <target_length>-1</target_length> | |
| 2274 | - <target_precision>-1</target_precision> | |
| 2275 | - <target_decimal_symbol/> | |
| 2276 | - <target_grouping_symbol/> | |
| 2277 | - <target_currency_symbol/> | |
| 2278 | - <target_null_string/> | |
| 2279 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2280 | - </field> | |
| 2281 | - <field> | |
| 2282 | - <field_name>all_content</field_name> | |
| 2283 | - <key_value>82</key_value> | |
| 2284 | - <target_name>fcno82</target_name> | |
| 2285 | - <target_type>String</target_type> | |
| 2286 | - <target_format/> | |
| 2287 | - <target_length>-1</target_length> | |
| 2288 | - <target_precision>-1</target_precision> | |
| 2289 | - <target_decimal_symbol/> | |
| 2290 | - <target_grouping_symbol/> | |
| 2291 | - <target_currency_symbol/> | |
| 2292 | - <target_null_string/> | |
| 2293 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2294 | - </field> | |
| 2295 | - <field> | |
| 2296 | - <field_name>all_content</field_name> | |
| 2297 | - <key_value>83</key_value> | |
| 2298 | - <target_name>fcno83</target_name> | |
| 2299 | - <target_type>String</target_type> | |
| 2300 | - <target_format/> | |
| 2301 | - <target_length>-1</target_length> | |
| 2302 | - <target_precision>-1</target_precision> | |
| 2303 | - <target_decimal_symbol/> | |
| 2304 | - <target_grouping_symbol/> | |
| 2305 | - <target_currency_symbol/> | |
| 2306 | - <target_null_string/> | |
| 2307 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2308 | - </field> | |
| 2309 | - <field> | |
| 2310 | - <field_name>all_content</field_name> | |
| 2311 | - <key_value>84</key_value> | |
| 2312 | - <target_name>fcno84</target_name> | |
| 2313 | - <target_type>String</target_type> | |
| 2314 | - <target_format/> | |
| 2315 | - <target_length>-1</target_length> | |
| 2316 | - <target_precision>-1</target_precision> | |
| 2317 | - <target_decimal_symbol/> | |
| 2318 | - <target_grouping_symbol/> | |
| 2319 | - <target_currency_symbol/> | |
| 2320 | - <target_null_string/> | |
| 2321 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2322 | - </field> | |
| 2323 | - <field> | |
| 2324 | - <field_name>all_content</field_name> | |
| 2325 | - <key_value>85</key_value> | |
| 2326 | - <target_name>fcno85</target_name> | |
| 2327 | - <target_type>String</target_type> | |
| 2328 | - <target_format/> | |
| 2329 | - <target_length>-1</target_length> | |
| 2330 | - <target_precision>-1</target_precision> | |
| 2331 | - <target_decimal_symbol/> | |
| 2332 | - <target_grouping_symbol/> | |
| 2333 | - <target_currency_symbol/> | |
| 2334 | - <target_null_string/> | |
| 2335 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2336 | - </field> | |
| 2337 | - <field> | |
| 2338 | - <field_name>all_content</field_name> | |
| 2339 | - <key_value>86</key_value> | |
| 2340 | - <target_name>fcno86</target_name> | |
| 2341 | - <target_type>String</target_type> | |
| 2342 | - <target_format/> | |
| 2343 | - <target_length>-1</target_length> | |
| 2344 | - <target_precision>-1</target_precision> | |
| 2345 | - <target_decimal_symbol/> | |
| 2346 | - <target_grouping_symbol/> | |
| 2347 | - <target_currency_symbol/> | |
| 2348 | - <target_null_string/> | |
| 2349 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2350 | - </field> | |
| 2351 | - <field> | |
| 2352 | - <field_name>all_content</field_name> | |
| 2353 | - <key_value>87</key_value> | |
| 2354 | - <target_name>fcno87</target_name> | |
| 2355 | - <target_type>String</target_type> | |
| 2356 | - <target_format/> | |
| 2357 | - <target_length>-1</target_length> | |
| 2358 | - <target_precision>-1</target_precision> | |
| 2359 | - <target_decimal_symbol/> | |
| 2360 | - <target_grouping_symbol/> | |
| 2361 | - <target_currency_symbol/> | |
| 2362 | - <target_null_string/> | |
| 2363 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2364 | - </field> | |
| 2365 | - <field> | |
| 2366 | - <field_name>all_content</field_name> | |
| 2367 | - <key_value>88</key_value> | |
| 2368 | - <target_name>fcno88</target_name> | |
| 2369 | - <target_type>String</target_type> | |
| 2370 | - <target_format/> | |
| 2371 | - <target_length>-1</target_length> | |
| 2372 | - <target_precision>-1</target_precision> | |
| 2373 | - <target_decimal_symbol/> | |
| 2374 | - <target_grouping_symbol/> | |
| 2375 | - <target_currency_symbol/> | |
| 2376 | - <target_null_string/> | |
| 2377 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2378 | - </field> | |
| 2379 | - <field> | |
| 2380 | - <field_name>all_content</field_name> | |
| 2381 | - <key_value>89</key_value> | |
| 2382 | - <target_name>fcno89</target_name> | |
| 2383 | - <target_type>String</target_type> | |
| 2384 | - <target_format/> | |
| 2385 | - <target_length>-1</target_length> | |
| 2386 | - <target_precision>-1</target_precision> | |
| 2387 | - <target_decimal_symbol/> | |
| 2388 | - <target_grouping_symbol/> | |
| 2389 | - <target_currency_symbol/> | |
| 2390 | - <target_null_string/> | |
| 2391 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2392 | - </field> | |
| 2393 | - <field> | |
| 2394 | - <field_name>all_content</field_name> | |
| 2395 | - <key_value>90</key_value> | |
| 2396 | - <target_name>fcno90</target_name> | |
| 2397 | - <target_type>String</target_type> | |
| 2398 | - <target_format/> | |
| 2399 | - <target_length>-1</target_length> | |
| 2400 | - <target_precision>-1</target_precision> | |
| 2401 | - <target_decimal_symbol/> | |
| 2402 | - <target_grouping_symbol/> | |
| 2403 | - <target_currency_symbol/> | |
| 2404 | - <target_null_string/> | |
| 2405 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2406 | - </field> | |
| 2407 | - <field> | |
| 2408 | - <field_name>all_content</field_name> | |
| 2409 | - <key_value>91</key_value> | |
| 2410 | - <target_name>fcno91</target_name> | |
| 2411 | - <target_type>String</target_type> | |
| 2412 | - <target_format/> | |
| 2413 | - <target_length>-1</target_length> | |
| 2414 | - <target_precision>-1</target_precision> | |
| 2415 | - <target_decimal_symbol/> | |
| 2416 | - <target_grouping_symbol/> | |
| 2417 | - <target_currency_symbol/> | |
| 2418 | - <target_null_string/> | |
| 2419 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2420 | - </field> | |
| 2421 | - <field> | |
| 2422 | - <field_name>all_content</field_name> | |
| 2423 | - <key_value>92</key_value> | |
| 2424 | - <target_name>fcno92</target_name> | |
| 2425 | - <target_type>String</target_type> | |
| 2426 | - <target_format/> | |
| 2427 | - <target_length>-1</target_length> | |
| 2428 | - <target_precision>-1</target_precision> | |
| 2429 | - <target_decimal_symbol/> | |
| 2430 | - <target_grouping_symbol/> | |
| 2431 | - <target_currency_symbol/> | |
| 2432 | - <target_null_string/> | |
| 2433 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2434 | - </field> | |
| 2435 | - <field> | |
| 2436 | - <field_name>all_content</field_name> | |
| 2437 | - <key_value>93</key_value> | |
| 2438 | - <target_name>fcno93</target_name> | |
| 2439 | - <target_type>String</target_type> | |
| 2440 | - <target_format/> | |
| 2441 | - <target_length>-1</target_length> | |
| 2442 | - <target_precision>-1</target_precision> | |
| 2443 | - <target_decimal_symbol/> | |
| 2444 | - <target_grouping_symbol/> | |
| 2445 | - <target_currency_symbol/> | |
| 2446 | - <target_null_string/> | |
| 2447 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2448 | - </field> | |
| 2449 | - <field> | |
| 2450 | - <field_name>all_content</field_name> | |
| 2451 | - <key_value>94</key_value> | |
| 2452 | - <target_name>fcno94</target_name> | |
| 2453 | - <target_type>String</target_type> | |
| 2454 | - <target_format/> | |
| 2455 | - <target_length>-1</target_length> | |
| 2456 | - <target_precision>-1</target_precision> | |
| 2457 | - <target_decimal_symbol/> | |
| 2458 | - <target_grouping_symbol/> | |
| 2459 | - <target_currency_symbol/> | |
| 2460 | - <target_null_string/> | |
| 2461 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2462 | - </field> | |
| 2463 | - <field> | |
| 2464 | - <field_name>all_content</field_name> | |
| 2465 | - <key_value>95</key_value> | |
| 2466 | - <target_name>fcno95</target_name> | |
| 2467 | - <target_type>String</target_type> | |
| 2468 | - <target_format/> | |
| 2469 | - <target_length>-1</target_length> | |
| 2470 | - <target_precision>-1</target_precision> | |
| 2471 | - <target_decimal_symbol/> | |
| 2472 | - <target_grouping_symbol/> | |
| 2473 | - <target_currency_symbol/> | |
| 2474 | - <target_null_string/> | |
| 2475 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2476 | - </field> | |
| 2477 | - <field> | |
| 2478 | - <field_name>all_content</field_name> | |
| 2479 | - <key_value>96</key_value> | |
| 2480 | - <target_name>fcno96</target_name> | |
| 2481 | - <target_type>String</target_type> | |
| 2482 | - <target_format/> | |
| 2483 | - <target_length>-1</target_length> | |
| 2484 | - <target_precision>-1</target_precision> | |
| 2485 | - <target_decimal_symbol/> | |
| 2486 | - <target_grouping_symbol/> | |
| 2487 | - <target_currency_symbol/> | |
| 2488 | - <target_null_string/> | |
| 2489 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2490 | - </field> | |
| 2491 | - <field> | |
| 2492 | - <field_name>all_content</field_name> | |
| 2493 | - <key_value>97</key_value> | |
| 2494 | - <target_name>fcno97</target_name> | |
| 2495 | - <target_type>String</target_type> | |
| 2496 | - <target_format/> | |
| 2497 | - <target_length>-1</target_length> | |
| 2498 | - <target_precision>-1</target_precision> | |
| 2499 | - <target_decimal_symbol/> | |
| 2500 | - <target_grouping_symbol/> | |
| 2501 | - <target_currency_symbol/> | |
| 2502 | - <target_null_string/> | |
| 2503 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2504 | - </field> | |
| 2505 | - <field> | |
| 2506 | - <field_name>all_content</field_name> | |
| 2507 | - <key_value>98</key_value> | |
| 2508 | - <target_name>fcno98</target_name> | |
| 2509 | - <target_type>String</target_type> | |
| 2510 | - <target_format/> | |
| 2511 | - <target_length>-1</target_length> | |
| 2512 | - <target_precision>-1</target_precision> | |
| 2513 | - <target_decimal_symbol/> | |
| 2514 | - <target_grouping_symbol/> | |
| 2515 | - <target_currency_symbol/> | |
| 2516 | - <target_null_string/> | |
| 2517 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2518 | - </field> | |
| 2519 | - <field> | |
| 2520 | - <field_name>all_content</field_name> | |
| 2521 | - <key_value>99</key_value> | |
| 2522 | - <target_name>fcno99</target_name> | |
| 2523 | - <target_type>String</target_type> | |
| 2524 | - <target_format/> | |
| 2525 | - <target_length>-1</target_length> | |
| 2526 | - <target_precision>-1</target_precision> | |
| 2527 | - <target_decimal_symbol/> | |
| 2528 | - <target_grouping_symbol/> | |
| 2529 | - <target_currency_symbol/> | |
| 2530 | - <target_null_string/> | |
| 2531 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2532 | - </field> | |
| 2533 | - <field> | |
| 2534 | - <field_name>all_content</field_name> | |
| 2535 | - <key_value>100</key_value> | |
| 2536 | - <target_name>fcno100</target_name> | |
| 2537 | - <target_type>String</target_type> | |
| 2538 | - <target_format/> | |
| 2539 | - <target_length>-1</target_length> | |
| 2540 | - <target_precision>-1</target_precision> | |
| 2541 | - <target_decimal_symbol/> | |
| 2542 | - <target_grouping_symbol/> | |
| 2543 | - <target_currency_symbol/> | |
| 2544 | - <target_null_string/> | |
| 2545 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2546 | - </field> | |
| 2547 | - <field> | |
| 2548 | - <field_name>all_content</field_name> | |
| 2549 | - <key_value>101</key_value> | |
| 2550 | - <target_name>fcno101</target_name> | |
| 2551 | - <target_type>String</target_type> | |
| 2552 | - <target_format/> | |
| 2553 | - <target_length>-1</target_length> | |
| 2554 | - <target_precision>-1</target_precision> | |
| 2555 | - <target_decimal_symbol/> | |
| 2556 | - <target_grouping_symbol/> | |
| 2557 | - <target_currency_symbol/> | |
| 2558 | - <target_null_string/> | |
| 2559 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2560 | - </field> | |
| 2561 | - <field> | |
| 2562 | - <field_name>all_content</field_name> | |
| 2563 | - <key_value>102</key_value> | |
| 2564 | - <target_name>fcno102</target_name> | |
| 2565 | - <target_type>String</target_type> | |
| 2566 | - <target_format/> | |
| 2567 | - <target_length>-1</target_length> | |
| 2568 | - <target_precision>-1</target_precision> | |
| 2569 | - <target_decimal_symbol/> | |
| 2570 | - <target_grouping_symbol/> | |
| 2571 | - <target_currency_symbol/> | |
| 2572 | - <target_null_string/> | |
| 2573 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2574 | - </field> | |
| 2575 | - <field> | |
| 2576 | - <field_name>all_content</field_name> | |
| 2577 | - <key_value>103</key_value> | |
| 2578 | - <target_name>fcno103</target_name> | |
| 2579 | - <target_type>String</target_type> | |
| 2580 | - <target_format/> | |
| 2581 | - <target_length>-1</target_length> | |
| 2582 | - <target_precision>-1</target_precision> | |
| 2583 | - <target_decimal_symbol/> | |
| 2584 | - <target_grouping_symbol/> | |
| 2585 | - <target_currency_symbol/> | |
| 2586 | - <target_null_string/> | |
| 2587 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2588 | - </field> | |
| 2589 | - <field> | |
| 2590 | - <field_name>all_content</field_name> | |
| 2591 | - <key_value>104</key_value> | |
| 2592 | - <target_name>fcno104</target_name> | |
| 2593 | - <target_type>String</target_type> | |
| 2594 | - <target_format/> | |
| 2595 | - <target_length>-1</target_length> | |
| 2596 | - <target_precision>-1</target_precision> | |
| 2597 | - <target_decimal_symbol/> | |
| 2598 | - <target_grouping_symbol/> | |
| 2599 | - <target_currency_symbol/> | |
| 2600 | - <target_null_string/> | |
| 2601 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2602 | - </field> | |
| 2603 | - <field> | |
| 2604 | - <field_name>all_content</field_name> | |
| 2605 | - <key_value>105</key_value> | |
| 2606 | - <target_name>fcno105</target_name> | |
| 2607 | - <target_type>String</target_type> | |
| 2608 | - <target_format/> | |
| 2609 | - <target_length>-1</target_length> | |
| 2610 | - <target_precision>-1</target_precision> | |
| 2611 | - <target_decimal_symbol/> | |
| 2612 | - <target_grouping_symbol/> | |
| 2613 | - <target_currency_symbol/> | |
| 2614 | - <target_null_string/> | |
| 2615 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2616 | - </field> | |
| 2617 | - <field> | |
| 2618 | - <field_name>all_content</field_name> | |
| 2619 | - <key_value>106</key_value> | |
| 2620 | - <target_name>fcno106</target_name> | |
| 2621 | - <target_type>String</target_type> | |
| 2622 | - <target_format/> | |
| 2623 | - <target_length>-1</target_length> | |
| 2624 | - <target_precision>-1</target_precision> | |
| 2625 | - <target_decimal_symbol/> | |
| 2626 | - <target_grouping_symbol/> | |
| 2627 | - <target_currency_symbol/> | |
| 2628 | - <target_null_string/> | |
| 2629 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2630 | - </field> | |
| 2631 | - <field> | |
| 2632 | - <field_name>all_content</field_name> | |
| 2633 | - <key_value>107</key_value> | |
| 2634 | - <target_name>fcno107</target_name> | |
| 2635 | - <target_type>String</target_type> | |
| 2636 | - <target_format/> | |
| 2637 | - <target_length>-1</target_length> | |
| 2638 | - <target_precision>-1</target_precision> | |
| 2639 | - <target_decimal_symbol/> | |
| 2640 | - <target_grouping_symbol/> | |
| 2641 | - <target_currency_symbol/> | |
| 2642 | - <target_null_string/> | |
| 2643 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2644 | - </field> | |
| 2645 | - <field> | |
| 2646 | - <field_name>all_content</field_name> | |
| 2647 | - <key_value>108</key_value> | |
| 2648 | - <target_name>fcno108</target_name> | |
| 2649 | - <target_type>String</target_type> | |
| 2650 | - <target_format/> | |
| 2651 | - <target_length>-1</target_length> | |
| 2652 | - <target_precision>-1</target_precision> | |
| 2653 | - <target_decimal_symbol/> | |
| 2654 | - <target_grouping_symbol/> | |
| 2655 | - <target_currency_symbol/> | |
| 2656 | - <target_null_string/> | |
| 2657 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2658 | - </field> | |
| 2659 | - <field> | |
| 2660 | - <field_name>all_content</field_name> | |
| 2661 | - <key_value>109</key_value> | |
| 2662 | - <target_name>fcno109</target_name> | |
| 2663 | - <target_type>String</target_type> | |
| 2664 | - <target_format/> | |
| 2665 | - <target_length>-1</target_length> | |
| 2666 | - <target_precision>-1</target_precision> | |
| 2667 | - <target_decimal_symbol/> | |
| 2668 | - <target_grouping_symbol/> | |
| 2669 | - <target_currency_symbol/> | |
| 2670 | - <target_null_string/> | |
| 2671 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2672 | - </field> | |
| 2673 | - <field> | |
| 2674 | - <field_name>all_content</field_name> | |
| 2675 | - <key_value>110</key_value> | |
| 2676 | - <target_name>fcno110</target_name> | |
| 2677 | - <target_type>String</target_type> | |
| 2678 | - <target_format/> | |
| 2679 | - <target_length>-1</target_length> | |
| 2680 | - <target_precision>-1</target_precision> | |
| 2681 | - <target_decimal_symbol/> | |
| 2682 | - <target_grouping_symbol/> | |
| 2683 | - <target_currency_symbol/> | |
| 2684 | - <target_null_string/> | |
| 2685 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2686 | - </field> | |
| 2687 | - <field> | |
| 2688 | - <field_name>all_content</field_name> | |
| 2689 | - <key_value>111</key_value> | |
| 2690 | - <target_name>fcno111</target_name> | |
| 2691 | - <target_type>String</target_type> | |
| 2692 | - <target_format/> | |
| 2693 | - <target_length>-1</target_length> | |
| 2694 | - <target_precision>-1</target_precision> | |
| 2695 | - <target_decimal_symbol/> | |
| 2696 | - <target_grouping_symbol/> | |
| 2697 | - <target_currency_symbol/> | |
| 2698 | - <target_null_string/> | |
| 2699 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2700 | - </field> | |
| 2701 | - <field> | |
| 2702 | - <field_name>all_content</field_name> | |
| 2703 | - <key_value>112</key_value> | |
| 2704 | - <target_name>fcno112</target_name> | |
| 2705 | - <target_type>String</target_type> | |
| 2706 | - <target_format/> | |
| 2707 | - <target_length>-1</target_length> | |
| 2708 | - <target_precision>-1</target_precision> | |
| 2709 | - <target_decimal_symbol/> | |
| 2710 | - <target_grouping_symbol/> | |
| 2711 | - <target_currency_symbol/> | |
| 2712 | - <target_null_string/> | |
| 2713 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2714 | - </field> | |
| 2715 | - <field> | |
| 2716 | - <field_name>all_content</field_name> | |
| 2717 | - <key_value>113</key_value> | |
| 2718 | - <target_name>fcno113</target_name> | |
| 2719 | - <target_type>String</target_type> | |
| 2720 | - <target_format/> | |
| 2721 | - <target_length>-1</target_length> | |
| 2722 | - <target_precision>-1</target_precision> | |
| 2723 | - <target_decimal_symbol/> | |
| 2724 | - <target_grouping_symbol/> | |
| 2725 | - <target_currency_symbol/> | |
| 2726 | - <target_null_string/> | |
| 2727 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2728 | - </field> | |
| 2729 | - <field> | |
| 2730 | - <field_name>all_content</field_name> | |
| 2731 | - <key_value>114</key_value> | |
| 2732 | - <target_name>fcno114</target_name> | |
| 2733 | - <target_type>String</target_type> | |
| 2734 | - <target_format/> | |
| 2735 | - <target_length>-1</target_length> | |
| 2736 | - <target_precision>-1</target_precision> | |
| 2737 | - <target_decimal_symbol/> | |
| 2738 | - <target_grouping_symbol/> | |
| 2739 | - <target_currency_symbol/> | |
| 2740 | - <target_null_string/> | |
| 2741 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2742 | - </field> | |
| 2743 | - <field> | |
| 2744 | - <field_name>all_content</field_name> | |
| 2745 | - <key_value>115</key_value> | |
| 2746 | - <target_name>fcno115</target_name> | |
| 2747 | - <target_type>String</target_type> | |
| 2748 | - <target_format/> | |
| 2749 | - <target_length>-1</target_length> | |
| 2750 | - <target_precision>-1</target_precision> | |
| 2751 | - <target_decimal_symbol/> | |
| 2752 | - <target_grouping_symbol/> | |
| 2753 | - <target_currency_symbol/> | |
| 2754 | - <target_null_string/> | |
| 2755 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2756 | - </field> | |
| 2757 | - <field> | |
| 2758 | - <field_name>all_content</field_name> | |
| 2759 | - <key_value>116</key_value> | |
| 2760 | - <target_name>fcno116</target_name> | |
| 2761 | - <target_type>String</target_type> | |
| 2762 | - <target_format/> | |
| 2763 | - <target_length>-1</target_length> | |
| 2764 | - <target_precision>-1</target_precision> | |
| 2765 | - <target_decimal_symbol/> | |
| 2766 | - <target_grouping_symbol/> | |
| 2767 | - <target_currency_symbol/> | |
| 2768 | - <target_null_string/> | |
| 2769 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2770 | - </field> | |
| 2771 | - <field> | |
| 2772 | - <field_name>all_content</field_name> | |
| 2773 | - <key_value>117</key_value> | |
| 2774 | - <target_name>fcno117</target_name> | |
| 2775 | - <target_type>String</target_type> | |
| 2776 | - <target_format/> | |
| 2777 | - <target_length>-1</target_length> | |
| 2778 | - <target_precision>-1</target_precision> | |
| 2779 | - <target_decimal_symbol/> | |
| 2780 | - <target_grouping_symbol/> | |
| 2781 | - <target_currency_symbol/> | |
| 2782 | - <target_null_string/> | |
| 2783 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2784 | - </field> | |
| 2785 | - <field> | |
| 2786 | - <field_name>all_content</field_name> | |
| 2787 | - <key_value>118</key_value> | |
| 2788 | - <target_name>fcno118</target_name> | |
| 2789 | - <target_type>String</target_type> | |
| 2790 | - <target_format/> | |
| 2791 | - <target_length>-1</target_length> | |
| 2792 | - <target_precision>-1</target_precision> | |
| 2793 | - <target_decimal_symbol/> | |
| 2794 | - <target_grouping_symbol/> | |
| 2795 | - <target_currency_symbol/> | |
| 2796 | - <target_null_string/> | |
| 2797 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2798 | - </field> | |
| 2799 | - <field> | |
| 2800 | - <field_name>all_content</field_name> | |
| 2801 | - <key_value>119</key_value> | |
| 2802 | - <target_name>fcno119</target_name> | |
| 2803 | - <target_type>String</target_type> | |
| 2804 | - <target_format/> | |
| 2805 | - <target_length>-1</target_length> | |
| 2806 | - <target_precision>-1</target_precision> | |
| 2807 | - <target_decimal_symbol/> | |
| 2808 | - <target_grouping_symbol/> | |
| 2809 | - <target_currency_symbol/> | |
| 2810 | - <target_null_string/> | |
| 2811 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2812 | - </field> | |
| 2813 | - <field> | |
| 2814 | - <field_name>all_content</field_name> | |
| 2815 | - <key_value>120</key_value> | |
| 2816 | - <target_name>fcno120</target_name> | |
| 2817 | - <target_type>String</target_type> | |
| 2818 | - <target_format/> | |
| 2819 | - <target_length>-1</target_length> | |
| 2820 | - <target_precision>-1</target_precision> | |
| 2821 | - <target_decimal_symbol/> | |
| 2822 | - <target_grouping_symbol/> | |
| 2823 | - <target_currency_symbol/> | |
| 2824 | - <target_null_string/> | |
| 2825 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2826 | - </field> | |
| 2827 | - <field> | |
| 2828 | - <field_name>all_content</field_name> | |
| 2829 | - <key_value>121</key_value> | |
| 2830 | - <target_name>fcno121</target_name> | |
| 2831 | - <target_type>String</target_type> | |
| 2832 | - <target_format/> | |
| 2833 | - <target_length>-1</target_length> | |
| 2834 | - <target_precision>-1</target_precision> | |
| 2835 | - <target_decimal_symbol/> | |
| 2836 | - <target_grouping_symbol/> | |
| 2837 | - <target_currency_symbol/> | |
| 2838 | - <target_null_string/> | |
| 2839 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2840 | - </field> | |
| 2841 | - <field> | |
| 2842 | - <field_name>all_content</field_name> | |
| 2843 | - <key_value>122</key_value> | |
| 2844 | - <target_name>fcno122</target_name> | |
| 2845 | - <target_type>String</target_type> | |
| 2846 | - <target_format/> | |
| 2847 | - <target_length>-1</target_length> | |
| 2848 | - <target_precision>-1</target_precision> | |
| 2849 | - <target_decimal_symbol/> | |
| 2850 | - <target_grouping_symbol/> | |
| 2851 | - <target_currency_symbol/> | |
| 2852 | - <target_null_string/> | |
| 2853 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2854 | - </field> | |
| 2855 | - <field> | |
| 2856 | - <field_name>all_content</field_name> | |
| 2857 | - <key_value>123</key_value> | |
| 2858 | - <target_name>fcno123</target_name> | |
| 2859 | - <target_type>String</target_type> | |
| 2860 | - <target_format/> | |
| 2861 | - <target_length>-1</target_length> | |
| 2862 | - <target_precision>-1</target_precision> | |
| 2863 | - <target_decimal_symbol/> | |
| 2864 | - <target_grouping_symbol/> | |
| 2865 | - <target_currency_symbol/> | |
| 2866 | - <target_null_string/> | |
| 2867 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2868 | - </field> | |
| 2869 | - <field> | |
| 2870 | - <field_name>all_content</field_name> | |
| 2871 | - <key_value>124</key_value> | |
| 2872 | - <target_name>fcno124</target_name> | |
| 2873 | - <target_type>String</target_type> | |
| 2874 | - <target_format/> | |
| 2875 | - <target_length>-1</target_length> | |
| 2876 | - <target_precision>-1</target_precision> | |
| 2877 | - <target_decimal_symbol/> | |
| 2878 | - <target_grouping_symbol/> | |
| 2879 | - <target_currency_symbol/> | |
| 2880 | - <target_null_string/> | |
| 2881 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2882 | - </field> | |
| 2883 | - <field> | |
| 2884 | - <field_name>all_content</field_name> | |
| 2885 | - <key_value>125</key_value> | |
| 2886 | - <target_name>fcno125</target_name> | |
| 2887 | - <target_type>String</target_type> | |
| 2888 | - <target_format/> | |
| 2889 | - <target_length>-1</target_length> | |
| 2890 | - <target_precision>-1</target_precision> | |
| 2891 | - <target_decimal_symbol/> | |
| 2892 | - <target_grouping_symbol/> | |
| 2893 | - <target_currency_symbol/> | |
| 2894 | - <target_null_string/> | |
| 2895 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2896 | - </field> | |
| 2897 | - <field> | |
| 2898 | - <field_name>all_content</field_name> | |
| 2899 | - <key_value>126</key_value> | |
| 2900 | - <target_name>fcno126</target_name> | |
| 2901 | - <target_type>String</target_type> | |
| 2902 | - <target_format/> | |
| 2903 | - <target_length>-1</target_length> | |
| 2904 | - <target_precision>-1</target_precision> | |
| 2905 | - <target_decimal_symbol/> | |
| 2906 | - <target_grouping_symbol/> | |
| 2907 | - <target_currency_symbol/> | |
| 2908 | - <target_null_string/> | |
| 2909 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2910 | - </field> | |
| 2911 | - <field> | |
| 2912 | - <field_name>all_content</field_name> | |
| 2913 | - <key_value>127</key_value> | |
| 2914 | - <target_name>fcno127</target_name> | |
| 2915 | - <target_type>String</target_type> | |
| 2916 | - <target_format/> | |
| 2917 | - <target_length>-1</target_length> | |
| 2918 | - <target_precision>-1</target_precision> | |
| 2919 | - <target_decimal_symbol/> | |
| 2920 | - <target_grouping_symbol/> | |
| 2921 | - <target_currency_symbol/> | |
| 2922 | - <target_null_string/> | |
| 2923 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2924 | - </field> | |
| 2925 | - <field> | |
| 2926 | - <field_name>all_content</field_name> | |
| 2927 | - <key_value>128</key_value> | |
| 2928 | - <target_name>fcno128</target_name> | |
| 2929 | - <target_type>String</target_type> | |
| 2930 | - <target_format/> | |
| 2931 | - <target_length>-1</target_length> | |
| 2932 | - <target_precision>-1</target_precision> | |
| 2933 | - <target_decimal_symbol/> | |
| 2934 | - <target_grouping_symbol/> | |
| 2935 | - <target_currency_symbol/> | |
| 2936 | - <target_null_string/> | |
| 2937 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2938 | - </field> | |
| 2939 | - <field> | |
| 2940 | - <field_name>all_content</field_name> | |
| 2941 | - <key_value>129</key_value> | |
| 2942 | - <target_name>fcno129</target_name> | |
| 2943 | - <target_type>String</target_type> | |
| 2944 | - <target_format/> | |
| 2945 | - <target_length>-1</target_length> | |
| 2946 | - <target_precision>-1</target_precision> | |
| 2947 | - <target_decimal_symbol/> | |
| 2948 | - <target_grouping_symbol/> | |
| 2949 | - <target_currency_symbol/> | |
| 2950 | - <target_null_string/> | |
| 2951 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2952 | - </field> | |
| 2953 | - <field> | |
| 2954 | - <field_name>all_content</field_name> | |
| 2955 | - <key_value>130</key_value> | |
| 2956 | - <target_name>fcno130</target_name> | |
| 2957 | - <target_type>String</target_type> | |
| 2958 | - <target_format/> | |
| 2959 | - <target_length>-1</target_length> | |
| 2960 | - <target_precision>-1</target_precision> | |
| 2961 | - <target_decimal_symbol/> | |
| 2962 | - <target_grouping_symbol/> | |
| 2963 | - <target_currency_symbol/> | |
| 2964 | - <target_null_string/> | |
| 2965 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2966 | - </field> | |
| 2967 | - <field> | |
| 2968 | - <field_name>all_content</field_name> | |
| 2969 | - <key_value>131</key_value> | |
| 2970 | - <target_name>fcno131</target_name> | |
| 2971 | - <target_type>String</target_type> | |
| 2972 | - <target_format/> | |
| 2973 | - <target_length>-1</target_length> | |
| 2974 | - <target_precision>-1</target_precision> | |
| 2975 | - <target_decimal_symbol/> | |
| 2976 | - <target_grouping_symbol/> | |
| 2977 | - <target_currency_symbol/> | |
| 2978 | - <target_null_string/> | |
| 2979 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2980 | - </field> | |
| 2981 | - <field> | |
| 2982 | - <field_name>all_content</field_name> | |
| 2983 | - <key_value>132</key_value> | |
| 2984 | - <target_name>fcno132</target_name> | |
| 2985 | - <target_type>String</target_type> | |
| 2986 | - <target_format/> | |
| 2987 | - <target_length>-1</target_length> | |
| 2988 | - <target_precision>-1</target_precision> | |
| 2989 | - <target_decimal_symbol/> | |
| 2990 | - <target_grouping_symbol/> | |
| 2991 | - <target_currency_symbol/> | |
| 2992 | - <target_null_string/> | |
| 2993 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2994 | - </field> | |
| 2995 | - <field> | |
| 2996 | - <field_name>all_content</field_name> | |
| 2997 | - <key_value>133</key_value> | |
| 2998 | - <target_name>fcno133</target_name> | |
| 2999 | - <target_type>String</target_type> | |
| 3000 | - <target_format/> | |
| 3001 | - <target_length>-1</target_length> | |
| 3002 | - <target_precision>-1</target_precision> | |
| 3003 | - <target_decimal_symbol/> | |
| 3004 | - <target_grouping_symbol/> | |
| 3005 | - <target_currency_symbol/> | |
| 3006 | - <target_null_string/> | |
| 3007 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3008 | - </field> | |
| 3009 | - <field> | |
| 3010 | - <field_name>all_content</field_name> | |
| 3011 | - <key_value>134</key_value> | |
| 3012 | - <target_name>fcno134</target_name> | |
| 3013 | - <target_type>String</target_type> | |
| 3014 | - <target_format/> | |
| 3015 | - <target_length>-1</target_length> | |
| 3016 | - <target_precision>-1</target_precision> | |
| 3017 | - <target_decimal_symbol/> | |
| 3018 | - <target_grouping_symbol/> | |
| 3019 | - <target_currency_symbol/> | |
| 3020 | - <target_null_string/> | |
| 3021 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3022 | - </field> | |
| 3023 | - <field> | |
| 3024 | - <field_name>all_content</field_name> | |
| 3025 | - <key_value>135</key_value> | |
| 3026 | - <target_name>fcno135</target_name> | |
| 3027 | - <target_type>String</target_type> | |
| 3028 | - <target_format/> | |
| 3029 | - <target_length>-1</target_length> | |
| 3030 | - <target_precision>-1</target_precision> | |
| 3031 | - <target_decimal_symbol/> | |
| 3032 | - <target_grouping_symbol/> | |
| 3033 | - <target_currency_symbol/> | |
| 3034 | - <target_null_string/> | |
| 3035 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3036 | - </field> | |
| 3037 | - <field> | |
| 3038 | - <field_name>all_content</field_name> | |
| 3039 | - <key_value>136</key_value> | |
| 3040 | - <target_name>fcno136</target_name> | |
| 3041 | - <target_type>String</target_type> | |
| 3042 | - <target_format/> | |
| 3043 | - <target_length>-1</target_length> | |
| 3044 | - <target_precision>-1</target_precision> | |
| 3045 | - <target_decimal_symbol/> | |
| 3046 | - <target_grouping_symbol/> | |
| 3047 | - <target_currency_symbol/> | |
| 3048 | - <target_null_string/> | |
| 3049 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3050 | - </field> | |
| 3051 | - <field> | |
| 3052 | - <field_name>all_content</field_name> | |
| 3053 | - <key_value>137</key_value> | |
| 3054 | - <target_name>fcno137</target_name> | |
| 3055 | - <target_type>String</target_type> | |
| 3056 | - <target_format/> | |
| 3057 | - <target_length>-1</target_length> | |
| 3058 | - <target_precision>-1</target_precision> | |
| 3059 | - <target_decimal_symbol/> | |
| 3060 | - <target_grouping_symbol/> | |
| 3061 | - <target_currency_symbol/> | |
| 3062 | - <target_null_string/> | |
| 3063 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3064 | - </field> | |
| 3065 | - <field> | |
| 3066 | - <field_name>all_content</field_name> | |
| 3067 | - <key_value>138</key_value> | |
| 3068 | - <target_name>fcno138</target_name> | |
| 3069 | - <target_type>String</target_type> | |
| 3070 | - <target_format/> | |
| 3071 | - <target_length>-1</target_length> | |
| 3072 | - <target_precision>-1</target_precision> | |
| 3073 | - <target_decimal_symbol/> | |
| 3074 | - <target_grouping_symbol/> | |
| 3075 | - <target_currency_symbol/> | |
| 3076 | - <target_null_string/> | |
| 3077 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3078 | - </field> | |
| 3079 | - <field> | |
| 3080 | - <field_name>all_content</field_name> | |
| 3081 | - <key_value>139</key_value> | |
| 3082 | - <target_name>fcno139</target_name> | |
| 3083 | - <target_type>String</target_type> | |
| 3084 | - <target_format/> | |
| 3085 | - <target_length>-1</target_length> | |
| 3086 | - <target_precision>-1</target_precision> | |
| 3087 | - <target_decimal_symbol/> | |
| 3088 | - <target_grouping_symbol/> | |
| 3089 | - <target_currency_symbol/> | |
| 3090 | - <target_null_string/> | |
| 3091 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3092 | - </field> | |
| 3093 | - <field> | |
| 3094 | - <field_name>all_content</field_name> | |
| 3095 | - <key_value>140</key_value> | |
| 3096 | - <target_name>fcno140</target_name> | |
| 3097 | - <target_type>String</target_type> | |
| 3098 | - <target_format/> | |
| 3099 | - <target_length>-1</target_length> | |
| 3100 | - <target_precision>-1</target_precision> | |
| 3101 | - <target_decimal_symbol/> | |
| 3102 | - <target_grouping_symbol/> | |
| 3103 | - <target_currency_symbol/> | |
| 3104 | - <target_null_string/> | |
| 3105 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3106 | - </field> | |
| 3107 | - <field> | |
| 3108 | - <field_name>all_content</field_name> | |
| 3109 | - <key_value>141</key_value> | |
| 3110 | - <target_name>fcno141</target_name> | |
| 3111 | - <target_type>String</target_type> | |
| 3112 | - <target_format/> | |
| 3113 | - <target_length>-1</target_length> | |
| 3114 | - <target_precision>-1</target_precision> | |
| 3115 | - <target_decimal_symbol/> | |
| 3116 | - <target_grouping_symbol/> | |
| 3117 | - <target_currency_symbol/> | |
| 3118 | - <target_null_string/> | |
| 3119 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3120 | - </field> | |
| 3121 | - <field> | |
| 3122 | - <field_name>all_content</field_name> | |
| 3123 | - <key_value>142</key_value> | |
| 3124 | - <target_name>fcno142</target_name> | |
| 3125 | - <target_type>String</target_type> | |
| 3126 | - <target_format/> | |
| 3127 | - <target_length>-1</target_length> | |
| 3128 | - <target_precision>-1</target_precision> | |
| 3129 | - <target_decimal_symbol/> | |
| 3130 | - <target_grouping_symbol/> | |
| 3131 | - <target_currency_symbol/> | |
| 3132 | - <target_null_string/> | |
| 3133 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3134 | - </field> | |
| 3135 | - <field> | |
| 3136 | - <field_name>all_content</field_name> | |
| 3137 | - <key_value>143</key_value> | |
| 3138 | - <target_name>fcno143</target_name> | |
| 3139 | - <target_type>String</target_type> | |
| 3140 | - <target_format/> | |
| 3141 | - <target_length>-1</target_length> | |
| 3142 | - <target_precision>-1</target_precision> | |
| 3143 | - <target_decimal_symbol/> | |
| 3144 | - <target_grouping_symbol/> | |
| 3145 | - <target_currency_symbol/> | |
| 3146 | - <target_null_string/> | |
| 3147 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3148 | - </field> | |
| 3149 | - <field> | |
| 3150 | - <field_name>all_content</field_name> | |
| 3151 | - <key_value>144</key_value> | |
| 3152 | - <target_name>fcno144</target_name> | |
| 3153 | - <target_type>String</target_type> | |
| 3154 | - <target_format/> | |
| 3155 | - <target_length>-1</target_length> | |
| 3156 | - <target_precision>-1</target_precision> | |
| 3157 | - <target_decimal_symbol/> | |
| 3158 | - <target_grouping_symbol/> | |
| 3159 | - <target_currency_symbol/> | |
| 3160 | - <target_null_string/> | |
| 3161 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3162 | - </field> | |
| 3163 | - <field> | |
| 3164 | - <field_name>all_content</field_name> | |
| 3165 | - <key_value>145</key_value> | |
| 3166 | - <target_name>fcno145</target_name> | |
| 3167 | - <target_type>String</target_type> | |
| 3168 | - <target_format/> | |
| 3169 | - <target_length>-1</target_length> | |
| 3170 | - <target_precision>-1</target_precision> | |
| 3171 | - <target_decimal_symbol/> | |
| 3172 | - <target_grouping_symbol/> | |
| 3173 | - <target_currency_symbol/> | |
| 3174 | - <target_null_string/> | |
| 3175 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3176 | - </field> | |
| 3177 | - <field> | |
| 3178 | - <field_name>all_content</field_name> | |
| 3179 | - <key_value>146</key_value> | |
| 3180 | - <target_name>fcno146</target_name> | |
| 3181 | - <target_type>String</target_type> | |
| 3182 | - <target_format/> | |
| 3183 | - <target_length>-1</target_length> | |
| 3184 | - <target_precision>-1</target_precision> | |
| 3185 | - <target_decimal_symbol/> | |
| 3186 | - <target_grouping_symbol/> | |
| 3187 | - <target_currency_symbol/> | |
| 3188 | - <target_null_string/> | |
| 3189 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3190 | - </field> | |
| 3191 | - <field> | |
| 3192 | - <field_name>all_content</field_name> | |
| 3193 | - <key_value>147</key_value> | |
| 3194 | - <target_name>fcno147</target_name> | |
| 3195 | - <target_type>String</target_type> | |
| 3196 | - <target_format/> | |
| 3197 | - <target_length>-1</target_length> | |
| 3198 | - <target_precision>-1</target_precision> | |
| 3199 | - <target_decimal_symbol/> | |
| 3200 | - <target_grouping_symbol/> | |
| 3201 | - <target_currency_symbol/> | |
| 3202 | - <target_null_string/> | |
| 3203 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3204 | - </field> | |
| 3205 | - <field> | |
| 3206 | - <field_name>all_content</field_name> | |
| 3207 | - <key_value>148</key_value> | |
| 3208 | - <target_name>fcno148</target_name> | |
| 3209 | - <target_type>String</target_type> | |
| 3210 | - <target_format/> | |
| 3211 | - <target_length>-1</target_length> | |
| 3212 | - <target_precision>-1</target_precision> | |
| 3213 | - <target_decimal_symbol/> | |
| 3214 | - <target_grouping_symbol/> | |
| 3215 | - <target_currency_symbol/> | |
| 3216 | - <target_null_string/> | |
| 3217 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3218 | - </field> | |
| 3219 | - <field> | |
| 3220 | - <field_name>all_content</field_name> | |
| 3221 | - <key_value>149</key_value> | |
| 3222 | - <target_name>fcno149</target_name> | |
| 3223 | - <target_type>String</target_type> | |
| 3224 | - <target_format/> | |
| 3225 | - <target_length>-1</target_length> | |
| 3226 | - <target_precision>-1</target_precision> | |
| 3227 | - <target_decimal_symbol/> | |
| 3228 | - <target_grouping_symbol/> | |
| 3229 | - <target_currency_symbol/> | |
| 3230 | - <target_null_string/> | |
| 3231 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3232 | - </field> | |
| 3233 | - <field> | |
| 3234 | - <field_name>all_content</field_name> | |
| 3235 | - <key_value>150</key_value> | |
| 3236 | - <target_name>fcno150</target_name> | |
| 3237 | - <target_type>String</target_type> | |
| 3238 | - <target_format/> | |
| 3239 | - <target_length>-1</target_length> | |
| 3240 | - <target_precision>-1</target_precision> | |
| 3241 | - <target_decimal_symbol/> | |
| 3242 | - <target_grouping_symbol/> | |
| 3243 | - <target_currency_symbol/> | |
| 3244 | - <target_null_string/> | |
| 3245 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3246 | - </field> | |
| 3247 | - </fields> | |
| 3248 | - <cluster_schema/> | |
| 3249 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3250 | - <xloc>683</xloc> | |
| 3251 | - <yloc>184</yloc> | |
| 3252 | - <draw>Y</draw> | |
| 3253 | - </GUI> | |
| 3254 | - </step> | |
| 3255 | - | |
| 3256 | - <step> | |
| 3257 | - <name>去除字段</name> | |
| 3258 | - <type>SelectValues</type> | |
| 3259 | - <description/> | |
| 3260 | - <distribute>N</distribute> | |
| 3261 | - <custom_distribution/> | |
| 3262 | - <copies>1</copies> | |
| 3263 | - <partitioning> | |
| 3264 | - <method>none</method> | |
| 3265 | - <schema_name/> | |
| 3266 | - </partitioning> | |
| 3267 | - <fields> <field> <name>lp</name> | |
| 3268 | - <rename/> | |
| 3269 | - <length>-2</length> | |
| 3270 | - <precision>-2</precision> | |
| 3271 | - </field> <field> <name>fcno1</name> | |
| 3272 | - <rename/> | |
| 3273 | - <length>-2</length> | |
| 3274 | - <precision>-2</precision> | |
| 3275 | - </field> <field> <name>fcno2</name> | |
| 3276 | - <rename/> | |
| 3277 | - <length>-2</length> | |
| 3278 | - <precision>-2</precision> | |
| 3279 | - </field> <field> <name>fcno3</name> | |
| 3280 | - <rename/> | |
| 3281 | - <length>-2</length> | |
| 3282 | - <precision>-2</precision> | |
| 3283 | - </field> <field> <name>fcno4</name> | |
| 3284 | - <rename/> | |
| 3285 | - <length>-2</length> | |
| 3286 | - <precision>-2</precision> | |
| 3287 | - </field> <field> <name>fcno5</name> | |
| 3288 | - <rename/> | |
| 3289 | - <length>-2</length> | |
| 3290 | - <precision>-2</precision> | |
| 3291 | - </field> <field> <name>fcno6</name> | |
| 3292 | - <rename/> | |
| 3293 | - <length>-2</length> | |
| 3294 | - <precision>-2</precision> | |
| 3295 | - </field> <field> <name>fcno7</name> | |
| 3296 | - <rename/> | |
| 3297 | - <length>-2</length> | |
| 3298 | - <precision>-2</precision> | |
| 3299 | - </field> <field> <name>fcno8</name> | |
| 3300 | - <rename/> | |
| 3301 | - <length>-2</length> | |
| 3302 | - <precision>-2</precision> | |
| 3303 | - </field> <field> <name>fcno9</name> | |
| 3304 | - <rename/> | |
| 3305 | - <length>-2</length> | |
| 3306 | - <precision>-2</precision> | |
| 3307 | - </field> <field> <name>fcno10</name> | |
| 3308 | - <rename/> | |
| 3309 | - <length>-2</length> | |
| 3310 | - <precision>-2</precision> | |
| 3311 | - </field> <field> <name>fcno11</name> | |
| 3312 | - <rename/> | |
| 3313 | - <length>-2</length> | |
| 3314 | - <precision>-2</precision> | |
| 3315 | - </field> <field> <name>fcno12</name> | |
| 3316 | - <rename/> | |
| 3317 | - <length>-2</length> | |
| 3318 | - <precision>-2</precision> | |
| 3319 | - </field> <field> <name>fcno13</name> | |
| 3320 | - <rename/> | |
| 3321 | - <length>-2</length> | |
| 3322 | - <precision>-2</precision> | |
| 3323 | - </field> <field> <name>fcno14</name> | |
| 3324 | - <rename/> | |
| 3325 | - <length>-2</length> | |
| 3326 | - <precision>-2</precision> | |
| 3327 | - </field> <field> <name>fcno15</name> | |
| 3328 | - <rename/> | |
| 3329 | - <length>-2</length> | |
| 3330 | - <precision>-2</precision> | |
| 3331 | - </field> <field> <name>fcno16</name> | |
| 3332 | - <rename/> | |
| 3333 | - <length>-2</length> | |
| 3334 | - <precision>-2</precision> | |
| 3335 | - </field> <field> <name>fcno17</name> | |
| 3336 | - <rename/> | |
| 3337 | - <length>-2</length> | |
| 3338 | - <precision>-2</precision> | |
| 3339 | - </field> <field> <name>fcno18</name> | |
| 3340 | - <rename/> | |
| 3341 | - <length>-2</length> | |
| 3342 | - <precision>-2</precision> | |
| 3343 | - </field> <field> <name>fcno19</name> | |
| 3344 | - <rename/> | |
| 3345 | - <length>-2</length> | |
| 3346 | - <precision>-2</precision> | |
| 3347 | - </field> <field> <name>fcno20</name> | |
| 3348 | - <rename/> | |
| 3349 | - <length>-2</length> | |
| 3350 | - <precision>-2</precision> | |
| 3351 | - </field> <field> <name>fcno21</name> | |
| 3352 | - <rename/> | |
| 3353 | - <length>-2</length> | |
| 3354 | - <precision>-2</precision> | |
| 3355 | - </field> <field> <name>fcno22</name> | |
| 3356 | - <rename/> | |
| 3357 | - <length>-2</length> | |
| 3358 | - <precision>-2</precision> | |
| 3359 | - </field> <field> <name>fcno23</name> | |
| 3360 | - <rename/> | |
| 3361 | - <length>-2</length> | |
| 3362 | - <precision>-2</precision> | |
| 3363 | - </field> <field> <name>fcno24</name> | |
| 3364 | - <rename/> | |
| 3365 | - <length>-2</length> | |
| 3366 | - <precision>-2</precision> | |
| 3367 | - </field> <field> <name>fcno25</name> | |
| 3368 | - <rename/> | |
| 3369 | - <length>-2</length> | |
| 3370 | - <precision>-2</precision> | |
| 3371 | - </field> <field> <name>fcno26</name> | |
| 3372 | - <rename/> | |
| 3373 | - <length>-2</length> | |
| 3374 | - <precision>-2</precision> | |
| 3375 | - </field> <field> <name>fcno27</name> | |
| 3376 | - <rename/> | |
| 3377 | - <length>-2</length> | |
| 3378 | - <precision>-2</precision> | |
| 3379 | - </field> <field> <name>fcno28</name> | |
| 3380 | - <rename/> | |
| 3381 | - <length>-2</length> | |
| 3382 | - <precision>-2</precision> | |
| 3383 | - </field> <field> <name>fcno29</name> | |
| 3384 | - <rename/> | |
| 3385 | - <length>-2</length> | |
| 3386 | - <precision>-2</precision> | |
| 3387 | - </field> <field> <name>fcno30</name> | |
| 3388 | - <rename/> | |
| 3389 | - <length>-2</length> | |
| 3390 | - <precision>-2</precision> | |
| 3391 | - </field> <field> <name>fcno31</name> | |
| 3392 | - <rename/> | |
| 3393 | - <length>-2</length> | |
| 3394 | - <precision>-2</precision> | |
| 3395 | - </field> <field> <name>fcno32</name> | |
| 3396 | - <rename/> | |
| 3397 | - <length>-2</length> | |
| 3398 | - <precision>-2</precision> | |
| 3399 | - </field> <field> <name>fcno33</name> | |
| 3400 | - <rename/> | |
| 3401 | - <length>-2</length> | |
| 3402 | - <precision>-2</precision> | |
| 3403 | - </field> <field> <name>fcno34</name> | |
| 3404 | - <rename/> | |
| 3405 | - <length>-2</length> | |
| 3406 | - <precision>-2</precision> | |
| 3407 | - </field> <field> <name>fcno35</name> | |
| 3408 | - <rename/> | |
| 3409 | - <length>-2</length> | |
| 3410 | - <precision>-2</precision> | |
| 3411 | - </field> <field> <name>fcno36</name> | |
| 3412 | - <rename/> | |
| 3413 | - <length>-2</length> | |
| 3414 | - <precision>-2</precision> | |
| 3415 | - </field> <field> <name>fcno37</name> | |
| 3416 | - <rename/> | |
| 3417 | - <length>-2</length> | |
| 3418 | - <precision>-2</precision> | |
| 3419 | - </field> <field> <name>fcno38</name> | |
| 3420 | - <rename/> | |
| 3421 | - <length>-2</length> | |
| 3422 | - <precision>-2</precision> | |
| 3423 | - </field> <field> <name>fcno39</name> | |
| 3424 | - <rename/> | |
| 3425 | - <length>-2</length> | |
| 3426 | - <precision>-2</precision> | |
| 3427 | - </field> <field> <name>fcno40</name> | |
| 3428 | - <rename/> | |
| 3429 | - <length>-2</length> | |
| 3430 | - <precision>-2</precision> | |
| 3431 | - </field> <field> <name>fcno41</name> | |
| 3432 | - <rename/> | |
| 3433 | - <length>-2</length> | |
| 3434 | - <precision>-2</precision> | |
| 3435 | - </field> <field> <name>fcno42</name> | |
| 3436 | - <rename/> | |
| 3437 | - <length>-2</length> | |
| 3438 | - <precision>-2</precision> | |
| 3439 | - </field> <field> <name>fcno43</name> | |
| 3440 | - <rename/> | |
| 3441 | - <length>-2</length> | |
| 3442 | - <precision>-2</precision> | |
| 3443 | - </field> <field> <name>fcno44</name> | |
| 3444 | - <rename/> | |
| 3445 | - <length>-2</length> | |
| 3446 | - <precision>-2</precision> | |
| 3447 | - </field> <field> <name>fcno45</name> | |
| 3448 | - <rename/> | |
| 3449 | - <length>-2</length> | |
| 3450 | - <precision>-2</precision> | |
| 3451 | - </field> <field> <name>fcno46</name> | |
| 3452 | - <rename/> | |
| 3453 | - <length>-2</length> | |
| 3454 | - <precision>-2</precision> | |
| 3455 | - </field> <field> <name>fcno47</name> | |
| 3456 | - <rename/> | |
| 3457 | - <length>-2</length> | |
| 3458 | - <precision>-2</precision> | |
| 3459 | - </field> <field> <name>fcno48</name> | |
| 3460 | - <rename/> | |
| 3461 | - <length>-2</length> | |
| 3462 | - <precision>-2</precision> | |
| 3463 | - </field> <field> <name>fcno49</name> | |
| 3464 | - <rename/> | |
| 3465 | - <length>-2</length> | |
| 3466 | - <precision>-2</precision> | |
| 3467 | - </field> <field> <name>fcno50</name> | |
| 3468 | - <rename/> | |
| 3469 | - <length>-2</length> | |
| 3470 | - <precision>-2</precision> | |
| 3471 | - </field> <field> <name>fcno51</name> | |
| 3472 | - <rename/> | |
| 3473 | - <length>-2</length> | |
| 3474 | - <precision>-2</precision> | |
| 3475 | - </field> <field> <name>fcno52</name> | |
| 3476 | - <rename/> | |
| 3477 | - <length>-2</length> | |
| 3478 | - <precision>-2</precision> | |
| 3479 | - </field> <field> <name>fcno53</name> | |
| 3480 | - <rename/> | |
| 3481 | - <length>-2</length> | |
| 3482 | - <precision>-2</precision> | |
| 3483 | - </field> <field> <name>fcno54</name> | |
| 3484 | - <rename/> | |
| 3485 | - <length>-2</length> | |
| 3486 | - <precision>-2</precision> | |
| 3487 | - </field> <field> <name>fcno55</name> | |
| 3488 | - <rename/> | |
| 3489 | - <length>-2</length> | |
| 3490 | - <precision>-2</precision> | |
| 3491 | - </field> <field> <name>fcno56</name> | |
| 3492 | - <rename/> | |
| 3493 | - <length>-2</length> | |
| 3494 | - <precision>-2</precision> | |
| 3495 | - </field> <field> <name>fcno57</name> | |
| 3496 | - <rename/> | |
| 3497 | - <length>-2</length> | |
| 3498 | - <precision>-2</precision> | |
| 3499 | - </field> <field> <name>fcno58</name> | |
| 3500 | - <rename/> | |
| 3501 | - <length>-2</length> | |
| 3502 | - <precision>-2</precision> | |
| 3503 | - </field> <field> <name>fcno59</name> | |
| 3504 | - <rename/> | |
| 3505 | - <length>-2</length> | |
| 3506 | - <precision>-2</precision> | |
| 3507 | - </field> <field> <name>fcno60</name> | |
| 3508 | - <rename/> | |
| 3509 | - <length>-2</length> | |
| 3510 | - <precision>-2</precision> | |
| 3511 | - </field> <field> <name>fcno61</name> | |
| 3512 | - <rename/> | |
| 3513 | - <length>-2</length> | |
| 3514 | - <precision>-2</precision> | |
| 3515 | - </field> <field> <name>fcno62</name> | |
| 3516 | - <rename/> | |
| 3517 | - <length>-2</length> | |
| 3518 | - <precision>-2</precision> | |
| 3519 | - </field> <field> <name>fcno63</name> | |
| 3520 | - <rename/> | |
| 3521 | - <length>-2</length> | |
| 3522 | - <precision>-2</precision> | |
| 3523 | - </field> <field> <name>fcno64</name> | |
| 3524 | - <rename/> | |
| 3525 | - <length>-2</length> | |
| 3526 | - <precision>-2</precision> | |
| 3527 | - </field> <field> <name>fcno65</name> | |
| 3528 | - <rename/> | |
| 3529 | - <length>-2</length> | |
| 3530 | - <precision>-2</precision> | |
| 3531 | - </field> <field> <name>fcno66</name> | |
| 3532 | - <rename/> | |
| 3533 | - <length>-2</length> | |
| 3534 | - <precision>-2</precision> | |
| 3535 | - </field> <field> <name>fcno67</name> | |
| 3536 | - <rename/> | |
| 3537 | - <length>-2</length> | |
| 3538 | - <precision>-2</precision> | |
| 3539 | - </field> <field> <name>fcno68</name> | |
| 3540 | - <rename/> | |
| 3541 | - <length>-2</length> | |
| 3542 | - <precision>-2</precision> | |
| 3543 | - </field> <field> <name>fcno69</name> | |
| 3544 | - <rename/> | |
| 3545 | - <length>-2</length> | |
| 3546 | - <precision>-2</precision> | |
| 3547 | - </field> <field> <name>fcno70</name> | |
| 3548 | - <rename/> | |
| 3549 | - <length>-2</length> | |
| 3550 | - <precision>-2</precision> | |
| 3551 | - </field> <field> <name>fcno71</name> | |
| 3552 | - <rename/> | |
| 3553 | - <length>-2</length> | |
| 3554 | - <precision>-2</precision> | |
| 3555 | - </field> <field> <name>fcno72</name> | |
| 3556 | - <rename/> | |
| 3557 | - <length>-2</length> | |
| 3558 | - <precision>-2</precision> | |
| 3559 | - </field> <field> <name>fcno73</name> | |
| 3560 | - <rename/> | |
| 3561 | - <length>-2</length> | |
| 3562 | - <precision>-2</precision> | |
| 3563 | - </field> <field> <name>fcno74</name> | |
| 3564 | - <rename/> | |
| 3565 | - <length>-2</length> | |
| 3566 | - <precision>-2</precision> | |
| 3567 | - </field> <field> <name>fcno75</name> | |
| 3568 | - <rename/> | |
| 3569 | - <length>-2</length> | |
| 3570 | - <precision>-2</precision> | |
| 3571 | - </field> <field> <name>fcno76</name> | |
| 3572 | - <rename/> | |
| 3573 | - <length>-2</length> | |
| 3574 | - <precision>-2</precision> | |
| 3575 | - </field> <field> <name>fcno77</name> | |
| 3576 | - <rename/> | |
| 3577 | - <length>-2</length> | |
| 3578 | - <precision>-2</precision> | |
| 3579 | - </field> <field> <name>fcno78</name> | |
| 3580 | - <rename/> | |
| 3581 | - <length>-2</length> | |
| 3582 | - <precision>-2</precision> | |
| 3583 | - </field> <field> <name>fcno79</name> | |
| 3584 | - <rename/> | |
| 3585 | - <length>-2</length> | |
| 3586 | - <precision>-2</precision> | |
| 3587 | - </field> <field> <name>fcno80</name> | |
| 3588 | - <rename/> | |
| 3589 | - <length>-2</length> | |
| 3590 | - <precision>-2</precision> | |
| 3591 | - </field> <field> <name>fcno81</name> | |
| 3592 | - <rename/> | |
| 3593 | - <length>-2</length> | |
| 3594 | - <precision>-2</precision> | |
| 3595 | - </field> <field> <name>fcno82</name> | |
| 3596 | - <rename/> | |
| 3597 | - <length>-2</length> | |
| 3598 | - <precision>-2</precision> | |
| 3599 | - </field> <field> <name>fcno83</name> | |
| 3600 | - <rename/> | |
| 3601 | - <length>-2</length> | |
| 3602 | - <precision>-2</precision> | |
| 3603 | - </field> <field> <name>fcno84</name> | |
| 3604 | - <rename/> | |
| 3605 | - <length>-2</length> | |
| 3606 | - <precision>-2</precision> | |
| 3607 | - </field> <field> <name>fcno85</name> | |
| 3608 | - <rename/> | |
| 3609 | - <length>-2</length> | |
| 3610 | - <precision>-2</precision> | |
| 3611 | - </field> <field> <name>fcno86</name> | |
| 3612 | - <rename/> | |
| 3613 | - <length>-2</length> | |
| 3614 | - <precision>-2</precision> | |
| 3615 | - </field> <field> <name>fcno87</name> | |
| 3616 | - <rename/> | |
| 3617 | - <length>-2</length> | |
| 3618 | - <precision>-2</precision> | |
| 3619 | - </field> <field> <name>fcno88</name> | |
| 3620 | - <rename/> | |
| 3621 | - <length>-2</length> | |
| 3622 | - <precision>-2</precision> | |
| 3623 | - </field> <field> <name>fcno89</name> | |
| 3624 | - <rename/> | |
| 3625 | - <length>-2</length> | |
| 3626 | - <precision>-2</precision> | |
| 3627 | - </field> <field> <name>fcno90</name> | |
| 3628 | - <rename/> | |
| 3629 | - <length>-2</length> | |
| 3630 | - <precision>-2</precision> | |
| 3631 | - </field> <field> <name>fcno91</name> | |
| 3632 | - <rename/> | |
| 3633 | - <length>-2</length> | |
| 3634 | - <precision>-2</precision> | |
| 3635 | - </field> <field> <name>fcno92</name> | |
| 3636 | - <rename/> | |
| 3637 | - <length>-2</length> | |
| 3638 | - <precision>-2</precision> | |
| 3639 | - </field> <field> <name>fcno93</name> | |
| 3640 | - <rename/> | |
| 3641 | - <length>-2</length> | |
| 3642 | - <precision>-2</precision> | |
| 3643 | - </field> <field> <name>fcno94</name> | |
| 3644 | - <rename/> | |
| 3645 | - <length>-2</length> | |
| 3646 | - <precision>-2</precision> | |
| 3647 | - </field> <field> <name>fcno95</name> | |
| 3648 | - <rename/> | |
| 3649 | - <length>-2</length> | |
| 3650 | - <precision>-2</precision> | |
| 3651 | - </field> <field> <name>fcno96</name> | |
| 3652 | - <rename/> | |
| 3653 | - <length>-2</length> | |
| 3654 | - <precision>-2</precision> | |
| 3655 | - </field> <field> <name>fcno97</name> | |
| 3656 | - <rename/> | |
| 3657 | - <length>-2</length> | |
| 3658 | - <precision>-2</precision> | |
| 3659 | - </field> <field> <name>fcno98</name> | |
| 3660 | - <rename/> | |
| 3661 | - <length>-2</length> | |
| 3662 | - <precision>-2</precision> | |
| 3663 | - </field> <field> <name>fcno99</name> | |
| 3664 | - <rename/> | |
| 3665 | - <length>-2</length> | |
| 3666 | - <precision>-2</precision> | |
| 3667 | - </field> <field> <name>fcno100</name> | |
| 3668 | - <rename/> | |
| 3669 | - <length>-2</length> | |
| 3670 | - <precision>-2</precision> | |
| 3671 | - </field> <field> <name>fcno101</name> | |
| 3672 | - <rename/> | |
| 3673 | - <length>-2</length> | |
| 3674 | - <precision>-2</precision> | |
| 3675 | - </field> <field> <name>fcno102</name> | |
| 3676 | - <rename/> | |
| 3677 | - <length>-2</length> | |
| 3678 | - <precision>-2</precision> | |
| 3679 | - </field> <field> <name>fcno103</name> | |
| 3680 | - <rename/> | |
| 3681 | - <length>-2</length> | |
| 3682 | - <precision>-2</precision> | |
| 3683 | - </field> <field> <name>fcno104</name> | |
| 3684 | - <rename/> | |
| 3685 | - <length>-2</length> | |
| 3686 | - <precision>-2</precision> | |
| 3687 | - </field> <field> <name>fcno105</name> | |
| 3688 | - <rename/> | |
| 3689 | - <length>-2</length> | |
| 3690 | - <precision>-2</precision> | |
| 3691 | - </field> <field> <name>fcno106</name> | |
| 3692 | - <rename/> | |
| 3693 | - <length>-2</length> | |
| 3694 | - <precision>-2</precision> | |
| 3695 | - </field> <field> <name>fcno107</name> | |
| 3696 | - <rename/> | |
| 3697 | - <length>-2</length> | |
| 3698 | - <precision>-2</precision> | |
| 3699 | - </field> <field> <name>fcno108</name> | |
| 3700 | - <rename/> | |
| 3701 | - <length>-2</length> | |
| 3702 | - <precision>-2</precision> | |
| 3703 | - </field> <field> <name>fcno109</name> | |
| 3704 | - <rename/> | |
| 3705 | - <length>-2</length> | |
| 3706 | - <precision>-2</precision> | |
| 3707 | - </field> <field> <name>fcno110</name> | |
| 3708 | - <rename/> | |
| 3709 | - <length>-2</length> | |
| 3710 | - <precision>-2</precision> | |
| 3711 | - </field> <field> <name>fcno111</name> | |
| 3712 | - <rename/> | |
| 3713 | - <length>-2</length> | |
| 3714 | - <precision>-2</precision> | |
| 3715 | - </field> <field> <name>fcno112</name> | |
| 3716 | - <rename/> | |
| 3717 | - <length>-2</length> | |
| 3718 | - <precision>-2</precision> | |
| 3719 | - </field> <field> <name>fcno113</name> | |
| 3720 | - <rename/> | |
| 3721 | - <length>-2</length> | |
| 3722 | - <precision>-2</precision> | |
| 3723 | - </field> <field> <name>fcno114</name> | |
| 3724 | - <rename/> | |
| 3725 | - <length>-2</length> | |
| 3726 | - <precision>-2</precision> | |
| 3727 | - </field> <field> <name>fcno115</name> | |
| 3728 | - <rename/> | |
| 3729 | - <length>-2</length> | |
| 3730 | - <precision>-2</precision> | |
| 3731 | - </field> <field> <name>fcno116</name> | |
| 3732 | - <rename/> | |
| 3733 | - <length>-2</length> | |
| 3734 | - <precision>-2</precision> | |
| 3735 | - </field> <field> <name>fcno117</name> | |
| 3736 | - <rename/> | |
| 3737 | - <length>-2</length> | |
| 3738 | - <precision>-2</precision> | |
| 3739 | - </field> <field> <name>fcno118</name> | |
| 3740 | - <rename/> | |
| 3741 | - <length>-2</length> | |
| 3742 | - <precision>-2</precision> | |
| 3743 | - </field> <field> <name>fcno119</name> | |
| 3744 | - <rename/> | |
| 3745 | - <length>-2</length> | |
| 3746 | - <precision>-2</precision> | |
| 3747 | - </field> <field> <name>fcno120</name> | |
| 3748 | - <rename/> | |
| 3749 | - <length>-2</length> | |
| 3750 | - <precision>-2</precision> | |
| 3751 | - </field> <field> <name>fcno121</name> | |
| 3752 | - <rename/> | |
| 3753 | - <length>-2</length> | |
| 3754 | - <precision>-2</precision> | |
| 3755 | - </field> <field> <name>fcno122</name> | |
| 3756 | - <rename/> | |
| 3757 | - <length>-2</length> | |
| 3758 | - <precision>-2</precision> | |
| 3759 | - </field> <field> <name>fcno123</name> | |
| 3760 | - <rename/> | |
| 3761 | - <length>-2</length> | |
| 3762 | - <precision>-2</precision> | |
| 3763 | - </field> <field> <name>fcno124</name> | |
| 3764 | - <rename/> | |
| 3765 | - <length>-2</length> | |
| 3766 | - <precision>-2</precision> | |
| 3767 | - </field> <field> <name>fcno125</name> | |
| 3768 | - <rename/> | |
| 3769 | - <length>-2</length> | |
| 3770 | - <precision>-2</precision> | |
| 3771 | - </field> <field> <name>fcno126</name> | |
| 3772 | - <rename/> | |
| 3773 | - <length>-2</length> | |
| 3774 | - <precision>-2</precision> | |
| 3775 | - </field> <field> <name>fcno127</name> | |
| 3776 | - <rename/> | |
| 3777 | - <length>-2</length> | |
| 3778 | - <precision>-2</precision> | |
| 3779 | - </field> <field> <name>fcno128</name> | |
| 3780 | - <rename/> | |
| 3781 | - <length>-2</length> | |
| 3782 | - <precision>-2</precision> | |
| 3783 | - </field> <field> <name>fcno129</name> | |
| 3784 | - <rename/> | |
| 3785 | - <length>-2</length> | |
| 3786 | - <precision>-2</precision> | |
| 3787 | - </field> <field> <name>fcno130</name> | |
| 3788 | - <rename/> | |
| 3789 | - <length>-2</length> | |
| 3790 | - <precision>-2</precision> | |
| 3791 | - </field> <field> <name>fcno131</name> | |
| 3792 | - <rename/> | |
| 3793 | - <length>-2</length> | |
| 3794 | - <precision>-2</precision> | |
| 3795 | - </field> <field> <name>fcno132</name> | |
| 3796 | - <rename/> | |
| 3797 | - <length>-2</length> | |
| 3798 | - <precision>-2</precision> | |
| 3799 | - </field> <field> <name>fcno133</name> | |
| 3800 | - <rename/> | |
| 3801 | - <length>-2</length> | |
| 3802 | - <precision>-2</precision> | |
| 3803 | - </field> <field> <name>fcno134</name> | |
| 3804 | - <rename/> | |
| 3805 | - <length>-2</length> | |
| 3806 | - <precision>-2</precision> | |
| 3807 | - </field> <field> <name>fcno135</name> | |
| 3808 | - <rename/> | |
| 3809 | - <length>-2</length> | |
| 3810 | - <precision>-2</precision> | |
| 3811 | - </field> <field> <name>fcno136</name> | |
| 3812 | - <rename/> | |
| 3813 | - <length>-2</length> | |
| 3814 | - <precision>-2</precision> | |
| 3815 | - </field> <field> <name>fcno137</name> | |
| 3816 | - <rename/> | |
| 3817 | - <length>-2</length> | |
| 3818 | - <precision>-2</precision> | |
| 3819 | - </field> <field> <name>fcno138</name> | |
| 3820 | - <rename/> | |
| 3821 | - <length>-2</length> | |
| 3822 | - <precision>-2</precision> | |
| 3823 | - </field> <field> <name>fcno139</name> | |
| 3824 | - <rename/> | |
| 3825 | - <length>-2</length> | |
| 3826 | - <precision>-2</precision> | |
| 3827 | - </field> <field> <name>fcno140</name> | |
| 3828 | - <rename/> | |
| 3829 | - <length>-2</length> | |
| 3830 | - <precision>-2</precision> | |
| 3831 | - </field> <field> <name>fcno141</name> | |
| 3832 | - <rename/> | |
| 3833 | - <length>-2</length> | |
| 3834 | - <precision>-2</precision> | |
| 3835 | - </field> <field> <name>fcno142</name> | |
| 3836 | - <rename/> | |
| 3837 | - <length>-2</length> | |
| 3838 | - <precision>-2</precision> | |
| 3839 | - </field> <field> <name>fcno143</name> | |
| 3840 | - <rename/> | |
| 3841 | - <length>-2</length> | |
| 3842 | - <precision>-2</precision> | |
| 3843 | - </field> <field> <name>fcno144</name> | |
| 3844 | - <rename/> | |
| 3845 | - <length>-2</length> | |
| 3846 | - <precision>-2</precision> | |
| 3847 | - </field> <field> <name>fcno145</name> | |
| 3848 | - <rename/> | |
| 3849 | - <length>-2</length> | |
| 3850 | - <precision>-2</precision> | |
| 3851 | - </field> <field> <name>fcno146</name> | |
| 3852 | - <rename/> | |
| 3853 | - <length>-2</length> | |
| 3854 | - <precision>-2</precision> | |
| 3855 | - </field> <field> <name>fcno147</name> | |
| 3856 | - <rename/> | |
| 3857 | - <length>-2</length> | |
| 3858 | - <precision>-2</precision> | |
| 3859 | - </field> <field> <name>fcno148</name> | |
| 3860 | - <rename/> | |
| 3861 | - <length>-2</length> | |
| 3862 | - <precision>-2</precision> | |
| 3863 | - </field> <field> <name>fcno149</name> | |
| 3864 | - <rename/> | |
| 3865 | - <length>-2</length> | |
| 3866 | - <precision>-2</precision> | |
| 3867 | - </field> <field> <name>fcno150</name> | |
| 3868 | - <rename/> | |
| 3869 | - <length>-2</length> | |
| 3870 | - <precision>-2</precision> | |
| 3871 | - </field> <select_unspecified>N</select_unspecified> | |
| 3872 | - </fields> <cluster_schema/> | |
| 3873 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3874 | - <xloc>691</xloc> | |
| 3875 | - <yloc>361</yloc> | |
| 3876 | - <draw>Y</draw> | |
| 3877 | - </GUI> | |
| 3878 | - </step> | |
| 3879 | - | |
| 3880 | - <step> | |
| 3881 | - <name>合并内容</name> | |
| 3882 | - <type>ScriptValueMod</type> | |
| 3883 | - <description/> | |
| 3884 | - <distribute>Y</distribute> | |
| 3885 | - <custom_distribution/> | |
| 3886 | - <copies>1</copies> | |
| 3887 | - <partitioning> | |
| 3888 | - <method>none</method> | |
| 3889 | - <schema_name/> | |
| 3890 | - </partitioning> | |
| 3891 | - <compatible>N</compatible> | |
| 3892 | - <optimizationLevel>9</optimizationLevel> | |
| 3893 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3894 | - <jsScript_name>Script 1</jsScript_name> | |
| 3895 | - <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_code || 'null');
all_content_array.push(zdz_code || 'null');
all_content_array.push(ists);

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 3896 | - </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 3897 | - <rename>all_content</rename> | |
| 3898 | - <type>String</type> | |
| 3899 | - <length>-1</length> | |
| 3900 | - <precision>-1</precision> | |
| 3901 | - <replace>N</replace> | |
| 3902 | - </field> </fields> <cluster_schema/> | |
| 3903 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3904 | - <xloc>441</xloc> | |
| 3905 | - <yloc>84</yloc> | |
| 3906 | - <draw>Y</draw> | |
| 3907 | - </GUI> | |
| 3908 | - </step> | |
| 3909 | - | |
| 3910 | - <step> | |
| 3911 | - <name>获取变量</name> | |
| 3912 | - <type>GetVariable</type> | |
| 3913 | - <description/> | |
| 3914 | - <distribute>Y</distribute> | |
| 3915 | - <custom_distribution/> | |
| 3916 | - <copies>1</copies> | |
| 3917 | - <partitioning> | |
| 3918 | - <method>none</method> | |
| 3919 | - <schema_name/> | |
| 3920 | - </partitioning> | |
| 3921 | - <fields> | |
| 3922 | - <field> | |
| 3923 | - <name>xlid_</name> | |
| 3924 | - <variable>${xlid}</variable> | |
| 3925 | - <type>Integer</type> | |
| 3926 | - <format/> | |
| 3927 | - <currency/> | |
| 3928 | - <decimal/> | |
| 3929 | - <group/> | |
| 3930 | - <length>-1</length> | |
| 3931 | - <precision>-1</precision> | |
| 3932 | - <trim_type>none</trim_type> | |
| 3933 | - </field> | |
| 3934 | - <field> | |
| 3935 | - <name>ttid_</name> | |
| 3936 | - <variable>${ttid}</variable> | |
| 3937 | - <type>Number</type> | |
| 3938 | - <format/> | |
| 3939 | - <currency/> | |
| 3940 | - <decimal/> | |
| 3941 | - <group/> | |
| 3942 | - <length>-1</length> | |
| 3943 | - <precision>-1</precision> | |
| 3944 | - <trim_type>none</trim_type> | |
| 3945 | - </field> | |
| 3946 | - </fields> | |
| 3947 | - <cluster_schema/> | |
| 3948 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3949 | - <xloc>45</xloc> | |
| 3950 | - <yloc>189</yloc> | |
| 3951 | - <draw>Y</draw> | |
| 3952 | - </GUI> | |
| 3953 | - </step> | |
| 3954 | - | |
| 3955 | - <step> | |
| 3956 | - <name>表输入</name> | |
| 3957 | - <type>TableInput</type> | |
| 3958 | - <description/> | |
| 3959 | - <distribute>Y</distribute> | |
| 3960 | - <custom_distribution/> | |
| 3961 | - <copies>1</copies> | |
| 3962 | - <partitioning> | |
| 3963 | - <method>none</method> | |
| 3964 | - <schema_name/> | |
| 3965 | - </partitioning> | |
| 3966 | - <connection>bus_control_variable</connection> | |
| 3967 | - <sql>select 
t.id as id
, concat(g.id, '_', g.lp_name) as lp
, g.xl as xl
, qdz_code
, qdz_name
, zdz_code
, zdz_name
, fcsj
, jhlc
, bc_type 
, bcs
, fcno
, xl_dir
, isfb
, ists
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 g.lp_no asc, t.bcs asc</sql> | |
| 3968 | - <limit>0</limit> | |
| 3969 | - <lookup>获取变量</lookup> | |
| 3970 | - <execute_each_row>N</execute_each_row> | |
| 3971 | - <variables_active>Y</variables_active> | |
| 3972 | - <lazy_conversion_active>N</lazy_conversion_active> | |
| 3973 | - <cluster_schema/> | |
| 3974 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3975 | - <xloc>130</xloc> | |
| 3976 | - <yloc>85</yloc> | |
| 3977 | - <draw>Y</draw> | |
| 3978 | - </GUI> | |
| 3979 | - </step> | |
| 3980 | - | |
| 3981 | - <step> | |
| 3982 | - <name>计算发车站名</name> | |
| 3983 | - <type>ScriptValueMod</type> | |
| 3984 | - <description/> | |
| 3985 | - <distribute>Y</distribute> | |
| 3986 | - <custom_distribution/> | |
| 3987 | - <copies>1</copies> | |
| 3988 | - <partitioning> | |
| 3989 | - <method>none</method> | |
| 3990 | - <schema_name/> | |
| 3991 | - </partitioning> | |
| 3992 | - <compatible>N</compatible> | |
| 3993 | - <optimizationLevel>9</optimizationLevel> | |
| 3994 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3995 | - <jsScript_name>Script 1</jsScript_name> | |
| 3996 | - <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdz_name;
}</jsScript_script> | |
| 3997 | - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 3998 | - <rename>fczdName</rename> | |
| 3999 | - <type>String</type> | |
| 4000 | - <length>-1</length> | |
| 4001 | - <precision>-1</precision> | |
| 4002 | - <replace>N</replace> | |
| 4003 | - </field> </fields> <cluster_schema/> | |
| 4004 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4005 | - <xloc>282</xloc> | |
| 4006 | - <yloc>82</yloc> | |
| 4007 | - <draw>Y</draw> | |
| 4008 | - </GUI> | |
| 4009 | - </step> | |
| 4010 | - | |
| 4011 | - <step_error_handling> | |
| 4012 | - </step_error_handling> | |
| 4013 | - <slave-step-copy-partition-distribution> | |
| 4014 | -</slave-step-copy-partition-distribution> | |
| 4015 | - <slave_transformation>N</slave_transformation> | |
| 4016 | - | |
| 4017 | -</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>79</default_value> | |
| 20 | + <description>时刻表id</description> | |
| 21 | + </parameter> | |
| 22 | + <parameter> | |
| 23 | + <name>xlid</name> | |
| 24 | + <default_value>63020</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>此处转换excel有问题,
2003格式的xls最多256列,
这里明显超过,所以把所有内容合并成1列,
用,分隔</note> | |
| 94 | + <xloc>316</xloc> | |
| 95 | + <yloc>166</yloc> | |
| 96 | + <width>245</width> | |
| 97 | + <heigth>74</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 | + </notepads> | |
| 114 | + <connection> | |
| 115 | + <name>192.168.168.1_jwgl_dw</name> | |
| 116 | + <server>192.168.168.1</server> | |
| 117 | + <type>ORACLE</type> | |
| 118 | + <access>Native</access> | |
| 119 | + <database>orcl</database> | |
| 120 | + <port>1521</port> | |
| 121 | + <username>jwgl_dw</username> | |
| 122 | + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | |
| 123 | + <servername/> | |
| 124 | + <data_tablespace/> | |
| 125 | + <index_tablespace/> | |
| 126 | + <attributes> | |
| 127 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 128 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 129 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 130 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 131 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 132 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 133 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 134 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 135 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 136 | + </attributes> | |
| 137 | + </connection> | |
| 138 | + <connection> | |
| 139 | + <name>bus_control_variable</name> | |
| 140 | + <server>${v_db_ip}</server> | |
| 141 | + <type>MYSQL</type> | |
| 142 | + <access>Native</access> | |
| 143 | + <database>${v_db_dname}</database> | |
| 144 | + <port>3306</port> | |
| 145 | + <username>${v_db_uname}</username> | |
| 146 | + <password>${v_db_pwd}</password> | |
| 147 | + <servername/> | |
| 148 | + <data_tablespace/> | |
| 149 | + <index_tablespace/> | |
| 150 | + <attributes> | |
| 151 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 152 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 153 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 154 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 155 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 156 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 157 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 158 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 159 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 160 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 161 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 162 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 163 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 164 | + </attributes> | |
| 165 | + </connection> | |
| 166 | + <connection> | |
| 167 | + <name>bus_control_公司_201</name> | |
| 168 | + <server>localhost</server> | |
| 169 | + <type>MYSQL</type> | |
| 170 | + <access>Native</access> | |
| 171 | + <database>control</database> | |
| 172 | + <port>3306</port> | |
| 173 | + <username>root</username> | |
| 174 | + <password>Encrypted </password> | |
| 175 | + <servername/> | |
| 176 | + <data_tablespace/> | |
| 177 | + <index_tablespace/> | |
| 178 | + <attributes> | |
| 179 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 180 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 181 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 182 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 183 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 184 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 185 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 186 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 187 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 188 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 189 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 190 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 191 | + </attributes> | |
| 192 | + </connection> | |
| 193 | + <connection> | |
| 194 | + <name>bus_control_本机</name> | |
| 195 | + <server>localhost</server> | |
| 196 | + <type>MYSQL</type> | |
| 197 | + <access>Native</access> | |
| 198 | + <database>control</database> | |
| 199 | + <port>3306</port> | |
| 200 | + <username>root</username> | |
| 201 | + <password>Encrypted </password> | |
| 202 | + <servername/> | |
| 203 | + <data_tablespace/> | |
| 204 | + <index_tablespace/> | |
| 205 | + <attributes> | |
| 206 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 207 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 208 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 209 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 210 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 211 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 212 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 213 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 214 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 215 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 216 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 217 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 218 | + </attributes> | |
| 219 | + </connection> | |
| 220 | + <connection> | |
| 221 | + <name>JGJW_VM</name> | |
| 222 | + <server>192.168.198.240</server> | |
| 223 | + <type>ORACLE</type> | |
| 224 | + <access>Native</access> | |
| 225 | + <database>orcl</database> | |
| 226 | + <port>1521</port> | |
| 227 | + <username>jwgl</username> | |
| 228 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 229 | + <servername/> | |
| 230 | + <data_tablespace/> | |
| 231 | + <index_tablespace/> | |
| 232 | + <attributes> | |
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 235 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 236 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 237 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 238 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 239 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 240 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 241 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | + </attributes> | |
| 243 | + </connection> | |
| 244 | + <connection> | |
| 245 | + <name>NHJW_VM</name> | |
| 246 | + <server>192.168.198.240</server> | |
| 247 | + <type>ORACLE</type> | |
| 248 | + <access>Native</access> | |
| 249 | + <database>orcl</database> | |
| 250 | + <port>1521</port> | |
| 251 | + <username>nhjw</username> | |
| 252 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password> | |
| 253 | + <servername/> | |
| 254 | + <data_tablespace/> | |
| 255 | + <index_tablespace/> | |
| 256 | + <attributes> | |
| 257 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 261 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 262 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 263 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 264 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 265 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 266 | + </attributes> | |
| 267 | + </connection> | |
| 268 | + <connection> | |
| 269 | + <name>PDGJ_VM</name> | |
| 270 | + <server>192.168.198.240</server> | |
| 271 | + <type>ORACLE</type> | |
| 272 | + <access>Native</access> | |
| 273 | + <database>orcl</database> | |
| 274 | + <port>1521</port> | |
| 275 | + <username>pdgj</username> | |
| 276 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password> | |
| 277 | + <servername/> | |
| 278 | + <data_tablespace/> | |
| 279 | + <index_tablespace/> | |
| 280 | + <attributes> | |
| 281 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 282 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 283 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 284 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 285 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 286 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 287 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 288 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 289 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 290 | + </attributes> | |
| 291 | + </connection> | |
| 292 | + <connection> | |
| 293 | + <name>SNJW_VM</name> | |
| 294 | + <server>192.168.198.240</server> | |
| 295 | + <type>ORACLE</type> | |
| 296 | + <access>Native</access> | |
| 297 | + <database>orcl</database> | |
| 298 | + <port>1521</port> | |
| 299 | + <username>snjw</username> | |
| 300 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password> | |
| 301 | + <servername/> | |
| 302 | + <data_tablespace/> | |
| 303 | + <index_tablespace/> | |
| 304 | + <attributes> | |
| 305 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 306 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 307 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 308 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 309 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 310 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 311 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 312 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 313 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 314 | + </attributes> | |
| 315 | + </connection> | |
| 316 | + <connection> | |
| 317 | + <name>xlab_mysql_youle</name> | |
| 318 | + <server>101.231.124.8</server> | |
| 319 | + <type>MYSQL</type> | |
| 320 | + <access>Native</access> | |
| 321 | + <database>xlab_youle</database> | |
| 322 | + <port>45687</port> | |
| 323 | + <username>xlab-youle</username> | |
| 324 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 325 | + <servername/> | |
| 326 | + <data_tablespace/> | |
| 327 | + <index_tablespace/> | |
| 328 | + <attributes> | |
| 329 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 330 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 331 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 332 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 333 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 334 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 335 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 336 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 337 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 338 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 339 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 340 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 341 | + </attributes> | |
| 342 | + </connection> | |
| 343 | + <connection> | |
| 344 | + <name>xlab_mysql_youle(本机)</name> | |
| 345 | + <server>localhost</server> | |
| 346 | + <type>MYSQL</type> | |
| 347 | + <access>Native</access> | |
| 348 | + <database>xlab_youle</database> | |
| 349 | + <port>3306</port> | |
| 350 | + <username>root</username> | |
| 351 | + <password>Encrypted </password> | |
| 352 | + <servername/> | |
| 353 | + <data_tablespace/> | |
| 354 | + <index_tablespace/> | |
| 355 | + <attributes> | |
| 356 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 357 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 358 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 359 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 360 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 361 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 362 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 363 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 364 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 365 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 366 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 367 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 368 | + </attributes> | |
| 369 | + </connection> | |
| 370 | + <connection> | |
| 371 | + <name>xlab_youle</name> | |
| 372 | + <server/> | |
| 373 | + <type>MYSQL</type> | |
| 374 | + <access>JNDI</access> | |
| 375 | + <database>xlab_youle</database> | |
| 376 | + <port>1521</port> | |
| 377 | + <username/> | |
| 378 | + <password>Encrypted </password> | |
| 379 | + <servername/> | |
| 380 | + <data_tablespace/> | |
| 381 | + <index_tablespace/> | |
| 382 | + <attributes> | |
| 383 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 384 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 385 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 386 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 387 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 388 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 389 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 390 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 391 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 392 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 393 | + </attributes> | |
| 394 | + </connection> | |
| 395 | + <connection> | |
| 396 | + <name>YGJW_VM</name> | |
| 397 | + <server>192.168.198.240</server> | |
| 398 | + <type>ORACLE</type> | |
| 399 | + <access>Native</access> | |
| 400 | + <database>orcl</database> | |
| 401 | + <port>1521</port> | |
| 402 | + <username>ygjw</username> | |
| 403 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 404 | + <servername/> | |
| 405 | + <data_tablespace/> | |
| 406 | + <index_tablespace/> | |
| 407 | + <attributes> | |
| 408 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 409 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 410 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 411 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 412 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 413 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 414 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 415 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 416 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 417 | + </attributes> | |
| 418 | + </connection> | |
| 419 | + <connection> | |
| 420 | + <name>公司jgjw</name> | |
| 421 | + <server>192.168.168.1</server> | |
| 422 | + <type>ORACLE</type> | |
| 423 | + <access>Native</access> | |
| 424 | + <database>orcl</database> | |
| 425 | + <port>1521</port> | |
| 426 | + <username>jwgl</username> | |
| 427 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 428 | + <servername/> | |
| 429 | + <data_tablespace/> | |
| 430 | + <index_tablespace/> | |
| 431 | + <attributes> | |
| 432 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 433 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 434 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 435 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 436 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 437 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 438 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 439 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 440 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 441 | + </attributes> | |
| 442 | + </connection> | |
| 443 | + <connection> | |
| 444 | + <name>公司snjw</name> | |
| 445 | + <server>192.168.168.1</server> | |
| 446 | + <type>ORACLE</type> | |
| 447 | + <access>Native</access> | |
| 448 | + <database>orcl</database> | |
| 449 | + <port>1521</port> | |
| 450 | + <username>snjw</username> | |
| 451 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password> | |
| 452 | + <servername/> | |
| 453 | + <data_tablespace/> | |
| 454 | + <index_tablespace/> | |
| 455 | + <attributes> | |
| 456 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 457 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 458 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 459 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 460 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 461 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 462 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 463 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 464 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 465 | + </attributes> | |
| 466 | + </connection> | |
| 467 | + <connection> | |
| 468 | + <name>公司ygjw</name> | |
| 469 | + <server>192.168.168.1</server> | |
| 470 | + <type>ORACLE</type> | |
| 471 | + <access>Native</access> | |
| 472 | + <database>orcl</database> | |
| 473 | + <port>1521</port> | |
| 474 | + <username>ygjw</username> | |
| 475 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 476 | + <servername/> | |
| 477 | + <data_tablespace/> | |
| 478 | + <index_tablespace/> | |
| 479 | + <attributes> | |
| 480 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 481 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 482 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 483 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 484 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 485 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 486 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 487 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 488 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 489 | + </attributes> | |
| 490 | + </connection> | |
| 491 | + <order> | |
| 492 | + <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> | |
| 493 | + <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 494 | + <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> | |
| 495 | + <hop> <from>计算发车站名</from><to>合并内容</to><enabled>Y</enabled> </hop> | |
| 496 | + <hop> <from>合并内容</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 497 | + <hop> <from>表输入</from><to>计算发车站名</to><enabled>Y</enabled> </hop> | |
| 498 | + </order> | |
| 499 | + <step> | |
| 500 | + <name>Excel输出</name> | |
| 501 | + <type>ExcelOutput</type> | |
| 502 | + <description/> | |
| 503 | + <distribute>Y</distribute> | |
| 504 | + <custom_distribution/> | |
| 505 | + <copies>1</copies> | |
| 506 | + <partitioning> | |
| 507 | + <method>none</method> | |
| 508 | + <schema_name/> | |
| 509 | + </partitioning> | |
| 510 | + <header>Y</header> | |
| 511 | + <footer>N</footer> | |
| 512 | + <encoding/> | |
| 513 | + <append>N</append> | |
| 514 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 515 | + <file> | |
| 516 | + <name>${tempfilepath}</name> | |
| 517 | + <extention>xls</extention> | |
| 518 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 519 | + <create_parent_folder>N</create_parent_folder> | |
| 520 | + <split>N</split> | |
| 521 | + <add_date>N</add_date> | |
| 522 | + <add_time>N</add_time> | |
| 523 | + <SpecifyFormat>N</SpecifyFormat> | |
| 524 | + <date_time_format/> | |
| 525 | + <sheetname>Sheet1</sheetname> | |
| 526 | + <autosizecolums>N</autosizecolums> | |
| 527 | + <nullisblank>N</nullisblank> | |
| 528 | + <protect_sheet>N</protect_sheet> | |
| 529 | + <password>Encrypted </password> | |
| 530 | + <splitevery>0</splitevery> | |
| 531 | + <usetempfiles>N</usetempfiles> | |
| 532 | + <tempdirectory/> | |
| 533 | + </file> | |
| 534 | + <template> | |
| 535 | + <enabled>N</enabled> | |
| 536 | + <append>N</append> | |
| 537 | + <filename>template.xls</filename> | |
| 538 | + </template> | |
| 539 | + <fields> | |
| 540 | + <field> | |
| 541 | + <name>lp</name> | |
| 542 | + <type>String</type> | |
| 543 | + <format/> | |
| 544 | + </field> | |
| 545 | + <field> | |
| 546 | + <name>fcno1</name> | |
| 547 | + <type>String</type> | |
| 548 | + <format/> | |
| 549 | + </field> | |
| 550 | + <field> | |
| 551 | + <name>fcno2</name> | |
| 552 | + <type>String</type> | |
| 553 | + <format/> | |
| 554 | + </field> | |
| 555 | + <field> | |
| 556 | + <name>fcno3</name> | |
| 557 | + <type>String</type> | |
| 558 | + <format/> | |
| 559 | + </field> | |
| 560 | + <field> | |
| 561 | + <name>fcno4</name> | |
| 562 | + <type>String</type> | |
| 563 | + <format/> | |
| 564 | + </field> | |
| 565 | + <field> | |
| 566 | + <name>fcno5</name> | |
| 567 | + <type>String</type> | |
| 568 | + <format/> | |
| 569 | + </field> | |
| 570 | + <field> | |
| 571 | + <name>fcno6</name> | |
| 572 | + <type>String</type> | |
| 573 | + <format/> | |
| 574 | + </field> | |
| 575 | + <field> | |
| 576 | + <name>fcno7</name> | |
| 577 | + <type>String</type> | |
| 578 | + <format/> | |
| 579 | + </field> | |
| 580 | + <field> | |
| 581 | + <name>fcno8</name> | |
| 582 | + <type>String</type> | |
| 583 | + <format/> | |
| 584 | + </field> | |
| 585 | + <field> | |
| 586 | + <name>fcno9</name> | |
| 587 | + <type>String</type> | |
| 588 | + <format/> | |
| 589 | + </field> | |
| 590 | + <field> | |
| 591 | + <name>fcno10</name> | |
| 592 | + <type>String</type> | |
| 593 | + <format/> | |
| 594 | + </field> | |
| 595 | + <field> | |
| 596 | + <name>fcno11</name> | |
| 597 | + <type>String</type> | |
| 598 | + <format/> | |
| 599 | + </field> | |
| 600 | + <field> | |
| 601 | + <name>fcno12</name> | |
| 602 | + <type>String</type> | |
| 603 | + <format/> | |
| 604 | + </field> | |
| 605 | + <field> | |
| 606 | + <name>fcno13</name> | |
| 607 | + <type>String</type> | |
| 608 | + <format/> | |
| 609 | + </field> | |
| 610 | + <field> | |
| 611 | + <name>fcno14</name> | |
| 612 | + <type>String</type> | |
| 613 | + <format/> | |
| 614 | + </field> | |
| 615 | + <field> | |
| 616 | + <name>fcno15</name> | |
| 617 | + <type>String</type> | |
| 618 | + <format/> | |
| 619 | + </field> | |
| 620 | + <field> | |
| 621 | + <name>fcno16</name> | |
| 622 | + <type>String</type> | |
| 623 | + <format/> | |
| 624 | + </field> | |
| 625 | + <field> | |
| 626 | + <name>fcno17</name> | |
| 627 | + <type>String</type> | |
| 628 | + <format/> | |
| 629 | + </field> | |
| 630 | + <field> | |
| 631 | + <name>fcno18</name> | |
| 632 | + <type>String</type> | |
| 633 | + <format/> | |
| 634 | + </field> | |
| 635 | + <field> | |
| 636 | + <name>fcno19</name> | |
| 637 | + <type>String</type> | |
| 638 | + <format/> | |
| 639 | + </field> | |
| 640 | + <field> | |
| 641 | + <name>fcno20</name> | |
| 642 | + <type>String</type> | |
| 643 | + <format/> | |
| 644 | + </field> | |
| 645 | + <field> | |
| 646 | + <name>fcno21</name> | |
| 647 | + <type>String</type> | |
| 648 | + <format/> | |
| 649 | + </field> | |
| 650 | + <field> | |
| 651 | + <name>fcno22</name> | |
| 652 | + <type>String</type> | |
| 653 | + <format/> | |
| 654 | + </field> | |
| 655 | + <field> | |
| 656 | + <name>fcno23</name> | |
| 657 | + <type>String</type> | |
| 658 | + <format/> | |
| 659 | + </field> | |
| 660 | + <field> | |
| 661 | + <name>fcno24</name> | |
| 662 | + <type>String</type> | |
| 663 | + <format/> | |
| 664 | + </field> | |
| 665 | + <field> | |
| 666 | + <name>fcno25</name> | |
| 667 | + <type>String</type> | |
| 668 | + <format/> | |
| 669 | + </field> | |
| 670 | + <field> | |
| 671 | + <name>fcno26</name> | |
| 672 | + <type>String</type> | |
| 673 | + <format/> | |
| 674 | + </field> | |
| 675 | + <field> | |
| 676 | + <name>fcno27</name> | |
| 677 | + <type>String</type> | |
| 678 | + <format/> | |
| 679 | + </field> | |
| 680 | + <field> | |
| 681 | + <name>fcno28</name> | |
| 682 | + <type>String</type> | |
| 683 | + <format/> | |
| 684 | + </field> | |
| 685 | + <field> | |
| 686 | + <name>fcno29</name> | |
| 687 | + <type>String</type> | |
| 688 | + <format/> | |
| 689 | + </field> | |
| 690 | + <field> | |
| 691 | + <name>fcno30</name> | |
| 692 | + <type>String</type> | |
| 693 | + <format/> | |
| 694 | + </field> | |
| 695 | + <field> | |
| 696 | + <name>fcno31</name> | |
| 697 | + <type>String</type> | |
| 698 | + <format/> | |
| 699 | + </field> | |
| 700 | + <field> | |
| 701 | + <name>fcno32</name> | |
| 702 | + <type>String</type> | |
| 703 | + <format/> | |
| 704 | + </field> | |
| 705 | + <field> | |
| 706 | + <name>fcno33</name> | |
| 707 | + <type>String</type> | |
| 708 | + <format/> | |
| 709 | + </field> | |
| 710 | + <field> | |
| 711 | + <name>fcno34</name> | |
| 712 | + <type>String</type> | |
| 713 | + <format/> | |
| 714 | + </field> | |
| 715 | + <field> | |
| 716 | + <name>fcno35</name> | |
| 717 | + <type>String</type> | |
| 718 | + <format/> | |
| 719 | + </field> | |
| 720 | + <field> | |
| 721 | + <name>fcno36</name> | |
| 722 | + <type>String</type> | |
| 723 | + <format/> | |
| 724 | + </field> | |
| 725 | + <field> | |
| 726 | + <name>fcno37</name> | |
| 727 | + <type>String</type> | |
| 728 | + <format/> | |
| 729 | + </field> | |
| 730 | + <field> | |
| 731 | + <name>fcno38</name> | |
| 732 | + <type>String</type> | |
| 733 | + <format/> | |
| 734 | + </field> | |
| 735 | + <field> | |
| 736 | + <name>fcno39</name> | |
| 737 | + <type>String</type> | |
| 738 | + <format/> | |
| 739 | + </field> | |
| 740 | + <field> | |
| 741 | + <name>fcno40</name> | |
| 742 | + <type>String</type> | |
| 743 | + <format/> | |
| 744 | + </field> | |
| 745 | + <field> | |
| 746 | + <name>fcno41</name> | |
| 747 | + <type>String</type> | |
| 748 | + <format/> | |
| 749 | + </field> | |
| 750 | + <field> | |
| 751 | + <name>fcno42</name> | |
| 752 | + <type>String</type> | |
| 753 | + <format/> | |
| 754 | + </field> | |
| 755 | + <field> | |
| 756 | + <name>fcno43</name> | |
| 757 | + <type>String</type> | |
| 758 | + <format/> | |
| 759 | + </field> | |
| 760 | + <field> | |
| 761 | + <name>fcno44</name> | |
| 762 | + <type>String</type> | |
| 763 | + <format/> | |
| 764 | + </field> | |
| 765 | + <field> | |
| 766 | + <name>fcno45</name> | |
| 767 | + <type>String</type> | |
| 768 | + <format/> | |
| 769 | + </field> | |
| 770 | + <field> | |
| 771 | + <name>fcno46</name> | |
| 772 | + <type>String</type> | |
| 773 | + <format/> | |
| 774 | + </field> | |
| 775 | + <field> | |
| 776 | + <name>fcno47</name> | |
| 777 | + <type>String</type> | |
| 778 | + <format/> | |
| 779 | + </field> | |
| 780 | + <field> | |
| 781 | + <name>fcno48</name> | |
| 782 | + <type>String</type> | |
| 783 | + <format/> | |
| 784 | + </field> | |
| 785 | + <field> | |
| 786 | + <name>fcno49</name> | |
| 787 | + <type>String</type> | |
| 788 | + <format/> | |
| 789 | + </field> | |
| 790 | + <field> | |
| 791 | + <name>fcno50</name> | |
| 792 | + <type>String</type> | |
| 793 | + <format/> | |
| 794 | + </field> | |
| 795 | + <field> | |
| 796 | + <name>fcno51</name> | |
| 797 | + <type>String</type> | |
| 798 | + <format/> | |
| 799 | + </field> | |
| 800 | + <field> | |
| 801 | + <name>fcno52</name> | |
| 802 | + <type>String</type> | |
| 803 | + <format/> | |
| 804 | + </field> | |
| 805 | + <field> | |
| 806 | + <name>fcno53</name> | |
| 807 | + <type>String</type> | |
| 808 | + <format/> | |
| 809 | + </field> | |
| 810 | + <field> | |
| 811 | + <name>fcno54</name> | |
| 812 | + <type>String</type> | |
| 813 | + <format/> | |
| 814 | + </field> | |
| 815 | + <field> | |
| 816 | + <name>fcno55</name> | |
| 817 | + <type>String</type> | |
| 818 | + <format/> | |
| 819 | + </field> | |
| 820 | + <field> | |
| 821 | + <name>fcno56</name> | |
| 822 | + <type>String</type> | |
| 823 | + <format/> | |
| 824 | + </field> | |
| 825 | + <field> | |
| 826 | + <name>fcno57</name> | |
| 827 | + <type>String</type> | |
| 828 | + <format/> | |
| 829 | + </field> | |
| 830 | + <field> | |
| 831 | + <name>fcno58</name> | |
| 832 | + <type>String</type> | |
| 833 | + <format/> | |
| 834 | + </field> | |
| 835 | + <field> | |
| 836 | + <name>fcno59</name> | |
| 837 | + <type>String</type> | |
| 838 | + <format/> | |
| 839 | + </field> | |
| 840 | + <field> | |
| 841 | + <name>fcno60</name> | |
| 842 | + <type>String</type> | |
| 843 | + <format/> | |
| 844 | + </field> | |
| 845 | + <field> | |
| 846 | + <name>fcno61</name> | |
| 847 | + <type>String</type> | |
| 848 | + <format/> | |
| 849 | + </field> | |
| 850 | + <field> | |
| 851 | + <name>fcno62</name> | |
| 852 | + <type>String</type> | |
| 853 | + <format/> | |
| 854 | + </field> | |
| 855 | + <field> | |
| 856 | + <name>fcno63</name> | |
| 857 | + <type>String</type> | |
| 858 | + <format/> | |
| 859 | + </field> | |
| 860 | + <field> | |
| 861 | + <name>fcno64</name> | |
| 862 | + <type>String</type> | |
| 863 | + <format/> | |
| 864 | + </field> | |
| 865 | + <field> | |
| 866 | + <name>fcno65</name> | |
| 867 | + <type>String</type> | |
| 868 | + <format/> | |
| 869 | + </field> | |
| 870 | + <field> | |
| 871 | + <name>fcno66</name> | |
| 872 | + <type>String</type> | |
| 873 | + <format/> | |
| 874 | + </field> | |
| 875 | + <field> | |
| 876 | + <name>fcno67</name> | |
| 877 | + <type>String</type> | |
| 878 | + <format/> | |
| 879 | + </field> | |
| 880 | + <field> | |
| 881 | + <name>fcno68</name> | |
| 882 | + <type>String</type> | |
| 883 | + <format/> | |
| 884 | + </field> | |
| 885 | + <field> | |
| 886 | + <name>fcno69</name> | |
| 887 | + <type>String</type> | |
| 888 | + <format/> | |
| 889 | + </field> | |
| 890 | + <field> | |
| 891 | + <name>fcno70</name> | |
| 892 | + <type>String</type> | |
| 893 | + <format/> | |
| 894 | + </field> | |
| 895 | + <field> | |
| 896 | + <name>fcno71</name> | |
| 897 | + <type>String</type> | |
| 898 | + <format/> | |
| 899 | + </field> | |
| 900 | + <field> | |
| 901 | + <name>fcno72</name> | |
| 902 | + <type>String</type> | |
| 903 | + <format/> | |
| 904 | + </field> | |
| 905 | + <field> | |
| 906 | + <name>fcno73</name> | |
| 907 | + <type>String</type> | |
| 908 | + <format/> | |
| 909 | + </field> | |
| 910 | + <field> | |
| 911 | + <name>fcno74</name> | |
| 912 | + <type>String</type> | |
| 913 | + <format/> | |
| 914 | + </field> | |
| 915 | + <field> | |
| 916 | + <name>fcno75</name> | |
| 917 | + <type>String</type> | |
| 918 | + <format/> | |
| 919 | + </field> | |
| 920 | + <field> | |
| 921 | + <name>fcno76</name> | |
| 922 | + <type>String</type> | |
| 923 | + <format/> | |
| 924 | + </field> | |
| 925 | + <field> | |
| 926 | + <name>fcno77</name> | |
| 927 | + <type>String</type> | |
| 928 | + <format/> | |
| 929 | + </field> | |
| 930 | + <field> | |
| 931 | + <name>fcno78</name> | |
| 932 | + <type>String</type> | |
| 933 | + <format/> | |
| 934 | + </field> | |
| 935 | + <field> | |
| 936 | + <name>fcno79</name> | |
| 937 | + <type>String</type> | |
| 938 | + <format/> | |
| 939 | + </field> | |
| 940 | + <field> | |
| 941 | + <name>fcno80</name> | |
| 942 | + <type>String</type> | |
| 943 | + <format/> | |
| 944 | + </field> | |
| 945 | + <field> | |
| 946 | + <name>fcno81</name> | |
| 947 | + <type>String</type> | |
| 948 | + <format/> | |
| 949 | + </field> | |
| 950 | + <field> | |
| 951 | + <name>fcno82</name> | |
| 952 | + <type>String</type> | |
| 953 | + <format/> | |
| 954 | + </field> | |
| 955 | + <field> | |
| 956 | + <name>fcno83</name> | |
| 957 | + <type>String</type> | |
| 958 | + <format/> | |
| 959 | + </field> | |
| 960 | + <field> | |
| 961 | + <name>fcno84</name> | |
| 962 | + <type>String</type> | |
| 963 | + <format/> | |
| 964 | + </field> | |
| 965 | + <field> | |
| 966 | + <name>fcno85</name> | |
| 967 | + <type>String</type> | |
| 968 | + <format/> | |
| 969 | + </field> | |
| 970 | + <field> | |
| 971 | + <name>fcno86</name> | |
| 972 | + <type>String</type> | |
| 973 | + <format/> | |
| 974 | + </field> | |
| 975 | + <field> | |
| 976 | + <name>fcno87</name> | |
| 977 | + <type>String</type> | |
| 978 | + <format/> | |
| 979 | + </field> | |
| 980 | + <field> | |
| 981 | + <name>fcno88</name> | |
| 982 | + <type>String</type> | |
| 983 | + <format/> | |
| 984 | + </field> | |
| 985 | + <field> | |
| 986 | + <name>fcno89</name> | |
| 987 | + <type>String</type> | |
| 988 | + <format/> | |
| 989 | + </field> | |
| 990 | + <field> | |
| 991 | + <name>fcno90</name> | |
| 992 | + <type>String</type> | |
| 993 | + <format/> | |
| 994 | + </field> | |
| 995 | + <field> | |
| 996 | + <name>fcno91</name> | |
| 997 | + <type>String</type> | |
| 998 | + <format/> | |
| 999 | + </field> | |
| 1000 | + <field> | |
| 1001 | + <name>fcno92</name> | |
| 1002 | + <type>String</type> | |
| 1003 | + <format/> | |
| 1004 | + </field> | |
| 1005 | + <field> | |
| 1006 | + <name>fcno93</name> | |
| 1007 | + <type>String</type> | |
| 1008 | + <format/> | |
| 1009 | + </field> | |
| 1010 | + <field> | |
| 1011 | + <name>fcno94</name> | |
| 1012 | + <type>String</type> | |
| 1013 | + <format/> | |
| 1014 | + </field> | |
| 1015 | + <field> | |
| 1016 | + <name>fcno95</name> | |
| 1017 | + <type>String</type> | |
| 1018 | + <format/> | |
| 1019 | + </field> | |
| 1020 | + <field> | |
| 1021 | + <name>fcno96</name> | |
| 1022 | + <type>String</type> | |
| 1023 | + <format/> | |
| 1024 | + </field> | |
| 1025 | + <field> | |
| 1026 | + <name>fcno97</name> | |
| 1027 | + <type>String</type> | |
| 1028 | + <format/> | |
| 1029 | + </field> | |
| 1030 | + <field> | |
| 1031 | + <name>fcno98</name> | |
| 1032 | + <type>String</type> | |
| 1033 | + <format/> | |
| 1034 | + </field> | |
| 1035 | + <field> | |
| 1036 | + <name>fcno99</name> | |
| 1037 | + <type>String</type> | |
| 1038 | + <format/> | |
| 1039 | + </field> | |
| 1040 | + <field> | |
| 1041 | + <name>fcno100</name> | |
| 1042 | + <type>String</type> | |
| 1043 | + <format/> | |
| 1044 | + </field> | |
| 1045 | + <field> | |
| 1046 | + <name>fcno101</name> | |
| 1047 | + <type>String</type> | |
| 1048 | + <format/> | |
| 1049 | + </field> | |
| 1050 | + <field> | |
| 1051 | + <name>fcno102</name> | |
| 1052 | + <type>String</type> | |
| 1053 | + <format/> | |
| 1054 | + </field> | |
| 1055 | + <field> | |
| 1056 | + <name>fcno103</name> | |
| 1057 | + <type>String</type> | |
| 1058 | + <format/> | |
| 1059 | + </field> | |
| 1060 | + <field> | |
| 1061 | + <name>fcno104</name> | |
| 1062 | + <type>String</type> | |
| 1063 | + <format/> | |
| 1064 | + </field> | |
| 1065 | + <field> | |
| 1066 | + <name>fcno105</name> | |
| 1067 | + <type>String</type> | |
| 1068 | + <format/> | |
| 1069 | + </field> | |
| 1070 | + <field> | |
| 1071 | + <name>fcno106</name> | |
| 1072 | + <type>String</type> | |
| 1073 | + <format/> | |
| 1074 | + </field> | |
| 1075 | + <field> | |
| 1076 | + <name>fcno107</name> | |
| 1077 | + <type>String</type> | |
| 1078 | + <format/> | |
| 1079 | + </field> | |
| 1080 | + <field> | |
| 1081 | + <name>fcno108</name> | |
| 1082 | + <type>String</type> | |
| 1083 | + <format/> | |
| 1084 | + </field> | |
| 1085 | + <field> | |
| 1086 | + <name>fcno109</name> | |
| 1087 | + <type>String</type> | |
| 1088 | + <format/> | |
| 1089 | + </field> | |
| 1090 | + <field> | |
| 1091 | + <name>fcno110</name> | |
| 1092 | + <type>String</type> | |
| 1093 | + <format/> | |
| 1094 | + </field> | |
| 1095 | + <field> | |
| 1096 | + <name>fcno111</name> | |
| 1097 | + <type>String</type> | |
| 1098 | + <format/> | |
| 1099 | + </field> | |
| 1100 | + <field> | |
| 1101 | + <name>fcno112</name> | |
| 1102 | + <type>String</type> | |
| 1103 | + <format/> | |
| 1104 | + </field> | |
| 1105 | + <field> | |
| 1106 | + <name>fcno113</name> | |
| 1107 | + <type>String</type> | |
| 1108 | + <format/> | |
| 1109 | + </field> | |
| 1110 | + <field> | |
| 1111 | + <name>fcno114</name> | |
| 1112 | + <type>String</type> | |
| 1113 | + <format/> | |
| 1114 | + </field> | |
| 1115 | + <field> | |
| 1116 | + <name>fcno115</name> | |
| 1117 | + <type>String</type> | |
| 1118 | + <format/> | |
| 1119 | + </field> | |
| 1120 | + <field> | |
| 1121 | + <name>fcno116</name> | |
| 1122 | + <type>String</type> | |
| 1123 | + <format/> | |
| 1124 | + </field> | |
| 1125 | + <field> | |
| 1126 | + <name>fcno117</name> | |
| 1127 | + <type>String</type> | |
| 1128 | + <format/> | |
| 1129 | + </field> | |
| 1130 | + <field> | |
| 1131 | + <name>fcno118</name> | |
| 1132 | + <type>String</type> | |
| 1133 | + <format/> | |
| 1134 | + </field> | |
| 1135 | + <field> | |
| 1136 | + <name>fcno119</name> | |
| 1137 | + <type>String</type> | |
| 1138 | + <format/> | |
| 1139 | + </field> | |
| 1140 | + <field> | |
| 1141 | + <name>fcno120</name> | |
| 1142 | + <type>String</type> | |
| 1143 | + <format/> | |
| 1144 | + </field> | |
| 1145 | + <field> | |
| 1146 | + <name>fcno121</name> | |
| 1147 | + <type>String</type> | |
| 1148 | + <format/> | |
| 1149 | + </field> | |
| 1150 | + <field> | |
| 1151 | + <name>fcno122</name> | |
| 1152 | + <type>String</type> | |
| 1153 | + <format/> | |
| 1154 | + </field> | |
| 1155 | + <field> | |
| 1156 | + <name>fcno123</name> | |
| 1157 | + <type>String</type> | |
| 1158 | + <format/> | |
| 1159 | + </field> | |
| 1160 | + <field> | |
| 1161 | + <name>fcno124</name> | |
| 1162 | + <type>String</type> | |
| 1163 | + <format/> | |
| 1164 | + </field> | |
| 1165 | + <field> | |
| 1166 | + <name>fcno125</name> | |
| 1167 | + <type>String</type> | |
| 1168 | + <format/> | |
| 1169 | + </field> | |
| 1170 | + <field> | |
| 1171 | + <name>fcno126</name> | |
| 1172 | + <type>String</type> | |
| 1173 | + <format/> | |
| 1174 | + </field> | |
| 1175 | + <field> | |
| 1176 | + <name>fcno127</name> | |
| 1177 | + <type>String</type> | |
| 1178 | + <format/> | |
| 1179 | + </field> | |
| 1180 | + <field> | |
| 1181 | + <name>fcno128</name> | |
| 1182 | + <type>String</type> | |
| 1183 | + <format/> | |
| 1184 | + </field> | |
| 1185 | + <field> | |
| 1186 | + <name>fcno129</name> | |
| 1187 | + <type>String</type> | |
| 1188 | + <format/> | |
| 1189 | + </field> | |
| 1190 | + <field> | |
| 1191 | + <name>fcno130</name> | |
| 1192 | + <type>String</type> | |
| 1193 | + <format/> | |
| 1194 | + </field> | |
| 1195 | + <field> | |
| 1196 | + <name>fcno131</name> | |
| 1197 | + <type>String</type> | |
| 1198 | + <format/> | |
| 1199 | + </field> | |
| 1200 | + <field> | |
| 1201 | + <name>fcno132</name> | |
| 1202 | + <type>String</type> | |
| 1203 | + <format/> | |
| 1204 | + </field> | |
| 1205 | + <field> | |
| 1206 | + <name>fcno133</name> | |
| 1207 | + <type>String</type> | |
| 1208 | + <format/> | |
| 1209 | + </field> | |
| 1210 | + <field> | |
| 1211 | + <name>fcno134</name> | |
| 1212 | + <type>String</type> | |
| 1213 | + <format/> | |
| 1214 | + </field> | |
| 1215 | + <field> | |
| 1216 | + <name>fcno135</name> | |
| 1217 | + <type>String</type> | |
| 1218 | + <format/> | |
| 1219 | + </field> | |
| 1220 | + <field> | |
| 1221 | + <name>fcno136</name> | |
| 1222 | + <type>String</type> | |
| 1223 | + <format/> | |
| 1224 | + </field> | |
| 1225 | + <field> | |
| 1226 | + <name>fcno137</name> | |
| 1227 | + <type>String</type> | |
| 1228 | + <format/> | |
| 1229 | + </field> | |
| 1230 | + <field> | |
| 1231 | + <name>fcno138</name> | |
| 1232 | + <type>String</type> | |
| 1233 | + <format/> | |
| 1234 | + </field> | |
| 1235 | + <field> | |
| 1236 | + <name>fcno139</name> | |
| 1237 | + <type>String</type> | |
| 1238 | + <format/> | |
| 1239 | + </field> | |
| 1240 | + <field> | |
| 1241 | + <name>fcno140</name> | |
| 1242 | + <type>String</type> | |
| 1243 | + <format/> | |
| 1244 | + </field> | |
| 1245 | + <field> | |
| 1246 | + <name>fcno141</name> | |
| 1247 | + <type>String</type> | |
| 1248 | + <format/> | |
| 1249 | + </field> | |
| 1250 | + <field> | |
| 1251 | + <name>fcno142</name> | |
| 1252 | + <type>String</type> | |
| 1253 | + <format/> | |
| 1254 | + </field> | |
| 1255 | + <field> | |
| 1256 | + <name>fcno143</name> | |
| 1257 | + <type>String</type> | |
| 1258 | + <format/> | |
| 1259 | + </field> | |
| 1260 | + <field> | |
| 1261 | + <name>fcno144</name> | |
| 1262 | + <type>String</type> | |
| 1263 | + <format/> | |
| 1264 | + </field> | |
| 1265 | + <field> | |
| 1266 | + <name>fcno145</name> | |
| 1267 | + <type>String</type> | |
| 1268 | + <format/> | |
| 1269 | + </field> | |
| 1270 | + <field> | |
| 1271 | + <name>fcno146</name> | |
| 1272 | + <type>String</type> | |
| 1273 | + <format/> | |
| 1274 | + </field> | |
| 1275 | + <field> | |
| 1276 | + <name>fcno147</name> | |
| 1277 | + <type>String</type> | |
| 1278 | + <format/> | |
| 1279 | + </field> | |
| 1280 | + <field> | |
| 1281 | + <name>fcno148</name> | |
| 1282 | + <type>String</type> | |
| 1283 | + <format/> | |
| 1284 | + </field> | |
| 1285 | + <field> | |
| 1286 | + <name>fcno149</name> | |
| 1287 | + <type>String</type> | |
| 1288 | + <format/> | |
| 1289 | + </field> | |
| 1290 | + <field> | |
| 1291 | + <name>fcno150</name> | |
| 1292 | + <type>String</type> | |
| 1293 | + <format/> | |
| 1294 | + </field> | |
| 1295 | + </fields> | |
| 1296 | + <custom> | |
| 1297 | + <header_font_name>arial</header_font_name> | |
| 1298 | + <header_font_size>10</header_font_size> | |
| 1299 | + <header_font_bold>N</header_font_bold> | |
| 1300 | + <header_font_italic>N</header_font_italic> | |
| 1301 | + <header_font_underline>no</header_font_underline> | |
| 1302 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 1303 | + <header_font_color>black</header_font_color> | |
| 1304 | + <header_background_color>none</header_background_color> | |
| 1305 | + <header_row_height>255</header_row_height> | |
| 1306 | + <header_alignment>left</header_alignment> | |
| 1307 | + <header_image/> | |
| 1308 | + <row_font_name>arial</row_font_name> | |
| 1309 | + <row_font_size>10</row_font_size> | |
| 1310 | + <row_font_color>black</row_font_color> | |
| 1311 | + <row_background_color>none</row_background_color> | |
| 1312 | + </custom> | |
| 1313 | + <cluster_schema/> | |
| 1314 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1315 | + <xloc>692</xloc> | |
| 1316 | + <yloc>514</yloc> | |
| 1317 | + <draw>Y</draw> | |
| 1318 | + </GUI> | |
| 1319 | + </step> | |
| 1320 | + | |
| 1321 | + <step> | |
| 1322 | + <name>列转行</name> | |
| 1323 | + <type>Denormaliser</type> | |
| 1324 | + <description/> | |
| 1325 | + <distribute>N</distribute> | |
| 1326 | + <custom_distribution/> | |
| 1327 | + <copies>1</copies> | |
| 1328 | + <partitioning> | |
| 1329 | + <method>none</method> | |
| 1330 | + <schema_name/> | |
| 1331 | + </partitioning> | |
| 1332 | + <key_field>fcno</key_field> | |
| 1333 | + <group> | |
| 1334 | + <field> | |
| 1335 | + <name>lp</name> | |
| 1336 | + </field> | |
| 1337 | + </group> | |
| 1338 | + <fields> | |
| 1339 | + <field> | |
| 1340 | + <field_name>all_content</field_name> | |
| 1341 | + <key_value>1</key_value> | |
| 1342 | + <target_name>fcno1</target_name> | |
| 1343 | + <target_type>String</target_type> | |
| 1344 | + <target_format/> | |
| 1345 | + <target_length>-1</target_length> | |
| 1346 | + <target_precision>-1</target_precision> | |
| 1347 | + <target_decimal_symbol/> | |
| 1348 | + <target_grouping_symbol/> | |
| 1349 | + <target_currency_symbol/> | |
| 1350 | + <target_null_string/> | |
| 1351 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1352 | + </field> | |
| 1353 | + <field> | |
| 1354 | + <field_name>all_content</field_name> | |
| 1355 | + <key_value>2</key_value> | |
| 1356 | + <target_name>fcno2</target_name> | |
| 1357 | + <target_type>String</target_type> | |
| 1358 | + <target_format/> | |
| 1359 | + <target_length>-1</target_length> | |
| 1360 | + <target_precision>-1</target_precision> | |
| 1361 | + <target_decimal_symbol/> | |
| 1362 | + <target_grouping_symbol/> | |
| 1363 | + <target_currency_symbol/> | |
| 1364 | + <target_null_string/> | |
| 1365 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1366 | + </field> | |
| 1367 | + <field> | |
| 1368 | + <field_name>all_content</field_name> | |
| 1369 | + <key_value>3</key_value> | |
| 1370 | + <target_name>fcno3</target_name> | |
| 1371 | + <target_type>String</target_type> | |
| 1372 | + <target_format/> | |
| 1373 | + <target_length>-1</target_length> | |
| 1374 | + <target_precision>-1</target_precision> | |
| 1375 | + <target_decimal_symbol/> | |
| 1376 | + <target_grouping_symbol/> | |
| 1377 | + <target_currency_symbol/> | |
| 1378 | + <target_null_string/> | |
| 1379 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1380 | + </field> | |
| 1381 | + <field> | |
| 1382 | + <field_name>all_content</field_name> | |
| 1383 | + <key_value>4</key_value> | |
| 1384 | + <target_name>fcno4</target_name> | |
| 1385 | + <target_type>String</target_type> | |
| 1386 | + <target_format/> | |
| 1387 | + <target_length>-1</target_length> | |
| 1388 | + <target_precision>-1</target_precision> | |
| 1389 | + <target_decimal_symbol/> | |
| 1390 | + <target_grouping_symbol/> | |
| 1391 | + <target_currency_symbol/> | |
| 1392 | + <target_null_string/> | |
| 1393 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1394 | + </field> | |
| 1395 | + <field> | |
| 1396 | + <field_name>all_content</field_name> | |
| 1397 | + <key_value>5</key_value> | |
| 1398 | + <target_name>fcno5</target_name> | |
| 1399 | + <target_type>String</target_type> | |
| 1400 | + <target_format/> | |
| 1401 | + <target_length>-1</target_length> | |
| 1402 | + <target_precision>-1</target_precision> | |
| 1403 | + <target_decimal_symbol/> | |
| 1404 | + <target_grouping_symbol/> | |
| 1405 | + <target_currency_symbol/> | |
| 1406 | + <target_null_string/> | |
| 1407 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1408 | + </field> | |
| 1409 | + <field> | |
| 1410 | + <field_name>all_content</field_name> | |
| 1411 | + <key_value>6</key_value> | |
| 1412 | + <target_name>fcno6</target_name> | |
| 1413 | + <target_type>String</target_type> | |
| 1414 | + <target_format/> | |
| 1415 | + <target_length>-1</target_length> | |
| 1416 | + <target_precision>-1</target_precision> | |
| 1417 | + <target_decimal_symbol/> | |
| 1418 | + <target_grouping_symbol/> | |
| 1419 | + <target_currency_symbol/> | |
| 1420 | + <target_null_string/> | |
| 1421 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1422 | + </field> | |
| 1423 | + <field> | |
| 1424 | + <field_name>all_content</field_name> | |
| 1425 | + <key_value>7</key_value> | |
| 1426 | + <target_name>fcno7</target_name> | |
| 1427 | + <target_type>String</target_type> | |
| 1428 | + <target_format/> | |
| 1429 | + <target_length>-1</target_length> | |
| 1430 | + <target_precision>-1</target_precision> | |
| 1431 | + <target_decimal_symbol/> | |
| 1432 | + <target_grouping_symbol/> | |
| 1433 | + <target_currency_symbol/> | |
| 1434 | + <target_null_string/> | |
| 1435 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1436 | + </field> | |
| 1437 | + <field> | |
| 1438 | + <field_name>all_content</field_name> | |
| 1439 | + <key_value>8</key_value> | |
| 1440 | + <target_name>fcno8</target_name> | |
| 1441 | + <target_type>String</target_type> | |
| 1442 | + <target_format/> | |
| 1443 | + <target_length>-1</target_length> | |
| 1444 | + <target_precision>-1</target_precision> | |
| 1445 | + <target_decimal_symbol/> | |
| 1446 | + <target_grouping_symbol/> | |
| 1447 | + <target_currency_symbol/> | |
| 1448 | + <target_null_string/> | |
| 1449 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1450 | + </field> | |
| 1451 | + <field> | |
| 1452 | + <field_name>all_content</field_name> | |
| 1453 | + <key_value>9</key_value> | |
| 1454 | + <target_name>fcno9</target_name> | |
| 1455 | + <target_type>String</target_type> | |
| 1456 | + <target_format/> | |
| 1457 | + <target_length>-1</target_length> | |
| 1458 | + <target_precision>-1</target_precision> | |
| 1459 | + <target_decimal_symbol/> | |
| 1460 | + <target_grouping_symbol/> | |
| 1461 | + <target_currency_symbol/> | |
| 1462 | + <target_null_string/> | |
| 1463 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1464 | + </field> | |
| 1465 | + <field> | |
| 1466 | + <field_name>all_content</field_name> | |
| 1467 | + <key_value>10</key_value> | |
| 1468 | + <target_name>fcno10</target_name> | |
| 1469 | + <target_type>String</target_type> | |
| 1470 | + <target_format/> | |
| 1471 | + <target_length>-1</target_length> | |
| 1472 | + <target_precision>-1</target_precision> | |
| 1473 | + <target_decimal_symbol/> | |
| 1474 | + <target_grouping_symbol/> | |
| 1475 | + <target_currency_symbol/> | |
| 1476 | + <target_null_string/> | |
| 1477 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1478 | + </field> | |
| 1479 | + <field> | |
| 1480 | + <field_name>all_content</field_name> | |
| 1481 | + <key_value>11</key_value> | |
| 1482 | + <target_name>fcno11</target_name> | |
| 1483 | + <target_type>String</target_type> | |
| 1484 | + <target_format/> | |
| 1485 | + <target_length>-1</target_length> | |
| 1486 | + <target_precision>-1</target_precision> | |
| 1487 | + <target_decimal_symbol/> | |
| 1488 | + <target_grouping_symbol/> | |
| 1489 | + <target_currency_symbol/> | |
| 1490 | + <target_null_string/> | |
| 1491 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1492 | + </field> | |
| 1493 | + <field> | |
| 1494 | + <field_name>all_content</field_name> | |
| 1495 | + <key_value>12</key_value> | |
| 1496 | + <target_name>fcno12</target_name> | |
| 1497 | + <target_type>String</target_type> | |
| 1498 | + <target_format/> | |
| 1499 | + <target_length>-1</target_length> | |
| 1500 | + <target_precision>-1</target_precision> | |
| 1501 | + <target_decimal_symbol/> | |
| 1502 | + <target_grouping_symbol/> | |
| 1503 | + <target_currency_symbol/> | |
| 1504 | + <target_null_string/> | |
| 1505 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1506 | + </field> | |
| 1507 | + <field> | |
| 1508 | + <field_name>all_content</field_name> | |
| 1509 | + <key_value>13</key_value> | |
| 1510 | + <target_name>fcno13</target_name> | |
| 1511 | + <target_type>String</target_type> | |
| 1512 | + <target_format/> | |
| 1513 | + <target_length>-1</target_length> | |
| 1514 | + <target_precision>-1</target_precision> | |
| 1515 | + <target_decimal_symbol/> | |
| 1516 | + <target_grouping_symbol/> | |
| 1517 | + <target_currency_symbol/> | |
| 1518 | + <target_null_string/> | |
| 1519 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1520 | + </field> | |
| 1521 | + <field> | |
| 1522 | + <field_name>all_content</field_name> | |
| 1523 | + <key_value>14</key_value> | |
| 1524 | + <target_name>fcno14</target_name> | |
| 1525 | + <target_type>String</target_type> | |
| 1526 | + <target_format/> | |
| 1527 | + <target_length>-1</target_length> | |
| 1528 | + <target_precision>-1</target_precision> | |
| 1529 | + <target_decimal_symbol/> | |
| 1530 | + <target_grouping_symbol/> | |
| 1531 | + <target_currency_symbol/> | |
| 1532 | + <target_null_string/> | |
| 1533 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1534 | + </field> | |
| 1535 | + <field> | |
| 1536 | + <field_name>all_content</field_name> | |
| 1537 | + <key_value>15</key_value> | |
| 1538 | + <target_name>fcno15</target_name> | |
| 1539 | + <target_type>String</target_type> | |
| 1540 | + <target_format/> | |
| 1541 | + <target_length>-1</target_length> | |
| 1542 | + <target_precision>-1</target_precision> | |
| 1543 | + <target_decimal_symbol/> | |
| 1544 | + <target_grouping_symbol/> | |
| 1545 | + <target_currency_symbol/> | |
| 1546 | + <target_null_string/> | |
| 1547 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1548 | + </field> | |
| 1549 | + <field> | |
| 1550 | + <field_name>all_content</field_name> | |
| 1551 | + <key_value>16</key_value> | |
| 1552 | + <target_name>fcno16</target_name> | |
| 1553 | + <target_type>String</target_type> | |
| 1554 | + <target_format/> | |
| 1555 | + <target_length>-1</target_length> | |
| 1556 | + <target_precision>-1</target_precision> | |
| 1557 | + <target_decimal_symbol/> | |
| 1558 | + <target_grouping_symbol/> | |
| 1559 | + <target_currency_symbol/> | |
| 1560 | + <target_null_string/> | |
| 1561 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1562 | + </field> | |
| 1563 | + <field> | |
| 1564 | + <field_name>all_content</field_name> | |
| 1565 | + <key_value>17</key_value> | |
| 1566 | + <target_name>fcno17</target_name> | |
| 1567 | + <target_type>String</target_type> | |
| 1568 | + <target_format/> | |
| 1569 | + <target_length>-1</target_length> | |
| 1570 | + <target_precision>-1</target_precision> | |
| 1571 | + <target_decimal_symbol/> | |
| 1572 | + <target_grouping_symbol/> | |
| 1573 | + <target_currency_symbol/> | |
| 1574 | + <target_null_string/> | |
| 1575 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1576 | + </field> | |
| 1577 | + <field> | |
| 1578 | + <field_name>all_content</field_name> | |
| 1579 | + <key_value>18</key_value> | |
| 1580 | + <target_name>fcno18</target_name> | |
| 1581 | + <target_type>String</target_type> | |
| 1582 | + <target_format/> | |
| 1583 | + <target_length>-1</target_length> | |
| 1584 | + <target_precision>-1</target_precision> | |
| 1585 | + <target_decimal_symbol/> | |
| 1586 | + <target_grouping_symbol/> | |
| 1587 | + <target_currency_symbol/> | |
| 1588 | + <target_null_string/> | |
| 1589 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1590 | + </field> | |
| 1591 | + <field> | |
| 1592 | + <field_name>all_content</field_name> | |
| 1593 | + <key_value>19</key_value> | |
| 1594 | + <target_name>fcno19</target_name> | |
| 1595 | + <target_type>String</target_type> | |
| 1596 | + <target_format/> | |
| 1597 | + <target_length>-1</target_length> | |
| 1598 | + <target_precision>-1</target_precision> | |
| 1599 | + <target_decimal_symbol/> | |
| 1600 | + <target_grouping_symbol/> | |
| 1601 | + <target_currency_symbol/> | |
| 1602 | + <target_null_string/> | |
| 1603 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1604 | + </field> | |
| 1605 | + <field> | |
| 1606 | + <field_name>all_content</field_name> | |
| 1607 | + <key_value>20</key_value> | |
| 1608 | + <target_name>fcno20</target_name> | |
| 1609 | + <target_type>String</target_type> | |
| 1610 | + <target_format/> | |
| 1611 | + <target_length>-1</target_length> | |
| 1612 | + <target_precision>-1</target_precision> | |
| 1613 | + <target_decimal_symbol/> | |
| 1614 | + <target_grouping_symbol/> | |
| 1615 | + <target_currency_symbol/> | |
| 1616 | + <target_null_string/> | |
| 1617 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1618 | + </field> | |
| 1619 | + <field> | |
| 1620 | + <field_name>all_content</field_name> | |
| 1621 | + <key_value>21</key_value> | |
| 1622 | + <target_name>fcno21</target_name> | |
| 1623 | + <target_type>String</target_type> | |
| 1624 | + <target_format/> | |
| 1625 | + <target_length>-1</target_length> | |
| 1626 | + <target_precision>-1</target_precision> | |
| 1627 | + <target_decimal_symbol/> | |
| 1628 | + <target_grouping_symbol/> | |
| 1629 | + <target_currency_symbol/> | |
| 1630 | + <target_null_string/> | |
| 1631 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1632 | + </field> | |
| 1633 | + <field> | |
| 1634 | + <field_name>all_content</field_name> | |
| 1635 | + <key_value>22</key_value> | |
| 1636 | + <target_name>fcno22</target_name> | |
| 1637 | + <target_type>String</target_type> | |
| 1638 | + <target_format/> | |
| 1639 | + <target_length>-1</target_length> | |
| 1640 | + <target_precision>-1</target_precision> | |
| 1641 | + <target_decimal_symbol/> | |
| 1642 | + <target_grouping_symbol/> | |
| 1643 | + <target_currency_symbol/> | |
| 1644 | + <target_null_string/> | |
| 1645 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1646 | + </field> | |
| 1647 | + <field> | |
| 1648 | + <field_name>all_content</field_name> | |
| 1649 | + <key_value>23</key_value> | |
| 1650 | + <target_name>fcno23</target_name> | |
| 1651 | + <target_type>String</target_type> | |
| 1652 | + <target_format/> | |
| 1653 | + <target_length>-1</target_length> | |
| 1654 | + <target_precision>-1</target_precision> | |
| 1655 | + <target_decimal_symbol/> | |
| 1656 | + <target_grouping_symbol/> | |
| 1657 | + <target_currency_symbol/> | |
| 1658 | + <target_null_string/> | |
| 1659 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1660 | + </field> | |
| 1661 | + <field> | |
| 1662 | + <field_name>all_content</field_name> | |
| 1663 | + <key_value>24</key_value> | |
| 1664 | + <target_name>fcno24</target_name> | |
| 1665 | + <target_type>String</target_type> | |
| 1666 | + <target_format/> | |
| 1667 | + <target_length>-1</target_length> | |
| 1668 | + <target_precision>-1</target_precision> | |
| 1669 | + <target_decimal_symbol/> | |
| 1670 | + <target_grouping_symbol/> | |
| 1671 | + <target_currency_symbol/> | |
| 1672 | + <target_null_string/> | |
| 1673 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1674 | + </field> | |
| 1675 | + <field> | |
| 1676 | + <field_name>all_content</field_name> | |
| 1677 | + <key_value>25</key_value> | |
| 1678 | + <target_name>fcno25</target_name> | |
| 1679 | + <target_type>String</target_type> | |
| 1680 | + <target_format/> | |
| 1681 | + <target_length>-1</target_length> | |
| 1682 | + <target_precision>-1</target_precision> | |
| 1683 | + <target_decimal_symbol/> | |
| 1684 | + <target_grouping_symbol/> | |
| 1685 | + <target_currency_symbol/> | |
| 1686 | + <target_null_string/> | |
| 1687 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1688 | + </field> | |
| 1689 | + <field> | |
| 1690 | + <field_name>all_content</field_name> | |
| 1691 | + <key_value>26</key_value> | |
| 1692 | + <target_name>fcno26</target_name> | |
| 1693 | + <target_type>String</target_type> | |
| 1694 | + <target_format/> | |
| 1695 | + <target_length>-1</target_length> | |
| 1696 | + <target_precision>-1</target_precision> | |
| 1697 | + <target_decimal_symbol/> | |
| 1698 | + <target_grouping_symbol/> | |
| 1699 | + <target_currency_symbol/> | |
| 1700 | + <target_null_string/> | |
| 1701 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1702 | + </field> | |
| 1703 | + <field> | |
| 1704 | + <field_name>all_content</field_name> | |
| 1705 | + <key_value>27</key_value> | |
| 1706 | + <target_name>fcno27</target_name> | |
| 1707 | + <target_type>String</target_type> | |
| 1708 | + <target_format/> | |
| 1709 | + <target_length>-1</target_length> | |
| 1710 | + <target_precision>-1</target_precision> | |
| 1711 | + <target_decimal_symbol/> | |
| 1712 | + <target_grouping_symbol/> | |
| 1713 | + <target_currency_symbol/> | |
| 1714 | + <target_null_string/> | |
| 1715 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1716 | + </field> | |
| 1717 | + <field> | |
| 1718 | + <field_name>all_content</field_name> | |
| 1719 | + <key_value>28</key_value> | |
| 1720 | + <target_name>fcno28</target_name> | |
| 1721 | + <target_type>String</target_type> | |
| 1722 | + <target_format/> | |
| 1723 | + <target_length>-1</target_length> | |
| 1724 | + <target_precision>-1</target_precision> | |
| 1725 | + <target_decimal_symbol/> | |
| 1726 | + <target_grouping_symbol/> | |
| 1727 | + <target_currency_symbol/> | |
| 1728 | + <target_null_string/> | |
| 1729 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1730 | + </field> | |
| 1731 | + <field> | |
| 1732 | + <field_name>all_content</field_name> | |
| 1733 | + <key_value>29</key_value> | |
| 1734 | + <target_name>fcno29</target_name> | |
| 1735 | + <target_type>String</target_type> | |
| 1736 | + <target_format/> | |
| 1737 | + <target_length>-1</target_length> | |
| 1738 | + <target_precision>-1</target_precision> | |
| 1739 | + <target_decimal_symbol/> | |
| 1740 | + <target_grouping_symbol/> | |
| 1741 | + <target_currency_symbol/> | |
| 1742 | + <target_null_string/> | |
| 1743 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1744 | + </field> | |
| 1745 | + <field> | |
| 1746 | + <field_name>all_content</field_name> | |
| 1747 | + <key_value>30</key_value> | |
| 1748 | + <target_name>fcno30</target_name> | |
| 1749 | + <target_type>String</target_type> | |
| 1750 | + <target_format/> | |
| 1751 | + <target_length>-1</target_length> | |
| 1752 | + <target_precision>-1</target_precision> | |
| 1753 | + <target_decimal_symbol/> | |
| 1754 | + <target_grouping_symbol/> | |
| 1755 | + <target_currency_symbol/> | |
| 1756 | + <target_null_string/> | |
| 1757 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1758 | + </field> | |
| 1759 | + <field> | |
| 1760 | + <field_name>all_content</field_name> | |
| 1761 | + <key_value>31</key_value> | |
| 1762 | + <target_name>fcno31</target_name> | |
| 1763 | + <target_type>String</target_type> | |
| 1764 | + <target_format/> | |
| 1765 | + <target_length>-1</target_length> | |
| 1766 | + <target_precision>-1</target_precision> | |
| 1767 | + <target_decimal_symbol/> | |
| 1768 | + <target_grouping_symbol/> | |
| 1769 | + <target_currency_symbol/> | |
| 1770 | + <target_null_string/> | |
| 1771 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1772 | + </field> | |
| 1773 | + <field> | |
| 1774 | + <field_name>all_content</field_name> | |
| 1775 | + <key_value>32</key_value> | |
| 1776 | + <target_name>fcno32</target_name> | |
| 1777 | + <target_type>String</target_type> | |
| 1778 | + <target_format/> | |
| 1779 | + <target_length>-1</target_length> | |
| 1780 | + <target_precision>-1</target_precision> | |
| 1781 | + <target_decimal_symbol/> | |
| 1782 | + <target_grouping_symbol/> | |
| 1783 | + <target_currency_symbol/> | |
| 1784 | + <target_null_string/> | |
| 1785 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1786 | + </field> | |
| 1787 | + <field> | |
| 1788 | + <field_name>all_content</field_name> | |
| 1789 | + <key_value>33</key_value> | |
| 1790 | + <target_name>fcno33</target_name> | |
| 1791 | + <target_type>String</target_type> | |
| 1792 | + <target_format/> | |
| 1793 | + <target_length>-1</target_length> | |
| 1794 | + <target_precision>-1</target_precision> | |
| 1795 | + <target_decimal_symbol/> | |
| 1796 | + <target_grouping_symbol/> | |
| 1797 | + <target_currency_symbol/> | |
| 1798 | + <target_null_string/> | |
| 1799 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1800 | + </field> | |
| 1801 | + <field> | |
| 1802 | + <field_name>all_content</field_name> | |
| 1803 | + <key_value>34</key_value> | |
| 1804 | + <target_name>fcno34</target_name> | |
| 1805 | + <target_type>String</target_type> | |
| 1806 | + <target_format/> | |
| 1807 | + <target_length>-1</target_length> | |
| 1808 | + <target_precision>-1</target_precision> | |
| 1809 | + <target_decimal_symbol/> | |
| 1810 | + <target_grouping_symbol/> | |
| 1811 | + <target_currency_symbol/> | |
| 1812 | + <target_null_string/> | |
| 1813 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1814 | + </field> | |
| 1815 | + <field> | |
| 1816 | + <field_name>all_content</field_name> | |
| 1817 | + <key_value>35</key_value> | |
| 1818 | + <target_name>fcno35</target_name> | |
| 1819 | + <target_type>String</target_type> | |
| 1820 | + <target_format/> | |
| 1821 | + <target_length>-1</target_length> | |
| 1822 | + <target_precision>-1</target_precision> | |
| 1823 | + <target_decimal_symbol/> | |
| 1824 | + <target_grouping_symbol/> | |
| 1825 | + <target_currency_symbol/> | |
| 1826 | + <target_null_string/> | |
| 1827 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1828 | + </field> | |
| 1829 | + <field> | |
| 1830 | + <field_name>all_content</field_name> | |
| 1831 | + <key_value>36</key_value> | |
| 1832 | + <target_name>fcno36</target_name> | |
| 1833 | + <target_type>String</target_type> | |
| 1834 | + <target_format/> | |
| 1835 | + <target_length>-1</target_length> | |
| 1836 | + <target_precision>-1</target_precision> | |
| 1837 | + <target_decimal_symbol/> | |
| 1838 | + <target_grouping_symbol/> | |
| 1839 | + <target_currency_symbol/> | |
| 1840 | + <target_null_string/> | |
| 1841 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1842 | + </field> | |
| 1843 | + <field> | |
| 1844 | + <field_name>all_content</field_name> | |
| 1845 | + <key_value>37</key_value> | |
| 1846 | + <target_name>fcno37</target_name> | |
| 1847 | + <target_type>String</target_type> | |
| 1848 | + <target_format/> | |
| 1849 | + <target_length>-1</target_length> | |
| 1850 | + <target_precision>-1</target_precision> | |
| 1851 | + <target_decimal_symbol/> | |
| 1852 | + <target_grouping_symbol/> | |
| 1853 | + <target_currency_symbol/> | |
| 1854 | + <target_null_string/> | |
| 1855 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1856 | + </field> | |
| 1857 | + <field> | |
| 1858 | + <field_name>all_content</field_name> | |
| 1859 | + <key_value>38</key_value> | |
| 1860 | + <target_name>fcno38</target_name> | |
| 1861 | + <target_type>String</target_type> | |
| 1862 | + <target_format/> | |
| 1863 | + <target_length>-1</target_length> | |
| 1864 | + <target_precision>-1</target_precision> | |
| 1865 | + <target_decimal_symbol/> | |
| 1866 | + <target_grouping_symbol/> | |
| 1867 | + <target_currency_symbol/> | |
| 1868 | + <target_null_string/> | |
| 1869 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1870 | + </field> | |
| 1871 | + <field> | |
| 1872 | + <field_name>all_content</field_name> | |
| 1873 | + <key_value>39</key_value> | |
| 1874 | + <target_name>fcno39</target_name> | |
| 1875 | + <target_type>String</target_type> | |
| 1876 | + <target_format/> | |
| 1877 | + <target_length>-1</target_length> | |
| 1878 | + <target_precision>-1</target_precision> | |
| 1879 | + <target_decimal_symbol/> | |
| 1880 | + <target_grouping_symbol/> | |
| 1881 | + <target_currency_symbol/> | |
| 1882 | + <target_null_string/> | |
| 1883 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1884 | + </field> | |
| 1885 | + <field> | |
| 1886 | + <field_name>all_content</field_name> | |
| 1887 | + <key_value>40</key_value> | |
| 1888 | + <target_name>fcno40</target_name> | |
| 1889 | + <target_type>String</target_type> | |
| 1890 | + <target_format/> | |
| 1891 | + <target_length>-1</target_length> | |
| 1892 | + <target_precision>-1</target_precision> | |
| 1893 | + <target_decimal_symbol/> | |
| 1894 | + <target_grouping_symbol/> | |
| 1895 | + <target_currency_symbol/> | |
| 1896 | + <target_null_string/> | |
| 1897 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1898 | + </field> | |
| 1899 | + <field> | |
| 1900 | + <field_name>all_content</field_name> | |
| 1901 | + <key_value>41</key_value> | |
| 1902 | + <target_name>fcno41</target_name> | |
| 1903 | + <target_type>String</target_type> | |
| 1904 | + <target_format/> | |
| 1905 | + <target_length>-1</target_length> | |
| 1906 | + <target_precision>-1</target_precision> | |
| 1907 | + <target_decimal_symbol/> | |
| 1908 | + <target_grouping_symbol/> | |
| 1909 | + <target_currency_symbol/> | |
| 1910 | + <target_null_string/> | |
| 1911 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1912 | + </field> | |
| 1913 | + <field> | |
| 1914 | + <field_name>all_content</field_name> | |
| 1915 | + <key_value>42</key_value> | |
| 1916 | + <target_name>fcno42</target_name> | |
| 1917 | + <target_type>String</target_type> | |
| 1918 | + <target_format/> | |
| 1919 | + <target_length>-1</target_length> | |
| 1920 | + <target_precision>-1</target_precision> | |
| 1921 | + <target_decimal_symbol/> | |
| 1922 | + <target_grouping_symbol/> | |
| 1923 | + <target_currency_symbol/> | |
| 1924 | + <target_null_string/> | |
| 1925 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1926 | + </field> | |
| 1927 | + <field> | |
| 1928 | + <field_name>all_content</field_name> | |
| 1929 | + <key_value>43</key_value> | |
| 1930 | + <target_name>fcno43</target_name> | |
| 1931 | + <target_type>String</target_type> | |
| 1932 | + <target_format/> | |
| 1933 | + <target_length>-1</target_length> | |
| 1934 | + <target_precision>-1</target_precision> | |
| 1935 | + <target_decimal_symbol/> | |
| 1936 | + <target_grouping_symbol/> | |
| 1937 | + <target_currency_symbol/> | |
| 1938 | + <target_null_string/> | |
| 1939 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1940 | + </field> | |
| 1941 | + <field> | |
| 1942 | + <field_name>all_content</field_name> | |
| 1943 | + <key_value>44</key_value> | |
| 1944 | + <target_name>fcno44</target_name> | |
| 1945 | + <target_type>String</target_type> | |
| 1946 | + <target_format/> | |
| 1947 | + <target_length>-1</target_length> | |
| 1948 | + <target_precision>-1</target_precision> | |
| 1949 | + <target_decimal_symbol/> | |
| 1950 | + <target_grouping_symbol/> | |
| 1951 | + <target_currency_symbol/> | |
| 1952 | + <target_null_string/> | |
| 1953 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1954 | + </field> | |
| 1955 | + <field> | |
| 1956 | + <field_name>all_content</field_name> | |
| 1957 | + <key_value>45</key_value> | |
| 1958 | + <target_name>fcno45</target_name> | |
| 1959 | + <target_type>String</target_type> | |
| 1960 | + <target_format/> | |
| 1961 | + <target_length>-1</target_length> | |
| 1962 | + <target_precision>-1</target_precision> | |
| 1963 | + <target_decimal_symbol/> | |
| 1964 | + <target_grouping_symbol/> | |
| 1965 | + <target_currency_symbol/> | |
| 1966 | + <target_null_string/> | |
| 1967 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1968 | + </field> | |
| 1969 | + <field> | |
| 1970 | + <field_name>all_content</field_name> | |
| 1971 | + <key_value>46</key_value> | |
| 1972 | + <target_name>fcno46</target_name> | |
| 1973 | + <target_type>String</target_type> | |
| 1974 | + <target_format/> | |
| 1975 | + <target_length>-1</target_length> | |
| 1976 | + <target_precision>-1</target_precision> | |
| 1977 | + <target_decimal_symbol/> | |
| 1978 | + <target_grouping_symbol/> | |
| 1979 | + <target_currency_symbol/> | |
| 1980 | + <target_null_string/> | |
| 1981 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1982 | + </field> | |
| 1983 | + <field> | |
| 1984 | + <field_name>all_content</field_name> | |
| 1985 | + <key_value>47</key_value> | |
| 1986 | + <target_name>fcno47</target_name> | |
| 1987 | + <target_type>String</target_type> | |
| 1988 | + <target_format/> | |
| 1989 | + <target_length>-1</target_length> | |
| 1990 | + <target_precision>-1</target_precision> | |
| 1991 | + <target_decimal_symbol/> | |
| 1992 | + <target_grouping_symbol/> | |
| 1993 | + <target_currency_symbol/> | |
| 1994 | + <target_null_string/> | |
| 1995 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1996 | + </field> | |
| 1997 | + <field> | |
| 1998 | + <field_name>all_content</field_name> | |
| 1999 | + <key_value>48</key_value> | |
| 2000 | + <target_name>fcno48</target_name> | |
| 2001 | + <target_type>String</target_type> | |
| 2002 | + <target_format/> | |
| 2003 | + <target_length>-1</target_length> | |
| 2004 | + <target_precision>-1</target_precision> | |
| 2005 | + <target_decimal_symbol/> | |
| 2006 | + <target_grouping_symbol/> | |
| 2007 | + <target_currency_symbol/> | |
| 2008 | + <target_null_string/> | |
| 2009 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2010 | + </field> | |
| 2011 | + <field> | |
| 2012 | + <field_name>all_content</field_name> | |
| 2013 | + <key_value>49</key_value> | |
| 2014 | + <target_name>fcno49</target_name> | |
| 2015 | + <target_type>String</target_type> | |
| 2016 | + <target_format/> | |
| 2017 | + <target_length>-1</target_length> | |
| 2018 | + <target_precision>-1</target_precision> | |
| 2019 | + <target_decimal_symbol/> | |
| 2020 | + <target_grouping_symbol/> | |
| 2021 | + <target_currency_symbol/> | |
| 2022 | + <target_null_string/> | |
| 2023 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2024 | + </field> | |
| 2025 | + <field> | |
| 2026 | + <field_name>all_content</field_name> | |
| 2027 | + <key_value>50</key_value> | |
| 2028 | + <target_name>fcno50</target_name> | |
| 2029 | + <target_type>String</target_type> | |
| 2030 | + <target_format/> | |
| 2031 | + <target_length>-1</target_length> | |
| 2032 | + <target_precision>-1</target_precision> | |
| 2033 | + <target_decimal_symbol/> | |
| 2034 | + <target_grouping_symbol/> | |
| 2035 | + <target_currency_symbol/> | |
| 2036 | + <target_null_string/> | |
| 2037 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2038 | + </field> | |
| 2039 | + <field> | |
| 2040 | + <field_name>all_content</field_name> | |
| 2041 | + <key_value>51</key_value> | |
| 2042 | + <target_name>fcno51</target_name> | |
| 2043 | + <target_type>String</target_type> | |
| 2044 | + <target_format/> | |
| 2045 | + <target_length>-1</target_length> | |
| 2046 | + <target_precision>-1</target_precision> | |
| 2047 | + <target_decimal_symbol/> | |
| 2048 | + <target_grouping_symbol/> | |
| 2049 | + <target_currency_symbol/> | |
| 2050 | + <target_null_string/> | |
| 2051 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2052 | + </field> | |
| 2053 | + <field> | |
| 2054 | + <field_name>all_content</field_name> | |
| 2055 | + <key_value>52</key_value> | |
| 2056 | + <target_name>fcno52</target_name> | |
| 2057 | + <target_type>String</target_type> | |
| 2058 | + <target_format/> | |
| 2059 | + <target_length>-1</target_length> | |
| 2060 | + <target_precision>-1</target_precision> | |
| 2061 | + <target_decimal_symbol/> | |
| 2062 | + <target_grouping_symbol/> | |
| 2063 | + <target_currency_symbol/> | |
| 2064 | + <target_null_string/> | |
| 2065 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2066 | + </field> | |
| 2067 | + <field> | |
| 2068 | + <field_name>all_content</field_name> | |
| 2069 | + <key_value>53</key_value> | |
| 2070 | + <target_name>fcno53</target_name> | |
| 2071 | + <target_type>String</target_type> | |
| 2072 | + <target_format/> | |
| 2073 | + <target_length>-1</target_length> | |
| 2074 | + <target_precision>-1</target_precision> | |
| 2075 | + <target_decimal_symbol/> | |
| 2076 | + <target_grouping_symbol/> | |
| 2077 | + <target_currency_symbol/> | |
| 2078 | + <target_null_string/> | |
| 2079 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2080 | + </field> | |
| 2081 | + <field> | |
| 2082 | + <field_name>all_content</field_name> | |
| 2083 | + <key_value>54</key_value> | |
| 2084 | + <target_name>fcno54</target_name> | |
| 2085 | + <target_type>String</target_type> | |
| 2086 | + <target_format/> | |
| 2087 | + <target_length>-1</target_length> | |
| 2088 | + <target_precision>-1</target_precision> | |
| 2089 | + <target_decimal_symbol/> | |
| 2090 | + <target_grouping_symbol/> | |
| 2091 | + <target_currency_symbol/> | |
| 2092 | + <target_null_string/> | |
| 2093 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2094 | + </field> | |
| 2095 | + <field> | |
| 2096 | + <field_name>all_content</field_name> | |
| 2097 | + <key_value>55</key_value> | |
| 2098 | + <target_name>fcno55</target_name> | |
| 2099 | + <target_type>String</target_type> | |
| 2100 | + <target_format/> | |
| 2101 | + <target_length>-1</target_length> | |
| 2102 | + <target_precision>-1</target_precision> | |
| 2103 | + <target_decimal_symbol/> | |
| 2104 | + <target_grouping_symbol/> | |
| 2105 | + <target_currency_symbol/> | |
| 2106 | + <target_null_string/> | |
| 2107 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2108 | + </field> | |
| 2109 | + <field> | |
| 2110 | + <field_name>all_content</field_name> | |
| 2111 | + <key_value>56</key_value> | |
| 2112 | + <target_name>fcno56</target_name> | |
| 2113 | + <target_type>String</target_type> | |
| 2114 | + <target_format/> | |
| 2115 | + <target_length>-1</target_length> | |
| 2116 | + <target_precision>-1</target_precision> | |
| 2117 | + <target_decimal_symbol/> | |
| 2118 | + <target_grouping_symbol/> | |
| 2119 | + <target_currency_symbol/> | |
| 2120 | + <target_null_string/> | |
| 2121 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2122 | + </field> | |
| 2123 | + <field> | |
| 2124 | + <field_name>all_content</field_name> | |
| 2125 | + <key_value>57</key_value> | |
| 2126 | + <target_name>fcno57</target_name> | |
| 2127 | + <target_type>String</target_type> | |
| 2128 | + <target_format/> | |
| 2129 | + <target_length>-1</target_length> | |
| 2130 | + <target_precision>-1</target_precision> | |
| 2131 | + <target_decimal_symbol/> | |
| 2132 | + <target_grouping_symbol/> | |
| 2133 | + <target_currency_symbol/> | |
| 2134 | + <target_null_string/> | |
| 2135 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2136 | + </field> | |
| 2137 | + <field> | |
| 2138 | + <field_name>all_content</field_name> | |
| 2139 | + <key_value>58</key_value> | |
| 2140 | + <target_name>fcno58</target_name> | |
| 2141 | + <target_type>String</target_type> | |
| 2142 | + <target_format/> | |
| 2143 | + <target_length>-1</target_length> | |
| 2144 | + <target_precision>-1</target_precision> | |
| 2145 | + <target_decimal_symbol/> | |
| 2146 | + <target_grouping_symbol/> | |
| 2147 | + <target_currency_symbol/> | |
| 2148 | + <target_null_string/> | |
| 2149 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2150 | + </field> | |
| 2151 | + <field> | |
| 2152 | + <field_name>all_content</field_name> | |
| 2153 | + <key_value>59</key_value> | |
| 2154 | + <target_name>fcno59</target_name> | |
| 2155 | + <target_type>String</target_type> | |
| 2156 | + <target_format/> | |
| 2157 | + <target_length>-1</target_length> | |
| 2158 | + <target_precision>-1</target_precision> | |
| 2159 | + <target_decimal_symbol/> | |
| 2160 | + <target_grouping_symbol/> | |
| 2161 | + <target_currency_symbol/> | |
| 2162 | + <target_null_string/> | |
| 2163 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2164 | + </field> | |
| 2165 | + <field> | |
| 2166 | + <field_name>all_content</field_name> | |
| 2167 | + <key_value>60</key_value> | |
| 2168 | + <target_name>fcno60</target_name> | |
| 2169 | + <target_type>String</target_type> | |
| 2170 | + <target_format/> | |
| 2171 | + <target_length>-1</target_length> | |
| 2172 | + <target_precision>-1</target_precision> | |
| 2173 | + <target_decimal_symbol/> | |
| 2174 | + <target_grouping_symbol/> | |
| 2175 | + <target_currency_symbol/> | |
| 2176 | + <target_null_string/> | |
| 2177 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2178 | + </field> | |
| 2179 | + <field> | |
| 2180 | + <field_name>all_content</field_name> | |
| 2181 | + <key_value>61</key_value> | |
| 2182 | + <target_name>fcno61</target_name> | |
| 2183 | + <target_type>String</target_type> | |
| 2184 | + <target_format/> | |
| 2185 | + <target_length>-1</target_length> | |
| 2186 | + <target_precision>-1</target_precision> | |
| 2187 | + <target_decimal_symbol/> | |
| 2188 | + <target_grouping_symbol/> | |
| 2189 | + <target_currency_symbol/> | |
| 2190 | + <target_null_string/> | |
| 2191 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2192 | + </field> | |
| 2193 | + <field> | |
| 2194 | + <field_name>all_content</field_name> | |
| 2195 | + <key_value>62</key_value> | |
| 2196 | + <target_name>fcno62</target_name> | |
| 2197 | + <target_type>String</target_type> | |
| 2198 | + <target_format/> | |
| 2199 | + <target_length>-1</target_length> | |
| 2200 | + <target_precision>-1</target_precision> | |
| 2201 | + <target_decimal_symbol/> | |
| 2202 | + <target_grouping_symbol/> | |
| 2203 | + <target_currency_symbol/> | |
| 2204 | + <target_null_string/> | |
| 2205 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2206 | + </field> | |
| 2207 | + <field> | |
| 2208 | + <field_name>all_content</field_name> | |
| 2209 | + <key_value>63</key_value> | |
| 2210 | + <target_name>fcno63</target_name> | |
| 2211 | + <target_type>String</target_type> | |
| 2212 | + <target_format/> | |
| 2213 | + <target_length>-1</target_length> | |
| 2214 | + <target_precision>-1</target_precision> | |
| 2215 | + <target_decimal_symbol/> | |
| 2216 | + <target_grouping_symbol/> | |
| 2217 | + <target_currency_symbol/> | |
| 2218 | + <target_null_string/> | |
| 2219 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2220 | + </field> | |
| 2221 | + <field> | |
| 2222 | + <field_name>all_content</field_name> | |
| 2223 | + <key_value>64</key_value> | |
| 2224 | + <target_name>fcno64</target_name> | |
| 2225 | + <target_type>String</target_type> | |
| 2226 | + <target_format/> | |
| 2227 | + <target_length>-1</target_length> | |
| 2228 | + <target_precision>-1</target_precision> | |
| 2229 | + <target_decimal_symbol/> | |
| 2230 | + <target_grouping_symbol/> | |
| 2231 | + <target_currency_symbol/> | |
| 2232 | + <target_null_string/> | |
| 2233 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2234 | + </field> | |
| 2235 | + <field> | |
| 2236 | + <field_name>all_content</field_name> | |
| 2237 | + <key_value>65</key_value> | |
| 2238 | + <target_name>fcno65</target_name> | |
| 2239 | + <target_type>String</target_type> | |
| 2240 | + <target_format/> | |
| 2241 | + <target_length>-1</target_length> | |
| 2242 | + <target_precision>-1</target_precision> | |
| 2243 | + <target_decimal_symbol/> | |
| 2244 | + <target_grouping_symbol/> | |
| 2245 | + <target_currency_symbol/> | |
| 2246 | + <target_null_string/> | |
| 2247 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2248 | + </field> | |
| 2249 | + <field> | |
| 2250 | + <field_name>all_content</field_name> | |
| 2251 | + <key_value>66</key_value> | |
| 2252 | + <target_name>fcno66</target_name> | |
| 2253 | + <target_type>String</target_type> | |
| 2254 | + <target_format/> | |
| 2255 | + <target_length>-1</target_length> | |
| 2256 | + <target_precision>-1</target_precision> | |
| 2257 | + <target_decimal_symbol/> | |
| 2258 | + <target_grouping_symbol/> | |
| 2259 | + <target_currency_symbol/> | |
| 2260 | + <target_null_string/> | |
| 2261 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2262 | + </field> | |
| 2263 | + <field> | |
| 2264 | + <field_name>all_content</field_name> | |
| 2265 | + <key_value>67</key_value> | |
| 2266 | + <target_name>fcno67</target_name> | |
| 2267 | + <target_type>String</target_type> | |
| 2268 | + <target_format/> | |
| 2269 | + <target_length>-1</target_length> | |
| 2270 | + <target_precision>-1</target_precision> | |
| 2271 | + <target_decimal_symbol/> | |
| 2272 | + <target_grouping_symbol/> | |
| 2273 | + <target_currency_symbol/> | |
| 2274 | + <target_null_string/> | |
| 2275 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2276 | + </field> | |
| 2277 | + <field> | |
| 2278 | + <field_name>all_content</field_name> | |
| 2279 | + <key_value>68</key_value> | |
| 2280 | + <target_name>fcno68</target_name> | |
| 2281 | + <target_type>String</target_type> | |
| 2282 | + <target_format/> | |
| 2283 | + <target_length>-1</target_length> | |
| 2284 | + <target_precision>-1</target_precision> | |
| 2285 | + <target_decimal_symbol/> | |
| 2286 | + <target_grouping_symbol/> | |
| 2287 | + <target_currency_symbol/> | |
| 2288 | + <target_null_string/> | |
| 2289 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2290 | + </field> | |
| 2291 | + <field> | |
| 2292 | + <field_name>all_content</field_name> | |
| 2293 | + <key_value>69</key_value> | |
| 2294 | + <target_name>fcno69</target_name> | |
| 2295 | + <target_type>String</target_type> | |
| 2296 | + <target_format/> | |
| 2297 | + <target_length>-1</target_length> | |
| 2298 | + <target_precision>-1</target_precision> | |
| 2299 | + <target_decimal_symbol/> | |
| 2300 | + <target_grouping_symbol/> | |
| 2301 | + <target_currency_symbol/> | |
| 2302 | + <target_null_string/> | |
| 2303 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2304 | + </field> | |
| 2305 | + <field> | |
| 2306 | + <field_name>all_content</field_name> | |
| 2307 | + <key_value>70</key_value> | |
| 2308 | + <target_name>fcno70</target_name> | |
| 2309 | + <target_type>String</target_type> | |
| 2310 | + <target_format/> | |
| 2311 | + <target_length>-1</target_length> | |
| 2312 | + <target_precision>-1</target_precision> | |
| 2313 | + <target_decimal_symbol/> | |
| 2314 | + <target_grouping_symbol/> | |
| 2315 | + <target_currency_symbol/> | |
| 2316 | + <target_null_string/> | |
| 2317 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2318 | + </field> | |
| 2319 | + <field> | |
| 2320 | + <field_name>all_content</field_name> | |
| 2321 | + <key_value>71</key_value> | |
| 2322 | + <target_name>fcno71</target_name> | |
| 2323 | + <target_type>String</target_type> | |
| 2324 | + <target_format/> | |
| 2325 | + <target_length>-1</target_length> | |
| 2326 | + <target_precision>-1</target_precision> | |
| 2327 | + <target_decimal_symbol/> | |
| 2328 | + <target_grouping_symbol/> | |
| 2329 | + <target_currency_symbol/> | |
| 2330 | + <target_null_string/> | |
| 2331 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2332 | + </field> | |
| 2333 | + <field> | |
| 2334 | + <field_name>all_content</field_name> | |
| 2335 | + <key_value>72</key_value> | |
| 2336 | + <target_name>fcno72</target_name> | |
| 2337 | + <target_type>String</target_type> | |
| 2338 | + <target_format/> | |
| 2339 | + <target_length>-1</target_length> | |
| 2340 | + <target_precision>-1</target_precision> | |
| 2341 | + <target_decimal_symbol/> | |
| 2342 | + <target_grouping_symbol/> | |
| 2343 | + <target_currency_symbol/> | |
| 2344 | + <target_null_string/> | |
| 2345 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2346 | + </field> | |
| 2347 | + <field> | |
| 2348 | + <field_name>all_content</field_name> | |
| 2349 | + <key_value>73</key_value> | |
| 2350 | + <target_name>fcno73</target_name> | |
| 2351 | + <target_type>String</target_type> | |
| 2352 | + <target_format/> | |
| 2353 | + <target_length>-1</target_length> | |
| 2354 | + <target_precision>-1</target_precision> | |
| 2355 | + <target_decimal_symbol/> | |
| 2356 | + <target_grouping_symbol/> | |
| 2357 | + <target_currency_symbol/> | |
| 2358 | + <target_null_string/> | |
| 2359 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2360 | + </field> | |
| 2361 | + <field> | |
| 2362 | + <field_name>all_content</field_name> | |
| 2363 | + <key_value>74</key_value> | |
| 2364 | + <target_name>fcno74</target_name> | |
| 2365 | + <target_type>String</target_type> | |
| 2366 | + <target_format/> | |
| 2367 | + <target_length>-1</target_length> | |
| 2368 | + <target_precision>-1</target_precision> | |
| 2369 | + <target_decimal_symbol/> | |
| 2370 | + <target_grouping_symbol/> | |
| 2371 | + <target_currency_symbol/> | |
| 2372 | + <target_null_string/> | |
| 2373 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2374 | + </field> | |
| 2375 | + <field> | |
| 2376 | + <field_name>all_content</field_name> | |
| 2377 | + <key_value>75</key_value> | |
| 2378 | + <target_name>fcno75</target_name> | |
| 2379 | + <target_type>String</target_type> | |
| 2380 | + <target_format/> | |
| 2381 | + <target_length>-1</target_length> | |
| 2382 | + <target_precision>-1</target_precision> | |
| 2383 | + <target_decimal_symbol/> | |
| 2384 | + <target_grouping_symbol/> | |
| 2385 | + <target_currency_symbol/> | |
| 2386 | + <target_null_string/> | |
| 2387 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2388 | + </field> | |
| 2389 | + <field> | |
| 2390 | + <field_name>all_content</field_name> | |
| 2391 | + <key_value>76</key_value> | |
| 2392 | + <target_name>fcno76</target_name> | |
| 2393 | + <target_type>String</target_type> | |
| 2394 | + <target_format/> | |
| 2395 | + <target_length>-1</target_length> | |
| 2396 | + <target_precision>-1</target_precision> | |
| 2397 | + <target_decimal_symbol/> | |
| 2398 | + <target_grouping_symbol/> | |
| 2399 | + <target_currency_symbol/> | |
| 2400 | + <target_null_string/> | |
| 2401 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2402 | + </field> | |
| 2403 | + <field> | |
| 2404 | + <field_name>all_content</field_name> | |
| 2405 | + <key_value>77</key_value> | |
| 2406 | + <target_name>fcno77</target_name> | |
| 2407 | + <target_type>String</target_type> | |
| 2408 | + <target_format/> | |
| 2409 | + <target_length>-1</target_length> | |
| 2410 | + <target_precision>-1</target_precision> | |
| 2411 | + <target_decimal_symbol/> | |
| 2412 | + <target_grouping_symbol/> | |
| 2413 | + <target_currency_symbol/> | |
| 2414 | + <target_null_string/> | |
| 2415 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2416 | + </field> | |
| 2417 | + <field> | |
| 2418 | + <field_name>all_content</field_name> | |
| 2419 | + <key_value>78</key_value> | |
| 2420 | + <target_name>fcno78</target_name> | |
| 2421 | + <target_type>String</target_type> | |
| 2422 | + <target_format/> | |
| 2423 | + <target_length>-1</target_length> | |
| 2424 | + <target_precision>-1</target_precision> | |
| 2425 | + <target_decimal_symbol/> | |
| 2426 | + <target_grouping_symbol/> | |
| 2427 | + <target_currency_symbol/> | |
| 2428 | + <target_null_string/> | |
| 2429 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2430 | + </field> | |
| 2431 | + <field> | |
| 2432 | + <field_name>all_content</field_name> | |
| 2433 | + <key_value>79</key_value> | |
| 2434 | + <target_name>fcno79</target_name> | |
| 2435 | + <target_type>String</target_type> | |
| 2436 | + <target_format/> | |
| 2437 | + <target_length>-1</target_length> | |
| 2438 | + <target_precision>-1</target_precision> | |
| 2439 | + <target_decimal_symbol/> | |
| 2440 | + <target_grouping_symbol/> | |
| 2441 | + <target_currency_symbol/> | |
| 2442 | + <target_null_string/> | |
| 2443 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2444 | + </field> | |
| 2445 | + <field> | |
| 2446 | + <field_name>all_content</field_name> | |
| 2447 | + <key_value>80</key_value> | |
| 2448 | + <target_name>fcno80</target_name> | |
| 2449 | + <target_type>String</target_type> | |
| 2450 | + <target_format/> | |
| 2451 | + <target_length>-1</target_length> | |
| 2452 | + <target_precision>-1</target_precision> | |
| 2453 | + <target_decimal_symbol/> | |
| 2454 | + <target_grouping_symbol/> | |
| 2455 | + <target_currency_symbol/> | |
| 2456 | + <target_null_string/> | |
| 2457 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2458 | + </field> | |
| 2459 | + <field> | |
| 2460 | + <field_name>all_content</field_name> | |
| 2461 | + <key_value>81</key_value> | |
| 2462 | + <target_name>fcno81</target_name> | |
| 2463 | + <target_type>String</target_type> | |
| 2464 | + <target_format/> | |
| 2465 | + <target_length>-1</target_length> | |
| 2466 | + <target_precision>-1</target_precision> | |
| 2467 | + <target_decimal_symbol/> | |
| 2468 | + <target_grouping_symbol/> | |
| 2469 | + <target_currency_symbol/> | |
| 2470 | + <target_null_string/> | |
| 2471 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2472 | + </field> | |
| 2473 | + <field> | |
| 2474 | + <field_name>all_content</field_name> | |
| 2475 | + <key_value>82</key_value> | |
| 2476 | + <target_name>fcno82</target_name> | |
| 2477 | + <target_type>String</target_type> | |
| 2478 | + <target_format/> | |
| 2479 | + <target_length>-1</target_length> | |
| 2480 | + <target_precision>-1</target_precision> | |
| 2481 | + <target_decimal_symbol/> | |
| 2482 | + <target_grouping_symbol/> | |
| 2483 | + <target_currency_symbol/> | |
| 2484 | + <target_null_string/> | |
| 2485 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2486 | + </field> | |
| 2487 | + <field> | |
| 2488 | + <field_name>all_content</field_name> | |
| 2489 | + <key_value>83</key_value> | |
| 2490 | + <target_name>fcno83</target_name> | |
| 2491 | + <target_type>String</target_type> | |
| 2492 | + <target_format/> | |
| 2493 | + <target_length>-1</target_length> | |
| 2494 | + <target_precision>-1</target_precision> | |
| 2495 | + <target_decimal_symbol/> | |
| 2496 | + <target_grouping_symbol/> | |
| 2497 | + <target_currency_symbol/> | |
| 2498 | + <target_null_string/> | |
| 2499 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2500 | + </field> | |
| 2501 | + <field> | |
| 2502 | + <field_name>all_content</field_name> | |
| 2503 | + <key_value>84</key_value> | |
| 2504 | + <target_name>fcno84</target_name> | |
| 2505 | + <target_type>String</target_type> | |
| 2506 | + <target_format/> | |
| 2507 | + <target_length>-1</target_length> | |
| 2508 | + <target_precision>-1</target_precision> | |
| 2509 | + <target_decimal_symbol/> | |
| 2510 | + <target_grouping_symbol/> | |
| 2511 | + <target_currency_symbol/> | |
| 2512 | + <target_null_string/> | |
| 2513 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2514 | + </field> | |
| 2515 | + <field> | |
| 2516 | + <field_name>all_content</field_name> | |
| 2517 | + <key_value>85</key_value> | |
| 2518 | + <target_name>fcno85</target_name> | |
| 2519 | + <target_type>String</target_type> | |
| 2520 | + <target_format/> | |
| 2521 | + <target_length>-1</target_length> | |
| 2522 | + <target_precision>-1</target_precision> | |
| 2523 | + <target_decimal_symbol/> | |
| 2524 | + <target_grouping_symbol/> | |
| 2525 | + <target_currency_symbol/> | |
| 2526 | + <target_null_string/> | |
| 2527 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2528 | + </field> | |
| 2529 | + <field> | |
| 2530 | + <field_name>all_content</field_name> | |
| 2531 | + <key_value>86</key_value> | |
| 2532 | + <target_name>fcno86</target_name> | |
| 2533 | + <target_type>String</target_type> | |
| 2534 | + <target_format/> | |
| 2535 | + <target_length>-1</target_length> | |
| 2536 | + <target_precision>-1</target_precision> | |
| 2537 | + <target_decimal_symbol/> | |
| 2538 | + <target_grouping_symbol/> | |
| 2539 | + <target_currency_symbol/> | |
| 2540 | + <target_null_string/> | |
| 2541 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2542 | + </field> | |
| 2543 | + <field> | |
| 2544 | + <field_name>all_content</field_name> | |
| 2545 | + <key_value>87</key_value> | |
| 2546 | + <target_name>fcno87</target_name> | |
| 2547 | + <target_type>String</target_type> | |
| 2548 | + <target_format/> | |
| 2549 | + <target_length>-1</target_length> | |
| 2550 | + <target_precision>-1</target_precision> | |
| 2551 | + <target_decimal_symbol/> | |
| 2552 | + <target_grouping_symbol/> | |
| 2553 | + <target_currency_symbol/> | |
| 2554 | + <target_null_string/> | |
| 2555 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2556 | + </field> | |
| 2557 | + <field> | |
| 2558 | + <field_name>all_content</field_name> | |
| 2559 | + <key_value>88</key_value> | |
| 2560 | + <target_name>fcno88</target_name> | |
| 2561 | + <target_type>String</target_type> | |
| 2562 | + <target_format/> | |
| 2563 | + <target_length>-1</target_length> | |
| 2564 | + <target_precision>-1</target_precision> | |
| 2565 | + <target_decimal_symbol/> | |
| 2566 | + <target_grouping_symbol/> | |
| 2567 | + <target_currency_symbol/> | |
| 2568 | + <target_null_string/> | |
| 2569 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2570 | + </field> | |
| 2571 | + <field> | |
| 2572 | + <field_name>all_content</field_name> | |
| 2573 | + <key_value>89</key_value> | |
| 2574 | + <target_name>fcno89</target_name> | |
| 2575 | + <target_type>String</target_type> | |
| 2576 | + <target_format/> | |
| 2577 | + <target_length>-1</target_length> | |
| 2578 | + <target_precision>-1</target_precision> | |
| 2579 | + <target_decimal_symbol/> | |
| 2580 | + <target_grouping_symbol/> | |
| 2581 | + <target_currency_symbol/> | |
| 2582 | + <target_null_string/> | |
| 2583 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2584 | + </field> | |
| 2585 | + <field> | |
| 2586 | + <field_name>all_content</field_name> | |
| 2587 | + <key_value>90</key_value> | |
| 2588 | + <target_name>fcno90</target_name> | |
| 2589 | + <target_type>String</target_type> | |
| 2590 | + <target_format/> | |
| 2591 | + <target_length>-1</target_length> | |
| 2592 | + <target_precision>-1</target_precision> | |
| 2593 | + <target_decimal_symbol/> | |
| 2594 | + <target_grouping_symbol/> | |
| 2595 | + <target_currency_symbol/> | |
| 2596 | + <target_null_string/> | |
| 2597 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2598 | + </field> | |
| 2599 | + <field> | |
| 2600 | + <field_name>all_content</field_name> | |
| 2601 | + <key_value>91</key_value> | |
| 2602 | + <target_name>fcno91</target_name> | |
| 2603 | + <target_type>String</target_type> | |
| 2604 | + <target_format/> | |
| 2605 | + <target_length>-1</target_length> | |
| 2606 | + <target_precision>-1</target_precision> | |
| 2607 | + <target_decimal_symbol/> | |
| 2608 | + <target_grouping_symbol/> | |
| 2609 | + <target_currency_symbol/> | |
| 2610 | + <target_null_string/> | |
| 2611 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2612 | + </field> | |
| 2613 | + <field> | |
| 2614 | + <field_name>all_content</field_name> | |
| 2615 | + <key_value>92</key_value> | |
| 2616 | + <target_name>fcno92</target_name> | |
| 2617 | + <target_type>String</target_type> | |
| 2618 | + <target_format/> | |
| 2619 | + <target_length>-1</target_length> | |
| 2620 | + <target_precision>-1</target_precision> | |
| 2621 | + <target_decimal_symbol/> | |
| 2622 | + <target_grouping_symbol/> | |
| 2623 | + <target_currency_symbol/> | |
| 2624 | + <target_null_string/> | |
| 2625 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2626 | + </field> | |
| 2627 | + <field> | |
| 2628 | + <field_name>all_content</field_name> | |
| 2629 | + <key_value>93</key_value> | |
| 2630 | + <target_name>fcno93</target_name> | |
| 2631 | + <target_type>String</target_type> | |
| 2632 | + <target_format/> | |
| 2633 | + <target_length>-1</target_length> | |
| 2634 | + <target_precision>-1</target_precision> | |
| 2635 | + <target_decimal_symbol/> | |
| 2636 | + <target_grouping_symbol/> | |
| 2637 | + <target_currency_symbol/> | |
| 2638 | + <target_null_string/> | |
| 2639 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2640 | + </field> | |
| 2641 | + <field> | |
| 2642 | + <field_name>all_content</field_name> | |
| 2643 | + <key_value>94</key_value> | |
| 2644 | + <target_name>fcno94</target_name> | |
| 2645 | + <target_type>String</target_type> | |
| 2646 | + <target_format/> | |
| 2647 | + <target_length>-1</target_length> | |
| 2648 | + <target_precision>-1</target_precision> | |
| 2649 | + <target_decimal_symbol/> | |
| 2650 | + <target_grouping_symbol/> | |
| 2651 | + <target_currency_symbol/> | |
| 2652 | + <target_null_string/> | |
| 2653 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2654 | + </field> | |
| 2655 | + <field> | |
| 2656 | + <field_name>all_content</field_name> | |
| 2657 | + <key_value>95</key_value> | |
| 2658 | + <target_name>fcno95</target_name> | |
| 2659 | + <target_type>String</target_type> | |
| 2660 | + <target_format/> | |
| 2661 | + <target_length>-1</target_length> | |
| 2662 | + <target_precision>-1</target_precision> | |
| 2663 | + <target_decimal_symbol/> | |
| 2664 | + <target_grouping_symbol/> | |
| 2665 | + <target_currency_symbol/> | |
| 2666 | + <target_null_string/> | |
| 2667 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2668 | + </field> | |
| 2669 | + <field> | |
| 2670 | + <field_name>all_content</field_name> | |
| 2671 | + <key_value>96</key_value> | |
| 2672 | + <target_name>fcno96</target_name> | |
| 2673 | + <target_type>String</target_type> | |
| 2674 | + <target_format/> | |
| 2675 | + <target_length>-1</target_length> | |
| 2676 | + <target_precision>-1</target_precision> | |
| 2677 | + <target_decimal_symbol/> | |
| 2678 | + <target_grouping_symbol/> | |
| 2679 | + <target_currency_symbol/> | |
| 2680 | + <target_null_string/> | |
| 2681 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2682 | + </field> | |
| 2683 | + <field> | |
| 2684 | + <field_name>all_content</field_name> | |
| 2685 | + <key_value>97</key_value> | |
| 2686 | + <target_name>fcno97</target_name> | |
| 2687 | + <target_type>String</target_type> | |
| 2688 | + <target_format/> | |
| 2689 | + <target_length>-1</target_length> | |
| 2690 | + <target_precision>-1</target_precision> | |
| 2691 | + <target_decimal_symbol/> | |
| 2692 | + <target_grouping_symbol/> | |
| 2693 | + <target_currency_symbol/> | |
| 2694 | + <target_null_string/> | |
| 2695 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2696 | + </field> | |
| 2697 | + <field> | |
| 2698 | + <field_name>all_content</field_name> | |
| 2699 | + <key_value>98</key_value> | |
| 2700 | + <target_name>fcno98</target_name> | |
| 2701 | + <target_type>String</target_type> | |
| 2702 | + <target_format/> | |
| 2703 | + <target_length>-1</target_length> | |
| 2704 | + <target_precision>-1</target_precision> | |
| 2705 | + <target_decimal_symbol/> | |
| 2706 | + <target_grouping_symbol/> | |
| 2707 | + <target_currency_symbol/> | |
| 2708 | + <target_null_string/> | |
| 2709 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2710 | + </field> | |
| 2711 | + <field> | |
| 2712 | + <field_name>all_content</field_name> | |
| 2713 | + <key_value>99</key_value> | |
| 2714 | + <target_name>fcno99</target_name> | |
| 2715 | + <target_type>String</target_type> | |
| 2716 | + <target_format/> | |
| 2717 | + <target_length>-1</target_length> | |
| 2718 | + <target_precision>-1</target_precision> | |
| 2719 | + <target_decimal_symbol/> | |
| 2720 | + <target_grouping_symbol/> | |
| 2721 | + <target_currency_symbol/> | |
| 2722 | + <target_null_string/> | |
| 2723 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2724 | + </field> | |
| 2725 | + <field> | |
| 2726 | + <field_name>all_content</field_name> | |
| 2727 | + <key_value>100</key_value> | |
| 2728 | + <target_name>fcno100</target_name> | |
| 2729 | + <target_type>String</target_type> | |
| 2730 | + <target_format/> | |
| 2731 | + <target_length>-1</target_length> | |
| 2732 | + <target_precision>-1</target_precision> | |
| 2733 | + <target_decimal_symbol/> | |
| 2734 | + <target_grouping_symbol/> | |
| 2735 | + <target_currency_symbol/> | |
| 2736 | + <target_null_string/> | |
| 2737 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2738 | + </field> | |
| 2739 | + <field> | |
| 2740 | + <field_name>all_content</field_name> | |
| 2741 | + <key_value>101</key_value> | |
| 2742 | + <target_name>fcno101</target_name> | |
| 2743 | + <target_type>String</target_type> | |
| 2744 | + <target_format/> | |
| 2745 | + <target_length>-1</target_length> | |
| 2746 | + <target_precision>-1</target_precision> | |
| 2747 | + <target_decimal_symbol/> | |
| 2748 | + <target_grouping_symbol/> | |
| 2749 | + <target_currency_symbol/> | |
| 2750 | + <target_null_string/> | |
| 2751 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2752 | + </field> | |
| 2753 | + <field> | |
| 2754 | + <field_name>all_content</field_name> | |
| 2755 | + <key_value>102</key_value> | |
| 2756 | + <target_name>fcno102</target_name> | |
| 2757 | + <target_type>String</target_type> | |
| 2758 | + <target_format/> | |
| 2759 | + <target_length>-1</target_length> | |
| 2760 | + <target_precision>-1</target_precision> | |
| 2761 | + <target_decimal_symbol/> | |
| 2762 | + <target_grouping_symbol/> | |
| 2763 | + <target_currency_symbol/> | |
| 2764 | + <target_null_string/> | |
| 2765 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2766 | + </field> | |
| 2767 | + <field> | |
| 2768 | + <field_name>all_content</field_name> | |
| 2769 | + <key_value>103</key_value> | |
| 2770 | + <target_name>fcno103</target_name> | |
| 2771 | + <target_type>String</target_type> | |
| 2772 | + <target_format/> | |
| 2773 | + <target_length>-1</target_length> | |
| 2774 | + <target_precision>-1</target_precision> | |
| 2775 | + <target_decimal_symbol/> | |
| 2776 | + <target_grouping_symbol/> | |
| 2777 | + <target_currency_symbol/> | |
| 2778 | + <target_null_string/> | |
| 2779 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2780 | + </field> | |
| 2781 | + <field> | |
| 2782 | + <field_name>all_content</field_name> | |
| 2783 | + <key_value>104</key_value> | |
| 2784 | + <target_name>fcno104</target_name> | |
| 2785 | + <target_type>String</target_type> | |
| 2786 | + <target_format/> | |
| 2787 | + <target_length>-1</target_length> | |
| 2788 | + <target_precision>-1</target_precision> | |
| 2789 | + <target_decimal_symbol/> | |
| 2790 | + <target_grouping_symbol/> | |
| 2791 | + <target_currency_symbol/> | |
| 2792 | + <target_null_string/> | |
| 2793 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2794 | + </field> | |
| 2795 | + <field> | |
| 2796 | + <field_name>all_content</field_name> | |
| 2797 | + <key_value>105</key_value> | |
| 2798 | + <target_name>fcno105</target_name> | |
| 2799 | + <target_type>String</target_type> | |
| 2800 | + <target_format/> | |
| 2801 | + <target_length>-1</target_length> | |
| 2802 | + <target_precision>-1</target_precision> | |
| 2803 | + <target_decimal_symbol/> | |
| 2804 | + <target_grouping_symbol/> | |
| 2805 | + <target_currency_symbol/> | |
| 2806 | + <target_null_string/> | |
| 2807 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2808 | + </field> | |
| 2809 | + <field> | |
| 2810 | + <field_name>all_content</field_name> | |
| 2811 | + <key_value>106</key_value> | |
| 2812 | + <target_name>fcno106</target_name> | |
| 2813 | + <target_type>String</target_type> | |
| 2814 | + <target_format/> | |
| 2815 | + <target_length>-1</target_length> | |
| 2816 | + <target_precision>-1</target_precision> | |
| 2817 | + <target_decimal_symbol/> | |
| 2818 | + <target_grouping_symbol/> | |
| 2819 | + <target_currency_symbol/> | |
| 2820 | + <target_null_string/> | |
| 2821 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2822 | + </field> | |
| 2823 | + <field> | |
| 2824 | + <field_name>all_content</field_name> | |
| 2825 | + <key_value>107</key_value> | |
| 2826 | + <target_name>fcno107</target_name> | |
| 2827 | + <target_type>String</target_type> | |
| 2828 | + <target_format/> | |
| 2829 | + <target_length>-1</target_length> | |
| 2830 | + <target_precision>-1</target_precision> | |
| 2831 | + <target_decimal_symbol/> | |
| 2832 | + <target_grouping_symbol/> | |
| 2833 | + <target_currency_symbol/> | |
| 2834 | + <target_null_string/> | |
| 2835 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2836 | + </field> | |
| 2837 | + <field> | |
| 2838 | + <field_name>all_content</field_name> | |
| 2839 | + <key_value>108</key_value> | |
| 2840 | + <target_name>fcno108</target_name> | |
| 2841 | + <target_type>String</target_type> | |
| 2842 | + <target_format/> | |
| 2843 | + <target_length>-1</target_length> | |
| 2844 | + <target_precision>-1</target_precision> | |
| 2845 | + <target_decimal_symbol/> | |
| 2846 | + <target_grouping_symbol/> | |
| 2847 | + <target_currency_symbol/> | |
| 2848 | + <target_null_string/> | |
| 2849 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2850 | + </field> | |
| 2851 | + <field> | |
| 2852 | + <field_name>all_content</field_name> | |
| 2853 | + <key_value>109</key_value> | |
| 2854 | + <target_name>fcno109</target_name> | |
| 2855 | + <target_type>String</target_type> | |
| 2856 | + <target_format/> | |
| 2857 | + <target_length>-1</target_length> | |
| 2858 | + <target_precision>-1</target_precision> | |
| 2859 | + <target_decimal_symbol/> | |
| 2860 | + <target_grouping_symbol/> | |
| 2861 | + <target_currency_symbol/> | |
| 2862 | + <target_null_string/> | |
| 2863 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2864 | + </field> | |
| 2865 | + <field> | |
| 2866 | + <field_name>all_content</field_name> | |
| 2867 | + <key_value>110</key_value> | |
| 2868 | + <target_name>fcno110</target_name> | |
| 2869 | + <target_type>String</target_type> | |
| 2870 | + <target_format/> | |
| 2871 | + <target_length>-1</target_length> | |
| 2872 | + <target_precision>-1</target_precision> | |
| 2873 | + <target_decimal_symbol/> | |
| 2874 | + <target_grouping_symbol/> | |
| 2875 | + <target_currency_symbol/> | |
| 2876 | + <target_null_string/> | |
| 2877 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2878 | + </field> | |
| 2879 | + <field> | |
| 2880 | + <field_name>all_content</field_name> | |
| 2881 | + <key_value>111</key_value> | |
| 2882 | + <target_name>fcno111</target_name> | |
| 2883 | + <target_type>String</target_type> | |
| 2884 | + <target_format/> | |
| 2885 | + <target_length>-1</target_length> | |
| 2886 | + <target_precision>-1</target_precision> | |
| 2887 | + <target_decimal_symbol/> | |
| 2888 | + <target_grouping_symbol/> | |
| 2889 | + <target_currency_symbol/> | |
| 2890 | + <target_null_string/> | |
| 2891 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2892 | + </field> | |
| 2893 | + <field> | |
| 2894 | + <field_name>all_content</field_name> | |
| 2895 | + <key_value>112</key_value> | |
| 2896 | + <target_name>fcno112</target_name> | |
| 2897 | + <target_type>String</target_type> | |
| 2898 | + <target_format/> | |
| 2899 | + <target_length>-1</target_length> | |
| 2900 | + <target_precision>-1</target_precision> | |
| 2901 | + <target_decimal_symbol/> | |
| 2902 | + <target_grouping_symbol/> | |
| 2903 | + <target_currency_symbol/> | |
| 2904 | + <target_null_string/> | |
| 2905 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2906 | + </field> | |
| 2907 | + <field> | |
| 2908 | + <field_name>all_content</field_name> | |
| 2909 | + <key_value>113</key_value> | |
| 2910 | + <target_name>fcno113</target_name> | |
| 2911 | + <target_type>String</target_type> | |
| 2912 | + <target_format/> | |
| 2913 | + <target_length>-1</target_length> | |
| 2914 | + <target_precision>-1</target_precision> | |
| 2915 | + <target_decimal_symbol/> | |
| 2916 | + <target_grouping_symbol/> | |
| 2917 | + <target_currency_symbol/> | |
| 2918 | + <target_null_string/> | |
| 2919 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2920 | + </field> | |
| 2921 | + <field> | |
| 2922 | + <field_name>all_content</field_name> | |
| 2923 | + <key_value>114</key_value> | |
| 2924 | + <target_name>fcno114</target_name> | |
| 2925 | + <target_type>String</target_type> | |
| 2926 | + <target_format/> | |
| 2927 | + <target_length>-1</target_length> | |
| 2928 | + <target_precision>-1</target_precision> | |
| 2929 | + <target_decimal_symbol/> | |
| 2930 | + <target_grouping_symbol/> | |
| 2931 | + <target_currency_symbol/> | |
| 2932 | + <target_null_string/> | |
| 2933 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2934 | + </field> | |
| 2935 | + <field> | |
| 2936 | + <field_name>all_content</field_name> | |
| 2937 | + <key_value>115</key_value> | |
| 2938 | + <target_name>fcno115</target_name> | |
| 2939 | + <target_type>String</target_type> | |
| 2940 | + <target_format/> | |
| 2941 | + <target_length>-1</target_length> | |
| 2942 | + <target_precision>-1</target_precision> | |
| 2943 | + <target_decimal_symbol/> | |
| 2944 | + <target_grouping_symbol/> | |
| 2945 | + <target_currency_symbol/> | |
| 2946 | + <target_null_string/> | |
| 2947 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2948 | + </field> | |
| 2949 | + <field> | |
| 2950 | + <field_name>all_content</field_name> | |
| 2951 | + <key_value>116</key_value> | |
| 2952 | + <target_name>fcno116</target_name> | |
| 2953 | + <target_type>String</target_type> | |
| 2954 | + <target_format/> | |
| 2955 | + <target_length>-1</target_length> | |
| 2956 | + <target_precision>-1</target_precision> | |
| 2957 | + <target_decimal_symbol/> | |
| 2958 | + <target_grouping_symbol/> | |
| 2959 | + <target_currency_symbol/> | |
| 2960 | + <target_null_string/> | |
| 2961 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2962 | + </field> | |
| 2963 | + <field> | |
| 2964 | + <field_name>all_content</field_name> | |
| 2965 | + <key_value>117</key_value> | |
| 2966 | + <target_name>fcno117</target_name> | |
| 2967 | + <target_type>String</target_type> | |
| 2968 | + <target_format/> | |
| 2969 | + <target_length>-1</target_length> | |
| 2970 | + <target_precision>-1</target_precision> | |
| 2971 | + <target_decimal_symbol/> | |
| 2972 | + <target_grouping_symbol/> | |
| 2973 | + <target_currency_symbol/> | |
| 2974 | + <target_null_string/> | |
| 2975 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2976 | + </field> | |
| 2977 | + <field> | |
| 2978 | + <field_name>all_content</field_name> | |
| 2979 | + <key_value>118</key_value> | |
| 2980 | + <target_name>fcno118</target_name> | |
| 2981 | + <target_type>String</target_type> | |
| 2982 | + <target_format/> | |
| 2983 | + <target_length>-1</target_length> | |
| 2984 | + <target_precision>-1</target_precision> | |
| 2985 | + <target_decimal_symbol/> | |
| 2986 | + <target_grouping_symbol/> | |
| 2987 | + <target_currency_symbol/> | |
| 2988 | + <target_null_string/> | |
| 2989 | + <target_aggregation_type>-</target_aggregation_type> | |
| 2990 | + </field> | |
| 2991 | + <field> | |
| 2992 | + <field_name>all_content</field_name> | |
| 2993 | + <key_value>119</key_value> | |
| 2994 | + <target_name>fcno119</target_name> | |
| 2995 | + <target_type>String</target_type> | |
| 2996 | + <target_format/> | |
| 2997 | + <target_length>-1</target_length> | |
| 2998 | + <target_precision>-1</target_precision> | |
| 2999 | + <target_decimal_symbol/> | |
| 3000 | + <target_grouping_symbol/> | |
| 3001 | + <target_currency_symbol/> | |
| 3002 | + <target_null_string/> | |
| 3003 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3004 | + </field> | |
| 3005 | + <field> | |
| 3006 | + <field_name>all_content</field_name> | |
| 3007 | + <key_value>120</key_value> | |
| 3008 | + <target_name>fcno120</target_name> | |
| 3009 | + <target_type>String</target_type> | |
| 3010 | + <target_format/> | |
| 3011 | + <target_length>-1</target_length> | |
| 3012 | + <target_precision>-1</target_precision> | |
| 3013 | + <target_decimal_symbol/> | |
| 3014 | + <target_grouping_symbol/> | |
| 3015 | + <target_currency_symbol/> | |
| 3016 | + <target_null_string/> | |
| 3017 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3018 | + </field> | |
| 3019 | + <field> | |
| 3020 | + <field_name>all_content</field_name> | |
| 3021 | + <key_value>121</key_value> | |
| 3022 | + <target_name>fcno121</target_name> | |
| 3023 | + <target_type>String</target_type> | |
| 3024 | + <target_format/> | |
| 3025 | + <target_length>-1</target_length> | |
| 3026 | + <target_precision>-1</target_precision> | |
| 3027 | + <target_decimal_symbol/> | |
| 3028 | + <target_grouping_symbol/> | |
| 3029 | + <target_currency_symbol/> | |
| 3030 | + <target_null_string/> | |
| 3031 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3032 | + </field> | |
| 3033 | + <field> | |
| 3034 | + <field_name>all_content</field_name> | |
| 3035 | + <key_value>122</key_value> | |
| 3036 | + <target_name>fcno122</target_name> | |
| 3037 | + <target_type>String</target_type> | |
| 3038 | + <target_format/> | |
| 3039 | + <target_length>-1</target_length> | |
| 3040 | + <target_precision>-1</target_precision> | |
| 3041 | + <target_decimal_symbol/> | |
| 3042 | + <target_grouping_symbol/> | |
| 3043 | + <target_currency_symbol/> | |
| 3044 | + <target_null_string/> | |
| 3045 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3046 | + </field> | |
| 3047 | + <field> | |
| 3048 | + <field_name>all_content</field_name> | |
| 3049 | + <key_value>123</key_value> | |
| 3050 | + <target_name>fcno123</target_name> | |
| 3051 | + <target_type>String</target_type> | |
| 3052 | + <target_format/> | |
| 3053 | + <target_length>-1</target_length> | |
| 3054 | + <target_precision>-1</target_precision> | |
| 3055 | + <target_decimal_symbol/> | |
| 3056 | + <target_grouping_symbol/> | |
| 3057 | + <target_currency_symbol/> | |
| 3058 | + <target_null_string/> | |
| 3059 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3060 | + </field> | |
| 3061 | + <field> | |
| 3062 | + <field_name>all_content</field_name> | |
| 3063 | + <key_value>124</key_value> | |
| 3064 | + <target_name>fcno124</target_name> | |
| 3065 | + <target_type>String</target_type> | |
| 3066 | + <target_format/> | |
| 3067 | + <target_length>-1</target_length> | |
| 3068 | + <target_precision>-1</target_precision> | |
| 3069 | + <target_decimal_symbol/> | |
| 3070 | + <target_grouping_symbol/> | |
| 3071 | + <target_currency_symbol/> | |
| 3072 | + <target_null_string/> | |
| 3073 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3074 | + </field> | |
| 3075 | + <field> | |
| 3076 | + <field_name>all_content</field_name> | |
| 3077 | + <key_value>125</key_value> | |
| 3078 | + <target_name>fcno125</target_name> | |
| 3079 | + <target_type>String</target_type> | |
| 3080 | + <target_format/> | |
| 3081 | + <target_length>-1</target_length> | |
| 3082 | + <target_precision>-1</target_precision> | |
| 3083 | + <target_decimal_symbol/> | |
| 3084 | + <target_grouping_symbol/> | |
| 3085 | + <target_currency_symbol/> | |
| 3086 | + <target_null_string/> | |
| 3087 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3088 | + </field> | |
| 3089 | + <field> | |
| 3090 | + <field_name>all_content</field_name> | |
| 3091 | + <key_value>126</key_value> | |
| 3092 | + <target_name>fcno126</target_name> | |
| 3093 | + <target_type>String</target_type> | |
| 3094 | + <target_format/> | |
| 3095 | + <target_length>-1</target_length> | |
| 3096 | + <target_precision>-1</target_precision> | |
| 3097 | + <target_decimal_symbol/> | |
| 3098 | + <target_grouping_symbol/> | |
| 3099 | + <target_currency_symbol/> | |
| 3100 | + <target_null_string/> | |
| 3101 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3102 | + </field> | |
| 3103 | + <field> | |
| 3104 | + <field_name>all_content</field_name> | |
| 3105 | + <key_value>127</key_value> | |
| 3106 | + <target_name>fcno127</target_name> | |
| 3107 | + <target_type>String</target_type> | |
| 3108 | + <target_format/> | |
| 3109 | + <target_length>-1</target_length> | |
| 3110 | + <target_precision>-1</target_precision> | |
| 3111 | + <target_decimal_symbol/> | |
| 3112 | + <target_grouping_symbol/> | |
| 3113 | + <target_currency_symbol/> | |
| 3114 | + <target_null_string/> | |
| 3115 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3116 | + </field> | |
| 3117 | + <field> | |
| 3118 | + <field_name>all_content</field_name> | |
| 3119 | + <key_value>128</key_value> | |
| 3120 | + <target_name>fcno128</target_name> | |
| 3121 | + <target_type>String</target_type> | |
| 3122 | + <target_format/> | |
| 3123 | + <target_length>-1</target_length> | |
| 3124 | + <target_precision>-1</target_precision> | |
| 3125 | + <target_decimal_symbol/> | |
| 3126 | + <target_grouping_symbol/> | |
| 3127 | + <target_currency_symbol/> | |
| 3128 | + <target_null_string/> | |
| 3129 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3130 | + </field> | |
| 3131 | + <field> | |
| 3132 | + <field_name>all_content</field_name> | |
| 3133 | + <key_value>129</key_value> | |
| 3134 | + <target_name>fcno129</target_name> | |
| 3135 | + <target_type>String</target_type> | |
| 3136 | + <target_format/> | |
| 3137 | + <target_length>-1</target_length> | |
| 3138 | + <target_precision>-1</target_precision> | |
| 3139 | + <target_decimal_symbol/> | |
| 3140 | + <target_grouping_symbol/> | |
| 3141 | + <target_currency_symbol/> | |
| 3142 | + <target_null_string/> | |
| 3143 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3144 | + </field> | |
| 3145 | + <field> | |
| 3146 | + <field_name>all_content</field_name> | |
| 3147 | + <key_value>130</key_value> | |
| 3148 | + <target_name>fcno130</target_name> | |
| 3149 | + <target_type>String</target_type> | |
| 3150 | + <target_format/> | |
| 3151 | + <target_length>-1</target_length> | |
| 3152 | + <target_precision>-1</target_precision> | |
| 3153 | + <target_decimal_symbol/> | |
| 3154 | + <target_grouping_symbol/> | |
| 3155 | + <target_currency_symbol/> | |
| 3156 | + <target_null_string/> | |
| 3157 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3158 | + </field> | |
| 3159 | + <field> | |
| 3160 | + <field_name>all_content</field_name> | |
| 3161 | + <key_value>131</key_value> | |
| 3162 | + <target_name>fcno131</target_name> | |
| 3163 | + <target_type>String</target_type> | |
| 3164 | + <target_format/> | |
| 3165 | + <target_length>-1</target_length> | |
| 3166 | + <target_precision>-1</target_precision> | |
| 3167 | + <target_decimal_symbol/> | |
| 3168 | + <target_grouping_symbol/> | |
| 3169 | + <target_currency_symbol/> | |
| 3170 | + <target_null_string/> | |
| 3171 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3172 | + </field> | |
| 3173 | + <field> | |
| 3174 | + <field_name>all_content</field_name> | |
| 3175 | + <key_value>132</key_value> | |
| 3176 | + <target_name>fcno132</target_name> | |
| 3177 | + <target_type>String</target_type> | |
| 3178 | + <target_format/> | |
| 3179 | + <target_length>-1</target_length> | |
| 3180 | + <target_precision>-1</target_precision> | |
| 3181 | + <target_decimal_symbol/> | |
| 3182 | + <target_grouping_symbol/> | |
| 3183 | + <target_currency_symbol/> | |
| 3184 | + <target_null_string/> | |
| 3185 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3186 | + </field> | |
| 3187 | + <field> | |
| 3188 | + <field_name>all_content</field_name> | |
| 3189 | + <key_value>133</key_value> | |
| 3190 | + <target_name>fcno133</target_name> | |
| 3191 | + <target_type>String</target_type> | |
| 3192 | + <target_format/> | |
| 3193 | + <target_length>-1</target_length> | |
| 3194 | + <target_precision>-1</target_precision> | |
| 3195 | + <target_decimal_symbol/> | |
| 3196 | + <target_grouping_symbol/> | |
| 3197 | + <target_currency_symbol/> | |
| 3198 | + <target_null_string/> | |
| 3199 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3200 | + </field> | |
| 3201 | + <field> | |
| 3202 | + <field_name>all_content</field_name> | |
| 3203 | + <key_value>134</key_value> | |
| 3204 | + <target_name>fcno134</target_name> | |
| 3205 | + <target_type>String</target_type> | |
| 3206 | + <target_format/> | |
| 3207 | + <target_length>-1</target_length> | |
| 3208 | + <target_precision>-1</target_precision> | |
| 3209 | + <target_decimal_symbol/> | |
| 3210 | + <target_grouping_symbol/> | |
| 3211 | + <target_currency_symbol/> | |
| 3212 | + <target_null_string/> | |
| 3213 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3214 | + </field> | |
| 3215 | + <field> | |
| 3216 | + <field_name>all_content</field_name> | |
| 3217 | + <key_value>135</key_value> | |
| 3218 | + <target_name>fcno135</target_name> | |
| 3219 | + <target_type>String</target_type> | |
| 3220 | + <target_format/> | |
| 3221 | + <target_length>-1</target_length> | |
| 3222 | + <target_precision>-1</target_precision> | |
| 3223 | + <target_decimal_symbol/> | |
| 3224 | + <target_grouping_symbol/> | |
| 3225 | + <target_currency_symbol/> | |
| 3226 | + <target_null_string/> | |
| 3227 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3228 | + </field> | |
| 3229 | + <field> | |
| 3230 | + <field_name>all_content</field_name> | |
| 3231 | + <key_value>136</key_value> | |
| 3232 | + <target_name>fcno136</target_name> | |
| 3233 | + <target_type>String</target_type> | |
| 3234 | + <target_format/> | |
| 3235 | + <target_length>-1</target_length> | |
| 3236 | + <target_precision>-1</target_precision> | |
| 3237 | + <target_decimal_symbol/> | |
| 3238 | + <target_grouping_symbol/> | |
| 3239 | + <target_currency_symbol/> | |
| 3240 | + <target_null_string/> | |
| 3241 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3242 | + </field> | |
| 3243 | + <field> | |
| 3244 | + <field_name>all_content</field_name> | |
| 3245 | + <key_value>137</key_value> | |
| 3246 | + <target_name>fcno137</target_name> | |
| 3247 | + <target_type>String</target_type> | |
| 3248 | + <target_format/> | |
| 3249 | + <target_length>-1</target_length> | |
| 3250 | + <target_precision>-1</target_precision> | |
| 3251 | + <target_decimal_symbol/> | |
| 3252 | + <target_grouping_symbol/> | |
| 3253 | + <target_currency_symbol/> | |
| 3254 | + <target_null_string/> | |
| 3255 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3256 | + </field> | |
| 3257 | + <field> | |
| 3258 | + <field_name>all_content</field_name> | |
| 3259 | + <key_value>138</key_value> | |
| 3260 | + <target_name>fcno138</target_name> | |
| 3261 | + <target_type>String</target_type> | |
| 3262 | + <target_format/> | |
| 3263 | + <target_length>-1</target_length> | |
| 3264 | + <target_precision>-1</target_precision> | |
| 3265 | + <target_decimal_symbol/> | |
| 3266 | + <target_grouping_symbol/> | |
| 3267 | + <target_currency_symbol/> | |
| 3268 | + <target_null_string/> | |
| 3269 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3270 | + </field> | |
| 3271 | + <field> | |
| 3272 | + <field_name>all_content</field_name> | |
| 3273 | + <key_value>139</key_value> | |
| 3274 | + <target_name>fcno139</target_name> | |
| 3275 | + <target_type>String</target_type> | |
| 3276 | + <target_format/> | |
| 3277 | + <target_length>-1</target_length> | |
| 3278 | + <target_precision>-1</target_precision> | |
| 3279 | + <target_decimal_symbol/> | |
| 3280 | + <target_grouping_symbol/> | |
| 3281 | + <target_currency_symbol/> | |
| 3282 | + <target_null_string/> | |
| 3283 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3284 | + </field> | |
| 3285 | + <field> | |
| 3286 | + <field_name>all_content</field_name> | |
| 3287 | + <key_value>140</key_value> | |
| 3288 | + <target_name>fcno140</target_name> | |
| 3289 | + <target_type>String</target_type> | |
| 3290 | + <target_format/> | |
| 3291 | + <target_length>-1</target_length> | |
| 3292 | + <target_precision>-1</target_precision> | |
| 3293 | + <target_decimal_symbol/> | |
| 3294 | + <target_grouping_symbol/> | |
| 3295 | + <target_currency_symbol/> | |
| 3296 | + <target_null_string/> | |
| 3297 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3298 | + </field> | |
| 3299 | + <field> | |
| 3300 | + <field_name>all_content</field_name> | |
| 3301 | + <key_value>141</key_value> | |
| 3302 | + <target_name>fcno141</target_name> | |
| 3303 | + <target_type>String</target_type> | |
| 3304 | + <target_format/> | |
| 3305 | + <target_length>-1</target_length> | |
| 3306 | + <target_precision>-1</target_precision> | |
| 3307 | + <target_decimal_symbol/> | |
| 3308 | + <target_grouping_symbol/> | |
| 3309 | + <target_currency_symbol/> | |
| 3310 | + <target_null_string/> | |
| 3311 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3312 | + </field> | |
| 3313 | + <field> | |
| 3314 | + <field_name>all_content</field_name> | |
| 3315 | + <key_value>142</key_value> | |
| 3316 | + <target_name>fcno142</target_name> | |
| 3317 | + <target_type>String</target_type> | |
| 3318 | + <target_format/> | |
| 3319 | + <target_length>-1</target_length> | |
| 3320 | + <target_precision>-1</target_precision> | |
| 3321 | + <target_decimal_symbol/> | |
| 3322 | + <target_grouping_symbol/> | |
| 3323 | + <target_currency_symbol/> | |
| 3324 | + <target_null_string/> | |
| 3325 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3326 | + </field> | |
| 3327 | + <field> | |
| 3328 | + <field_name>all_content</field_name> | |
| 3329 | + <key_value>143</key_value> | |
| 3330 | + <target_name>fcno143</target_name> | |
| 3331 | + <target_type>String</target_type> | |
| 3332 | + <target_format/> | |
| 3333 | + <target_length>-1</target_length> | |
| 3334 | + <target_precision>-1</target_precision> | |
| 3335 | + <target_decimal_symbol/> | |
| 3336 | + <target_grouping_symbol/> | |
| 3337 | + <target_currency_symbol/> | |
| 3338 | + <target_null_string/> | |
| 3339 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3340 | + </field> | |
| 3341 | + <field> | |
| 3342 | + <field_name>all_content</field_name> | |
| 3343 | + <key_value>144</key_value> | |
| 3344 | + <target_name>fcno144</target_name> | |
| 3345 | + <target_type>String</target_type> | |
| 3346 | + <target_format/> | |
| 3347 | + <target_length>-1</target_length> | |
| 3348 | + <target_precision>-1</target_precision> | |
| 3349 | + <target_decimal_symbol/> | |
| 3350 | + <target_grouping_symbol/> | |
| 3351 | + <target_currency_symbol/> | |
| 3352 | + <target_null_string/> | |
| 3353 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3354 | + </field> | |
| 3355 | + <field> | |
| 3356 | + <field_name>all_content</field_name> | |
| 3357 | + <key_value>145</key_value> | |
| 3358 | + <target_name>fcno145</target_name> | |
| 3359 | + <target_type>String</target_type> | |
| 3360 | + <target_format/> | |
| 3361 | + <target_length>-1</target_length> | |
| 3362 | + <target_precision>-1</target_precision> | |
| 3363 | + <target_decimal_symbol/> | |
| 3364 | + <target_grouping_symbol/> | |
| 3365 | + <target_currency_symbol/> | |
| 3366 | + <target_null_string/> | |
| 3367 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3368 | + </field> | |
| 3369 | + <field> | |
| 3370 | + <field_name>all_content</field_name> | |
| 3371 | + <key_value>146</key_value> | |
| 3372 | + <target_name>fcno146</target_name> | |
| 3373 | + <target_type>String</target_type> | |
| 3374 | + <target_format/> | |
| 3375 | + <target_length>-1</target_length> | |
| 3376 | + <target_precision>-1</target_precision> | |
| 3377 | + <target_decimal_symbol/> | |
| 3378 | + <target_grouping_symbol/> | |
| 3379 | + <target_currency_symbol/> | |
| 3380 | + <target_null_string/> | |
| 3381 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3382 | + </field> | |
| 3383 | + <field> | |
| 3384 | + <field_name>all_content</field_name> | |
| 3385 | + <key_value>147</key_value> | |
| 3386 | + <target_name>fcno147</target_name> | |
| 3387 | + <target_type>String</target_type> | |
| 3388 | + <target_format/> | |
| 3389 | + <target_length>-1</target_length> | |
| 3390 | + <target_precision>-1</target_precision> | |
| 3391 | + <target_decimal_symbol/> | |
| 3392 | + <target_grouping_symbol/> | |
| 3393 | + <target_currency_symbol/> | |
| 3394 | + <target_null_string/> | |
| 3395 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3396 | + </field> | |
| 3397 | + <field> | |
| 3398 | + <field_name>all_content</field_name> | |
| 3399 | + <key_value>148</key_value> | |
| 3400 | + <target_name>fcno148</target_name> | |
| 3401 | + <target_type>String</target_type> | |
| 3402 | + <target_format/> | |
| 3403 | + <target_length>-1</target_length> | |
| 3404 | + <target_precision>-1</target_precision> | |
| 3405 | + <target_decimal_symbol/> | |
| 3406 | + <target_grouping_symbol/> | |
| 3407 | + <target_currency_symbol/> | |
| 3408 | + <target_null_string/> | |
| 3409 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3410 | + </field> | |
| 3411 | + <field> | |
| 3412 | + <field_name>all_content</field_name> | |
| 3413 | + <key_value>149</key_value> | |
| 3414 | + <target_name>fcno149</target_name> | |
| 3415 | + <target_type>String</target_type> | |
| 3416 | + <target_format/> | |
| 3417 | + <target_length>-1</target_length> | |
| 3418 | + <target_precision>-1</target_precision> | |
| 3419 | + <target_decimal_symbol/> | |
| 3420 | + <target_grouping_symbol/> | |
| 3421 | + <target_currency_symbol/> | |
| 3422 | + <target_null_string/> | |
| 3423 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3424 | + </field> | |
| 3425 | + <field> | |
| 3426 | + <field_name>all_content</field_name> | |
| 3427 | + <key_value>150</key_value> | |
| 3428 | + <target_name>fcno150</target_name> | |
| 3429 | + <target_type>String</target_type> | |
| 3430 | + <target_format/> | |
| 3431 | + <target_length>-1</target_length> | |
| 3432 | + <target_precision>-1</target_precision> | |
| 3433 | + <target_decimal_symbol/> | |
| 3434 | + <target_grouping_symbol/> | |
| 3435 | + <target_currency_symbol/> | |
| 3436 | + <target_null_string/> | |
| 3437 | + <target_aggregation_type>-</target_aggregation_type> | |
| 3438 | + </field> | |
| 3439 | + </fields> | |
| 3440 | + <cluster_schema/> | |
| 3441 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3442 | + <xloc>683</xloc> | |
| 3443 | + <yloc>184</yloc> | |
| 3444 | + <draw>Y</draw> | |
| 3445 | + </GUI> | |
| 3446 | + </step> | |
| 3447 | + | |
| 3448 | + <step> | |
| 3449 | + <name>去除字段</name> | |
| 3450 | + <type>SelectValues</type> | |
| 3451 | + <description/> | |
| 3452 | + <distribute>N</distribute> | |
| 3453 | + <custom_distribution/> | |
| 3454 | + <copies>1</copies> | |
| 3455 | + <partitioning> | |
| 3456 | + <method>none</method> | |
| 3457 | + <schema_name/> | |
| 3458 | + </partitioning> | |
| 3459 | + <fields> <field> <name>lp</name> | |
| 3460 | + <rename/> | |
| 3461 | + <length>-2</length> | |
| 3462 | + <precision>-2</precision> | |
| 3463 | + </field> <field> <name>fcno1</name> | |
| 3464 | + <rename/> | |
| 3465 | + <length>-2</length> | |
| 3466 | + <precision>-2</precision> | |
| 3467 | + </field> <field> <name>fcno2</name> | |
| 3468 | + <rename/> | |
| 3469 | + <length>-2</length> | |
| 3470 | + <precision>-2</precision> | |
| 3471 | + </field> <field> <name>fcno3</name> | |
| 3472 | + <rename/> | |
| 3473 | + <length>-2</length> | |
| 3474 | + <precision>-2</precision> | |
| 3475 | + </field> <field> <name>fcno4</name> | |
| 3476 | + <rename/> | |
| 3477 | + <length>-2</length> | |
| 3478 | + <precision>-2</precision> | |
| 3479 | + </field> <field> <name>fcno5</name> | |
| 3480 | + <rename/> | |
| 3481 | + <length>-2</length> | |
| 3482 | + <precision>-2</precision> | |
| 3483 | + </field> <field> <name>fcno6</name> | |
| 3484 | + <rename/> | |
| 3485 | + <length>-2</length> | |
| 3486 | + <precision>-2</precision> | |
| 3487 | + </field> <field> <name>fcno7</name> | |
| 3488 | + <rename/> | |
| 3489 | + <length>-2</length> | |
| 3490 | + <precision>-2</precision> | |
| 3491 | + </field> <field> <name>fcno8</name> | |
| 3492 | + <rename/> | |
| 3493 | + <length>-2</length> | |
| 3494 | + <precision>-2</precision> | |
| 3495 | + </field> <field> <name>fcno9</name> | |
| 3496 | + <rename/> | |
| 3497 | + <length>-2</length> | |
| 3498 | + <precision>-2</precision> | |
| 3499 | + </field> <field> <name>fcno10</name> | |
| 3500 | + <rename/> | |
| 3501 | + <length>-2</length> | |
| 3502 | + <precision>-2</precision> | |
| 3503 | + </field> <field> <name>fcno11</name> | |
| 3504 | + <rename/> | |
| 3505 | + <length>-2</length> | |
| 3506 | + <precision>-2</precision> | |
| 3507 | + </field> <field> <name>fcno12</name> | |
| 3508 | + <rename/> | |
| 3509 | + <length>-2</length> | |
| 3510 | + <precision>-2</precision> | |
| 3511 | + </field> <field> <name>fcno13</name> | |
| 3512 | + <rename/> | |
| 3513 | + <length>-2</length> | |
| 3514 | + <precision>-2</precision> | |
| 3515 | + </field> <field> <name>fcno14</name> | |
| 3516 | + <rename/> | |
| 3517 | + <length>-2</length> | |
| 3518 | + <precision>-2</precision> | |
| 3519 | + </field> <field> <name>fcno15</name> | |
| 3520 | + <rename/> | |
| 3521 | + <length>-2</length> | |
| 3522 | + <precision>-2</precision> | |
| 3523 | + </field> <field> <name>fcno16</name> | |
| 3524 | + <rename/> | |
| 3525 | + <length>-2</length> | |
| 3526 | + <precision>-2</precision> | |
| 3527 | + </field> <field> <name>fcno17</name> | |
| 3528 | + <rename/> | |
| 3529 | + <length>-2</length> | |
| 3530 | + <precision>-2</precision> | |
| 3531 | + </field> <field> <name>fcno18</name> | |
| 3532 | + <rename/> | |
| 3533 | + <length>-2</length> | |
| 3534 | + <precision>-2</precision> | |
| 3535 | + </field> <field> <name>fcno19</name> | |
| 3536 | + <rename/> | |
| 3537 | + <length>-2</length> | |
| 3538 | + <precision>-2</precision> | |
| 3539 | + </field> <field> <name>fcno20</name> | |
| 3540 | + <rename/> | |
| 3541 | + <length>-2</length> | |
| 3542 | + <precision>-2</precision> | |
| 3543 | + </field> <field> <name>fcno21</name> | |
| 3544 | + <rename/> | |
| 3545 | + <length>-2</length> | |
| 3546 | + <precision>-2</precision> | |
| 3547 | + </field> <field> <name>fcno22</name> | |
| 3548 | + <rename/> | |
| 3549 | + <length>-2</length> | |
| 3550 | + <precision>-2</precision> | |
| 3551 | + </field> <field> <name>fcno23</name> | |
| 3552 | + <rename/> | |
| 3553 | + <length>-2</length> | |
| 3554 | + <precision>-2</precision> | |
| 3555 | + </field> <field> <name>fcno24</name> | |
| 3556 | + <rename/> | |
| 3557 | + <length>-2</length> | |
| 3558 | + <precision>-2</precision> | |
| 3559 | + </field> <field> <name>fcno25</name> | |
| 3560 | + <rename/> | |
| 3561 | + <length>-2</length> | |
| 3562 | + <precision>-2</precision> | |
| 3563 | + </field> <field> <name>fcno26</name> | |
| 3564 | + <rename/> | |
| 3565 | + <length>-2</length> | |
| 3566 | + <precision>-2</precision> | |
| 3567 | + </field> <field> <name>fcno27</name> | |
| 3568 | + <rename/> | |
| 3569 | + <length>-2</length> | |
| 3570 | + <precision>-2</precision> | |
| 3571 | + </field> <field> <name>fcno28</name> | |
| 3572 | + <rename/> | |
| 3573 | + <length>-2</length> | |
| 3574 | + <precision>-2</precision> | |
| 3575 | + </field> <field> <name>fcno29</name> | |
| 3576 | + <rename/> | |
| 3577 | + <length>-2</length> | |
| 3578 | + <precision>-2</precision> | |
| 3579 | + </field> <field> <name>fcno30</name> | |
| 3580 | + <rename/> | |
| 3581 | + <length>-2</length> | |
| 3582 | + <precision>-2</precision> | |
| 3583 | + </field> <field> <name>fcno31</name> | |
| 3584 | + <rename/> | |
| 3585 | + <length>-2</length> | |
| 3586 | + <precision>-2</precision> | |
| 3587 | + </field> <field> <name>fcno32</name> | |
| 3588 | + <rename/> | |
| 3589 | + <length>-2</length> | |
| 3590 | + <precision>-2</precision> | |
| 3591 | + </field> <field> <name>fcno33</name> | |
| 3592 | + <rename/> | |
| 3593 | + <length>-2</length> | |
| 3594 | + <precision>-2</precision> | |
| 3595 | + </field> <field> <name>fcno34</name> | |
| 3596 | + <rename/> | |
| 3597 | + <length>-2</length> | |
| 3598 | + <precision>-2</precision> | |
| 3599 | + </field> <field> <name>fcno35</name> | |
| 3600 | + <rename/> | |
| 3601 | + <length>-2</length> | |
| 3602 | + <precision>-2</precision> | |
| 3603 | + </field> <field> <name>fcno36</name> | |
| 3604 | + <rename/> | |
| 3605 | + <length>-2</length> | |
| 3606 | + <precision>-2</precision> | |
| 3607 | + </field> <field> <name>fcno37</name> | |
| 3608 | + <rename/> | |
| 3609 | + <length>-2</length> | |
| 3610 | + <precision>-2</precision> | |
| 3611 | + </field> <field> <name>fcno38</name> | |
| 3612 | + <rename/> | |
| 3613 | + <length>-2</length> | |
| 3614 | + <precision>-2</precision> | |
| 3615 | + </field> <field> <name>fcno39</name> | |
| 3616 | + <rename/> | |
| 3617 | + <length>-2</length> | |
| 3618 | + <precision>-2</precision> | |
| 3619 | + </field> <field> <name>fcno40</name> | |
| 3620 | + <rename/> | |
| 3621 | + <length>-2</length> | |
| 3622 | + <precision>-2</precision> | |
| 3623 | + </field> <field> <name>fcno41</name> | |
| 3624 | + <rename/> | |
| 3625 | + <length>-2</length> | |
| 3626 | + <precision>-2</precision> | |
| 3627 | + </field> <field> <name>fcno42</name> | |
| 3628 | + <rename/> | |
| 3629 | + <length>-2</length> | |
| 3630 | + <precision>-2</precision> | |
| 3631 | + </field> <field> <name>fcno43</name> | |
| 3632 | + <rename/> | |
| 3633 | + <length>-2</length> | |
| 3634 | + <precision>-2</precision> | |
| 3635 | + </field> <field> <name>fcno44</name> | |
| 3636 | + <rename/> | |
| 3637 | + <length>-2</length> | |
| 3638 | + <precision>-2</precision> | |
| 3639 | + </field> <field> <name>fcno45</name> | |
| 3640 | + <rename/> | |
| 3641 | + <length>-2</length> | |
| 3642 | + <precision>-2</precision> | |
| 3643 | + </field> <field> <name>fcno46</name> | |
| 3644 | + <rename/> | |
| 3645 | + <length>-2</length> | |
| 3646 | + <precision>-2</precision> | |
| 3647 | + </field> <field> <name>fcno47</name> | |
| 3648 | + <rename/> | |
| 3649 | + <length>-2</length> | |
| 3650 | + <precision>-2</precision> | |
| 3651 | + </field> <field> <name>fcno48</name> | |
| 3652 | + <rename/> | |
| 3653 | + <length>-2</length> | |
| 3654 | + <precision>-2</precision> | |
| 3655 | + </field> <field> <name>fcno49</name> | |
| 3656 | + <rename/> | |
| 3657 | + <length>-2</length> | |
| 3658 | + <precision>-2</precision> | |
| 3659 | + </field> <field> <name>fcno50</name> | |
| 3660 | + <rename/> | |
| 3661 | + <length>-2</length> | |
| 3662 | + <precision>-2</precision> | |
| 3663 | + </field> <field> <name>fcno51</name> | |
| 3664 | + <rename/> | |
| 3665 | + <length>-2</length> | |
| 3666 | + <precision>-2</precision> | |
| 3667 | + </field> <field> <name>fcno52</name> | |
| 3668 | + <rename/> | |
| 3669 | + <length>-2</length> | |
| 3670 | + <precision>-2</precision> | |
| 3671 | + </field> <field> <name>fcno53</name> | |
| 3672 | + <rename/> | |
| 3673 | + <length>-2</length> | |
| 3674 | + <precision>-2</precision> | |
| 3675 | + </field> <field> <name>fcno54</name> | |
| 3676 | + <rename/> | |
| 3677 | + <length>-2</length> | |
| 3678 | + <precision>-2</precision> | |
| 3679 | + </field> <field> <name>fcno55</name> | |
| 3680 | + <rename/> | |
| 3681 | + <length>-2</length> | |
| 3682 | + <precision>-2</precision> | |
| 3683 | + </field> <field> <name>fcno56</name> | |
| 3684 | + <rename/> | |
| 3685 | + <length>-2</length> | |
| 3686 | + <precision>-2</precision> | |
| 3687 | + </field> <field> <name>fcno57</name> | |
| 3688 | + <rename/> | |
| 3689 | + <length>-2</length> | |
| 3690 | + <precision>-2</precision> | |
| 3691 | + </field> <field> <name>fcno58</name> | |
| 3692 | + <rename/> | |
| 3693 | + <length>-2</length> | |
| 3694 | + <precision>-2</precision> | |
| 3695 | + </field> <field> <name>fcno59</name> | |
| 3696 | + <rename/> | |
| 3697 | + <length>-2</length> | |
| 3698 | + <precision>-2</precision> | |
| 3699 | + </field> <field> <name>fcno60</name> | |
| 3700 | + <rename/> | |
| 3701 | + <length>-2</length> | |
| 3702 | + <precision>-2</precision> | |
| 3703 | + </field> <field> <name>fcno61</name> | |
| 3704 | + <rename/> | |
| 3705 | + <length>-2</length> | |
| 3706 | + <precision>-2</precision> | |
| 3707 | + </field> <field> <name>fcno62</name> | |
| 3708 | + <rename/> | |
| 3709 | + <length>-2</length> | |
| 3710 | + <precision>-2</precision> | |
| 3711 | + </field> <field> <name>fcno63</name> | |
| 3712 | + <rename/> | |
| 3713 | + <length>-2</length> | |
| 3714 | + <precision>-2</precision> | |
| 3715 | + </field> <field> <name>fcno64</name> | |
| 3716 | + <rename/> | |
| 3717 | + <length>-2</length> | |
| 3718 | + <precision>-2</precision> | |
| 3719 | + </field> <field> <name>fcno65</name> | |
| 3720 | + <rename/> | |
| 3721 | + <length>-2</length> | |
| 3722 | + <precision>-2</precision> | |
| 3723 | + </field> <field> <name>fcno66</name> | |
| 3724 | + <rename/> | |
| 3725 | + <length>-2</length> | |
| 3726 | + <precision>-2</precision> | |
| 3727 | + </field> <field> <name>fcno67</name> | |
| 3728 | + <rename/> | |
| 3729 | + <length>-2</length> | |
| 3730 | + <precision>-2</precision> | |
| 3731 | + </field> <field> <name>fcno68</name> | |
| 3732 | + <rename/> | |
| 3733 | + <length>-2</length> | |
| 3734 | + <precision>-2</precision> | |
| 3735 | + </field> <field> <name>fcno69</name> | |
| 3736 | + <rename/> | |
| 3737 | + <length>-2</length> | |
| 3738 | + <precision>-2</precision> | |
| 3739 | + </field> <field> <name>fcno70</name> | |
| 3740 | + <rename/> | |
| 3741 | + <length>-2</length> | |
| 3742 | + <precision>-2</precision> | |
| 3743 | + </field> <field> <name>fcno71</name> | |
| 3744 | + <rename/> | |
| 3745 | + <length>-2</length> | |
| 3746 | + <precision>-2</precision> | |
| 3747 | + </field> <field> <name>fcno72</name> | |
| 3748 | + <rename/> | |
| 3749 | + <length>-2</length> | |
| 3750 | + <precision>-2</precision> | |
| 3751 | + </field> <field> <name>fcno73</name> | |
| 3752 | + <rename/> | |
| 3753 | + <length>-2</length> | |
| 3754 | + <precision>-2</precision> | |
| 3755 | + </field> <field> <name>fcno74</name> | |
| 3756 | + <rename/> | |
| 3757 | + <length>-2</length> | |
| 3758 | + <precision>-2</precision> | |
| 3759 | + </field> <field> <name>fcno75</name> | |
| 3760 | + <rename/> | |
| 3761 | + <length>-2</length> | |
| 3762 | + <precision>-2</precision> | |
| 3763 | + </field> <field> <name>fcno76</name> | |
| 3764 | + <rename/> | |
| 3765 | + <length>-2</length> | |
| 3766 | + <precision>-2</precision> | |
| 3767 | + </field> <field> <name>fcno77</name> | |
| 3768 | + <rename/> | |
| 3769 | + <length>-2</length> | |
| 3770 | + <precision>-2</precision> | |
| 3771 | + </field> <field> <name>fcno78</name> | |
| 3772 | + <rename/> | |
| 3773 | + <length>-2</length> | |
| 3774 | + <precision>-2</precision> | |
| 3775 | + </field> <field> <name>fcno79</name> | |
| 3776 | + <rename/> | |
| 3777 | + <length>-2</length> | |
| 3778 | + <precision>-2</precision> | |
| 3779 | + </field> <field> <name>fcno80</name> | |
| 3780 | + <rename/> | |
| 3781 | + <length>-2</length> | |
| 3782 | + <precision>-2</precision> | |
| 3783 | + </field> <field> <name>fcno81</name> | |
| 3784 | + <rename/> | |
| 3785 | + <length>-2</length> | |
| 3786 | + <precision>-2</precision> | |
| 3787 | + </field> <field> <name>fcno82</name> | |
| 3788 | + <rename/> | |
| 3789 | + <length>-2</length> | |
| 3790 | + <precision>-2</precision> | |
| 3791 | + </field> <field> <name>fcno83</name> | |
| 3792 | + <rename/> | |
| 3793 | + <length>-2</length> | |
| 3794 | + <precision>-2</precision> | |
| 3795 | + </field> <field> <name>fcno84</name> | |
| 3796 | + <rename/> | |
| 3797 | + <length>-2</length> | |
| 3798 | + <precision>-2</precision> | |
| 3799 | + </field> <field> <name>fcno85</name> | |
| 3800 | + <rename/> | |
| 3801 | + <length>-2</length> | |
| 3802 | + <precision>-2</precision> | |
| 3803 | + </field> <field> <name>fcno86</name> | |
| 3804 | + <rename/> | |
| 3805 | + <length>-2</length> | |
| 3806 | + <precision>-2</precision> | |
| 3807 | + </field> <field> <name>fcno87</name> | |
| 3808 | + <rename/> | |
| 3809 | + <length>-2</length> | |
| 3810 | + <precision>-2</precision> | |
| 3811 | + </field> <field> <name>fcno88</name> | |
| 3812 | + <rename/> | |
| 3813 | + <length>-2</length> | |
| 3814 | + <precision>-2</precision> | |
| 3815 | + </field> <field> <name>fcno89</name> | |
| 3816 | + <rename/> | |
| 3817 | + <length>-2</length> | |
| 3818 | + <precision>-2</precision> | |
| 3819 | + </field> <field> <name>fcno90</name> | |
| 3820 | + <rename/> | |
| 3821 | + <length>-2</length> | |
| 3822 | + <precision>-2</precision> | |
| 3823 | + </field> <field> <name>fcno91</name> | |
| 3824 | + <rename/> | |
| 3825 | + <length>-2</length> | |
| 3826 | + <precision>-2</precision> | |
| 3827 | + </field> <field> <name>fcno92</name> | |
| 3828 | + <rename/> | |
| 3829 | + <length>-2</length> | |
| 3830 | + <precision>-2</precision> | |
| 3831 | + </field> <field> <name>fcno93</name> | |
| 3832 | + <rename/> | |
| 3833 | + <length>-2</length> | |
| 3834 | + <precision>-2</precision> | |
| 3835 | + </field> <field> <name>fcno94</name> | |
| 3836 | + <rename/> | |
| 3837 | + <length>-2</length> | |
| 3838 | + <precision>-2</precision> | |
| 3839 | + </field> <field> <name>fcno95</name> | |
| 3840 | + <rename/> | |
| 3841 | + <length>-2</length> | |
| 3842 | + <precision>-2</precision> | |
| 3843 | + </field> <field> <name>fcno96</name> | |
| 3844 | + <rename/> | |
| 3845 | + <length>-2</length> | |
| 3846 | + <precision>-2</precision> | |
| 3847 | + </field> <field> <name>fcno97</name> | |
| 3848 | + <rename/> | |
| 3849 | + <length>-2</length> | |
| 3850 | + <precision>-2</precision> | |
| 3851 | + </field> <field> <name>fcno98</name> | |
| 3852 | + <rename/> | |
| 3853 | + <length>-2</length> | |
| 3854 | + <precision>-2</precision> | |
| 3855 | + </field> <field> <name>fcno99</name> | |
| 3856 | + <rename/> | |
| 3857 | + <length>-2</length> | |
| 3858 | + <precision>-2</precision> | |
| 3859 | + </field> <field> <name>fcno100</name> | |
| 3860 | + <rename/> | |
| 3861 | + <length>-2</length> | |
| 3862 | + <precision>-2</precision> | |
| 3863 | + </field> <field> <name>fcno101</name> | |
| 3864 | + <rename/> | |
| 3865 | + <length>-2</length> | |
| 3866 | + <precision>-2</precision> | |
| 3867 | + </field> <field> <name>fcno102</name> | |
| 3868 | + <rename/> | |
| 3869 | + <length>-2</length> | |
| 3870 | + <precision>-2</precision> | |
| 3871 | + </field> <field> <name>fcno103</name> | |
| 3872 | + <rename/> | |
| 3873 | + <length>-2</length> | |
| 3874 | + <precision>-2</precision> | |
| 3875 | + </field> <field> <name>fcno104</name> | |
| 3876 | + <rename/> | |
| 3877 | + <length>-2</length> | |
| 3878 | + <precision>-2</precision> | |
| 3879 | + </field> <field> <name>fcno105</name> | |
| 3880 | + <rename/> | |
| 3881 | + <length>-2</length> | |
| 3882 | + <precision>-2</precision> | |
| 3883 | + </field> <field> <name>fcno106</name> | |
| 3884 | + <rename/> | |
| 3885 | + <length>-2</length> | |
| 3886 | + <precision>-2</precision> | |
| 3887 | + </field> <field> <name>fcno107</name> | |
| 3888 | + <rename/> | |
| 3889 | + <length>-2</length> | |
| 3890 | + <precision>-2</precision> | |
| 3891 | + </field> <field> <name>fcno108</name> | |
| 3892 | + <rename/> | |
| 3893 | + <length>-2</length> | |
| 3894 | + <precision>-2</precision> | |
| 3895 | + </field> <field> <name>fcno109</name> | |
| 3896 | + <rename/> | |
| 3897 | + <length>-2</length> | |
| 3898 | + <precision>-2</precision> | |
| 3899 | + </field> <field> <name>fcno110</name> | |
| 3900 | + <rename/> | |
| 3901 | + <length>-2</length> | |
| 3902 | + <precision>-2</precision> | |
| 3903 | + </field> <field> <name>fcno111</name> | |
| 3904 | + <rename/> | |
| 3905 | + <length>-2</length> | |
| 3906 | + <precision>-2</precision> | |
| 3907 | + </field> <field> <name>fcno112</name> | |
| 3908 | + <rename/> | |
| 3909 | + <length>-2</length> | |
| 3910 | + <precision>-2</precision> | |
| 3911 | + </field> <field> <name>fcno113</name> | |
| 3912 | + <rename/> | |
| 3913 | + <length>-2</length> | |
| 3914 | + <precision>-2</precision> | |
| 3915 | + </field> <field> <name>fcno114</name> | |
| 3916 | + <rename/> | |
| 3917 | + <length>-2</length> | |
| 3918 | + <precision>-2</precision> | |
| 3919 | + </field> <field> <name>fcno115</name> | |
| 3920 | + <rename/> | |
| 3921 | + <length>-2</length> | |
| 3922 | + <precision>-2</precision> | |
| 3923 | + </field> <field> <name>fcno116</name> | |
| 3924 | + <rename/> | |
| 3925 | + <length>-2</length> | |
| 3926 | + <precision>-2</precision> | |
| 3927 | + </field> <field> <name>fcno117</name> | |
| 3928 | + <rename/> | |
| 3929 | + <length>-2</length> | |
| 3930 | + <precision>-2</precision> | |
| 3931 | + </field> <field> <name>fcno118</name> | |
| 3932 | + <rename/> | |
| 3933 | + <length>-2</length> | |
| 3934 | + <precision>-2</precision> | |
| 3935 | + </field> <field> <name>fcno119</name> | |
| 3936 | + <rename/> | |
| 3937 | + <length>-2</length> | |
| 3938 | + <precision>-2</precision> | |
| 3939 | + </field> <field> <name>fcno120</name> | |
| 3940 | + <rename/> | |
| 3941 | + <length>-2</length> | |
| 3942 | + <precision>-2</precision> | |
| 3943 | + </field> <field> <name>fcno121</name> | |
| 3944 | + <rename/> | |
| 3945 | + <length>-2</length> | |
| 3946 | + <precision>-2</precision> | |
| 3947 | + </field> <field> <name>fcno122</name> | |
| 3948 | + <rename/> | |
| 3949 | + <length>-2</length> | |
| 3950 | + <precision>-2</precision> | |
| 3951 | + </field> <field> <name>fcno123</name> | |
| 3952 | + <rename/> | |
| 3953 | + <length>-2</length> | |
| 3954 | + <precision>-2</precision> | |
| 3955 | + </field> <field> <name>fcno124</name> | |
| 3956 | + <rename/> | |
| 3957 | + <length>-2</length> | |
| 3958 | + <precision>-2</precision> | |
| 3959 | + </field> <field> <name>fcno125</name> | |
| 3960 | + <rename/> | |
| 3961 | + <length>-2</length> | |
| 3962 | + <precision>-2</precision> | |
| 3963 | + </field> <field> <name>fcno126</name> | |
| 3964 | + <rename/> | |
| 3965 | + <length>-2</length> | |
| 3966 | + <precision>-2</precision> | |
| 3967 | + </field> <field> <name>fcno127</name> | |
| 3968 | + <rename/> | |
| 3969 | + <length>-2</length> | |
| 3970 | + <precision>-2</precision> | |
| 3971 | + </field> <field> <name>fcno128</name> | |
| 3972 | + <rename/> | |
| 3973 | + <length>-2</length> | |
| 3974 | + <precision>-2</precision> | |
| 3975 | + </field> <field> <name>fcno129</name> | |
| 3976 | + <rename/> | |
| 3977 | + <length>-2</length> | |
| 3978 | + <precision>-2</precision> | |
| 3979 | + </field> <field> <name>fcno130</name> | |
| 3980 | + <rename/> | |
| 3981 | + <length>-2</length> | |
| 3982 | + <precision>-2</precision> | |
| 3983 | + </field> <field> <name>fcno131</name> | |
| 3984 | + <rename/> | |
| 3985 | + <length>-2</length> | |
| 3986 | + <precision>-2</precision> | |
| 3987 | + </field> <field> <name>fcno132</name> | |
| 3988 | + <rename/> | |
| 3989 | + <length>-2</length> | |
| 3990 | + <precision>-2</precision> | |
| 3991 | + </field> <field> <name>fcno133</name> | |
| 3992 | + <rename/> | |
| 3993 | + <length>-2</length> | |
| 3994 | + <precision>-2</precision> | |
| 3995 | + </field> <field> <name>fcno134</name> | |
| 3996 | + <rename/> | |
| 3997 | + <length>-2</length> | |
| 3998 | + <precision>-2</precision> | |
| 3999 | + </field> <field> <name>fcno135</name> | |
| 4000 | + <rename/> | |
| 4001 | + <length>-2</length> | |
| 4002 | + <precision>-2</precision> | |
| 4003 | + </field> <field> <name>fcno136</name> | |
| 4004 | + <rename/> | |
| 4005 | + <length>-2</length> | |
| 4006 | + <precision>-2</precision> | |
| 4007 | + </field> <field> <name>fcno137</name> | |
| 4008 | + <rename/> | |
| 4009 | + <length>-2</length> | |
| 4010 | + <precision>-2</precision> | |
| 4011 | + </field> <field> <name>fcno138</name> | |
| 4012 | + <rename/> | |
| 4013 | + <length>-2</length> | |
| 4014 | + <precision>-2</precision> | |
| 4015 | + </field> <field> <name>fcno139</name> | |
| 4016 | + <rename/> | |
| 4017 | + <length>-2</length> | |
| 4018 | + <precision>-2</precision> | |
| 4019 | + </field> <field> <name>fcno140</name> | |
| 4020 | + <rename/> | |
| 4021 | + <length>-2</length> | |
| 4022 | + <precision>-2</precision> | |
| 4023 | + </field> <field> <name>fcno141</name> | |
| 4024 | + <rename/> | |
| 4025 | + <length>-2</length> | |
| 4026 | + <precision>-2</precision> | |
| 4027 | + </field> <field> <name>fcno142</name> | |
| 4028 | + <rename/> | |
| 4029 | + <length>-2</length> | |
| 4030 | + <precision>-2</precision> | |
| 4031 | + </field> <field> <name>fcno143</name> | |
| 4032 | + <rename/> | |
| 4033 | + <length>-2</length> | |
| 4034 | + <precision>-2</precision> | |
| 4035 | + </field> <field> <name>fcno144</name> | |
| 4036 | + <rename/> | |
| 4037 | + <length>-2</length> | |
| 4038 | + <precision>-2</precision> | |
| 4039 | + </field> <field> <name>fcno145</name> | |
| 4040 | + <rename/> | |
| 4041 | + <length>-2</length> | |
| 4042 | + <precision>-2</precision> | |
| 4043 | + </field> <field> <name>fcno146</name> | |
| 4044 | + <rename/> | |
| 4045 | + <length>-2</length> | |
| 4046 | + <precision>-2</precision> | |
| 4047 | + </field> <field> <name>fcno147</name> | |
| 4048 | + <rename/> | |
| 4049 | + <length>-2</length> | |
| 4050 | + <precision>-2</precision> | |
| 4051 | + </field> <field> <name>fcno148</name> | |
| 4052 | + <rename/> | |
| 4053 | + <length>-2</length> | |
| 4054 | + <precision>-2</precision> | |
| 4055 | + </field> <field> <name>fcno149</name> | |
| 4056 | + <rename/> | |
| 4057 | + <length>-2</length> | |
| 4058 | + <precision>-2</precision> | |
| 4059 | + </field> <field> <name>fcno150</name> | |
| 4060 | + <rename/> | |
| 4061 | + <length>-2</length> | |
| 4062 | + <precision>-2</precision> | |
| 4063 | + </field> <select_unspecified>N</select_unspecified> | |
| 4064 | + </fields> <cluster_schema/> | |
| 4065 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4066 | + <xloc>691</xloc> | |
| 4067 | + <yloc>361</yloc> | |
| 4068 | + <draw>Y</draw> | |
| 4069 | + </GUI> | |
| 4070 | + </step> | |
| 4071 | + | |
| 4072 | + <step> | |
| 4073 | + <name>合并内容</name> | |
| 4074 | + <type>ScriptValueMod</type> | |
| 4075 | + <description/> | |
| 4076 | + <distribute>Y</distribute> | |
| 4077 | + <custom_distribution/> | |
| 4078 | + <copies>1</copies> | |
| 4079 | + <partitioning> | |
| 4080 | + <method>none</method> | |
| 4081 | + <schema_name/> | |
| 4082 | + </partitioning> | |
| 4083 | + <compatible>N</compatible> | |
| 4084 | + <optimizationLevel>9</optimizationLevel> | |
| 4085 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 4086 | + <jsScript_name>Script 1</jsScript_name> | |
| 4087 | + <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_code || 'null');
all_content_array.push(zdz_code || 'null');
all_content_array.push(ists);
all_content_array.push(bcsj || 'null');

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 4088 | + </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 4089 | + <rename>all_content</rename> | |
| 4090 | + <type>String</type> | |
| 4091 | + <length>-1</length> | |
| 4092 | + <precision>-1</precision> | |
| 4093 | + <replace>N</replace> | |
| 4094 | + </field> </fields> <cluster_schema/> | |
| 4095 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4096 | + <xloc>441</xloc> | |
| 4097 | + <yloc>84</yloc> | |
| 4098 | + <draw>Y</draw> | |
| 4099 | + </GUI> | |
| 4100 | + </step> | |
| 4101 | + | |
| 4102 | + <step> | |
| 4103 | + <name>获取变量</name> | |
| 4104 | + <type>GetVariable</type> | |
| 4105 | + <description/> | |
| 4106 | + <distribute>Y</distribute> | |
| 4107 | + <custom_distribution/> | |
| 4108 | + <copies>1</copies> | |
| 4109 | + <partitioning> | |
| 4110 | + <method>none</method> | |
| 4111 | + <schema_name/> | |
| 4112 | + </partitioning> | |
| 4113 | + <fields> | |
| 4114 | + <field> | |
| 4115 | + <name>xlid_</name> | |
| 4116 | + <variable>${xlid}</variable> | |
| 4117 | + <type>Integer</type> | |
| 4118 | + <format/> | |
| 4119 | + <currency/> | |
| 4120 | + <decimal/> | |
| 4121 | + <group/> | |
| 4122 | + <length>-1</length> | |
| 4123 | + <precision>-1</precision> | |
| 4124 | + <trim_type>none</trim_type> | |
| 4125 | + </field> | |
| 4126 | + <field> | |
| 4127 | + <name>ttid_</name> | |
| 4128 | + <variable>${ttid}</variable> | |
| 4129 | + <type>Number</type> | |
| 4130 | + <format/> | |
| 4131 | + <currency/> | |
| 4132 | + <decimal/> | |
| 4133 | + <group/> | |
| 4134 | + <length>-1</length> | |
| 4135 | + <precision>-1</precision> | |
| 4136 | + <trim_type>none</trim_type> | |
| 4137 | + </field> | |
| 4138 | + </fields> | |
| 4139 | + <cluster_schema/> | |
| 4140 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4141 | + <xloc>45</xloc> | |
| 4142 | + <yloc>189</yloc> | |
| 4143 | + <draw>Y</draw> | |
| 4144 | + </GUI> | |
| 4145 | + </step> | |
| 4146 | + | |
| 4147 | + <step> | |
| 4148 | + <name>表输入</name> | |
| 4149 | + <type>TableInput</type> | |
| 4150 | + <description/> | |
| 4151 | + <distribute>Y</distribute> | |
| 4152 | + <custom_distribution/> | |
| 4153 | + <copies>1</copies> | |
| 4154 | + <partitioning> | |
| 4155 | + <method>none</method> | |
| 4156 | + <schema_name/> | |
| 4157 | + </partitioning> | |
| 4158 | + <connection>bus_control_variable</connection> | |
| 4159 | + <sql>select 
t.id as id
, concat(g.id, '_', g.lp_name) as lp
, g.xl as xl
, qdz_code
, qdz_name
, zdz_code
, zdz_name
, fcsj
, jhlc
, bc_type 
, bcs
, fcno
, xl_dir
, isfb
, ists
, bcsj 
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 g.lp_no asc, t.bcs asc</sql> | |
| 4160 | + <limit>0</limit> | |
| 4161 | + <lookup>获取变量</lookup> | |
| 4162 | + <execute_each_row>N</execute_each_row> | |
| 4163 | + <variables_active>Y</variables_active> | |
| 4164 | + <lazy_conversion_active>N</lazy_conversion_active> | |
| 4165 | + <cluster_schema/> | |
| 4166 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4167 | + <xloc>130</xloc> | |
| 4168 | + <yloc>85</yloc> | |
| 4169 | + <draw>Y</draw> | |
| 4170 | + </GUI> | |
| 4171 | + </step> | |
| 4172 | + | |
| 4173 | + <step> | |
| 4174 | + <name>计算发车站名</name> | |
| 4175 | + <type>ScriptValueMod</type> | |
| 4176 | + <description/> | |
| 4177 | + <distribute>Y</distribute> | |
| 4178 | + <custom_distribution/> | |
| 4179 | + <copies>1</copies> | |
| 4180 | + <partitioning> | |
| 4181 | + <method>none</method> | |
| 4182 | + <schema_name/> | |
| 4183 | + </partitioning> | |
| 4184 | + <compatible>N</compatible> | |
| 4185 | + <optimizationLevel>9</optimizationLevel> | |
| 4186 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 4187 | + <jsScript_name>Script 1</jsScript_name> | |
| 4188 | + <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdz_name;
}</jsScript_script> | |
| 4189 | + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 4190 | + <rename>fczdName</rename> | |
| 4191 | + <type>String</type> | |
| 4192 | + <length>-1</length> | |
| 4193 | + <precision>-1</precision> | |
| 4194 | + <replace>N</replace> | |
| 4195 | + </field> </fields> <cluster_schema/> | |
| 4196 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 4197 | + <xloc>282</xloc> | |
| 4198 | + <yloc>82</yloc> | |
| 4199 | + <draw>Y</draw> | |
| 4200 | + </GUI> | |
| 4201 | + </step> | |
| 4202 | + | |
| 4203 | + <step_error_handling> | |
| 4204 | + </step_error_handling> | |
| 4205 | + <slave-step-copy-partition-distribution> | |
| 4206 | +</slave-step-copy-partition-distribution> | |
| 4207 | + <slave_transformation>N</slave_transformation> | |
| 4208 | + | |
| 4209 | +</transformation> | ... | ... |
src/main/resources/static/pages/forms/statement/jd_daily.html
| ... | ... | @@ -60,11 +60,11 @@ |
| 60 | 60 | <table class="table table-bordered table-hover table-checkable" id="forms"> |
| 61 | 61 | <thead> |
| 62 | 62 | <tr> |
| 63 | - <th colspan="18">调度班次日报</th> | |
| 63 | + <th colspan="19">调度班次日报</th> | |
| 64 | 64 | </tr> |
| 65 | 65 | <tr> |
| 66 | 66 | <td><label>线路</label></td> |
| 67 | - <td colspan="8"><span id="form_line"> </span></td> | |
| 67 | + <td colspan="9"><span id="form_line"> </span></td> | |
| 68 | 68 | <td><label >时间</label></td> |
| 69 | 69 | <td colspan="8"><span id="form_date"> </span></td> |
| 70 | 70 | </tr> |
| ... | ... | @@ -118,11 +118,9 @@ |
| 118 | 118 | format : 'YYYY-MM-DD', |
| 119 | 119 | locale : 'zh-cn' |
| 120 | 120 | }); |
| 121 | - var fage=false; | |
| 121 | + var fage=true; | |
| 122 | 122 | var xlList; |
| 123 | 123 | var obj = []; |
| 124 | - | |
| 125 | - | |
| 126 | 124 | $.get('/report/lineList',function(result){ |
| 127 | 125 | xlList=result; |
| 128 | 126 | $.get('/user/companyData', function(result){ |
| ... | ... | @@ -131,13 +129,15 @@ |
| 131 | 129 | for(var i = 0; i < obj.length; i++){ |
| 132 | 130 | options += '<option value="'+obj[i].companyCode+'">'+obj[i].companyName+'</option>'; |
| 133 | 131 | } |
| 134 | - | |
| 132 | + | |
| 135 | 133 | if(obj.length ==0){ |
| 136 | 134 | $("#gsdmDiv_daily").css('display','none'); |
| 137 | 135 | }else if(obj.length ==1){ |
| 138 | 136 | $("#gsdmDiv_daily").css('display','none'); |
| 139 | - if(obj[0].children.length == 1 || obj[0].children.length ==0) | |
| 137 | + if(obj[0].children.length == 1 || obj[0].children.length ==0){ | |
| 140 | 138 | $('#fgsdmDiv_daily').css('display','none'); |
| 139 | + fage=false; | |
| 140 | + } | |
| 141 | 141 | } |
| 142 | 142 | $('#gsdmDaily').html(options); |
| 143 | 143 | updateCompany(); |
| ... | ... | @@ -146,7 +146,10 @@ |
| 146 | 146 | $("#gsdmDaily").on("change",updateCompany); |
| 147 | 147 | function updateCompany(){ |
| 148 | 148 | var company = $('#gsdmDaily').val(); |
| 149 | - var options = '<option value="">全部分公司</option>'; | |
| 149 | + var options = ''; | |
| 150 | + if(fage){ | |
| 151 | + options='<option value="">全部分公司</option>'; | |
| 152 | + } | |
| 150 | 153 | for(var i = 0; i < obj.length; i++){ |
| 151 | 154 | if(obj[i].companyCode == company){ |
| 152 | 155 | var children = obj[i].children; |
| ... | ... | @@ -267,7 +270,7 @@ |
| 267 | 270 | <td>{{obj.jzl}}</td> |
| 268 | 271 | <td>{{obj.yh}}</td> |
| 269 | 272 | <td>{{obj.rylx}}</td> |
| 270 | - <td> </td> | |
| 273 | + <td>{{obj.dh}}</td> | |
| 271 | 274 | </tr> |
| 272 | 275 | {{/each}} |
| 273 | 276 | {{if list.length == 0}} | ... | ... |
src/main/resources/static/pages/forms/statement/waybill.html
| ... | ... | @@ -450,11 +450,11 @@ |
| 450 | 450 | <td colspan="4">本日耗电 {{yh}}度</td> |
| 451 | 451 | {{/if}} |
| 452 | 452 | {{if type==2}} |
| 453 | - <td colspan="2">出场存电 {{ccyl}}%</td> | |
| 454 | - <td colspan="2">充电量 {{jzl}}度</td> | |
| 455 | - <td colspan="2">进场存电 {{jcyl}}%</td> | |
| 453 | + <td colspan="2">出场存电 {{ccyl_}}%<br/>出场存油{{ccyl}}升</td> | |
| 454 | + <td colspan="2">充电量 {{jzl_}}度<br/>加注量{{jzl}}升</td> | |
| 455 | + <td colspan="2">进场存电 {{jcyl_}}%<br/>进场存油 {{jcyl}}升</td> | |
| 456 | 456 | <td colspan="4">加注机油 升</td> |
| 457 | - <td colspan="4">本日耗电 {{yh}}度</td> | |
| 457 | + <td colspan="4">本日耗电 {{yh_}}度<br/>本日耗油 {{yh}}升</td> | |
| 458 | 458 | {{/if}} |
| 459 | 459 | </tr> |
| 460 | 460 | <tr> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/dts2/ttinfotable/saTimeTable.js
| ... | ... | @@ -24,6 +24,7 @@ angular.module('ScheduleApp').factory( |
| 24 | 24 | this.isfb = detailInfo && detailInfo.isfb; // 是否分班 |
| 25 | 25 | this.qdzCode = detailInfo && detailInfo.qdzCode; // 起点站Code |
| 26 | 26 | this.zdzCode = detailInfo && detailInfo.zdzCode; // 终点站Code |
| 27 | + this.bcsj = detailInfo && detailInfo.bcsj; // 班次历时 | |
| 27 | 28 | |
| 28 | 29 | // 路牌信息 |
| 29 | 30 | this.lpId = undefined; // id |
| ... | ... | @@ -36,8 +37,8 @@ angular.module('ScheduleApp').factory( |
| 36 | 37 | this.sel = false; // 是否被选中 |
| 37 | 38 | |
| 38 | 39 | // 其余函数判定的内部保存值 |
| 39 | - this.isCanSel = false; | |
| 40 | - this.isValidInfo = false; | |
| 40 | + this.isCanSel = false; // 是否能被选择 | |
| 41 | + this.isInValid = false; // 数据是否无效 | |
| 41 | 42 | |
| 42 | 43 | }; |
| 43 | 44 | BcInfo.prototype.canUpdate = function() { // 是否能更新 |
| ... | ... | @@ -71,13 +72,15 @@ angular.module('ScheduleApp').factory( |
| 71 | 72 | }; |
| 72 | 73 | BcInfo.prototype.validInfo = function() { // 验证班次信息内容是否正确 |
| 73 | 74 | if (this.canSel() && this.ttdid) { |
| 74 | - if (!this.qdzCode || !this.zdzCode) { // 编码为空判定 | |
| 75 | - this.isValidInfo = true; | |
| 76 | - return true; | |
| 75 | + if (!this.qdzCode || // 起点站编码为空判定 | |
| 76 | + !this.zdzCode || // 终点站编码为空判定 | |
| 77 | + (!this.bcsj && this.bcsj !== 0)) { // 班次历时为空判定 | |
| 78 | + this.isInValid = true; | |
| 79 | + } else { | |
| 80 | + this.isInValid = false; | |
| 77 | 81 | } |
| 78 | 82 | } else { |
| 79 | - this.isValidInfo = false; | |
| 80 | - return false; | |
| 83 | + this.isInValid = false; | |
| 81 | 84 | } |
| 82 | 85 | }; |
| 83 | 86 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/dts2/ttinfotable/saTimeTableTemplate.html
| ... | ... | @@ -362,7 +362,7 @@ |
| 362 | 362 | ng-dblclick="$saTimeTableCtrl.$$cell_dbclick(rowIndex, colIndex, cell)" |
| 363 | 363 | ng-class="{ |
| 364 | 364 | lpName: !cell.ttdid, |
| 365 | - error: cell.isValidInfo, | |
| 365 | + error: cell.isInValid, | |
| 366 | 366 | active: cell.sel, |
| 367 | 367 | ists: cell.ists, |
| 368 | 368 | region: cell.bc_type == 'region', | ... | ... |
src/main/resources/static/pages/scheduleApp/module/common/prj-common-directive.js
| ... | ... | @@ -4088,6 +4088,7 @@ angular.module('ScheduleApp').factory( |
| 4088 | 4088 | this.isfb = detailInfo && detailInfo.isfb; // 是否分班 |
| 4089 | 4089 | this.qdzCode = detailInfo && detailInfo.qdzCode; // 起点站Code |
| 4090 | 4090 | this.zdzCode = detailInfo && detailInfo.zdzCode; // 终点站Code |
| 4091 | + this.bcsj = detailInfo && detailInfo.bcsj; // 班次历时 | |
| 4091 | 4092 | |
| 4092 | 4093 | // 路牌信息 |
| 4093 | 4094 | this.lpId = undefined; // id |
| ... | ... | @@ -4100,8 +4101,8 @@ angular.module('ScheduleApp').factory( |
| 4100 | 4101 | this.sel = false; // 是否被选中 |
| 4101 | 4102 | |
| 4102 | 4103 | // 其余函数判定的内部保存值 |
| 4103 | - this.isCanSel = false; | |
| 4104 | - this.isValidInfo = false; | |
| 4104 | + this.isCanSel = false; // 是否能被选择 | |
| 4105 | + this.isInValid = false; // 数据是否无效 | |
| 4105 | 4106 | |
| 4106 | 4107 | }; |
| 4107 | 4108 | BcInfo.prototype.canUpdate = function() { // 是否能更新 |
| ... | ... | @@ -4135,13 +4136,15 @@ angular.module('ScheduleApp').factory( |
| 4135 | 4136 | }; |
| 4136 | 4137 | BcInfo.prototype.validInfo = function() { // 验证班次信息内容是否正确 |
| 4137 | 4138 | if (this.canSel() && this.ttdid) { |
| 4138 | - if (!this.qdzCode || !this.zdzCode) { // 编码为空判定 | |
| 4139 | - this.isValidInfo = true; | |
| 4140 | - return true; | |
| 4139 | + if (!this.qdzCode || // 起点站编码为空判定 | |
| 4140 | + !this.zdzCode || // 终点站编码为空判定 | |
| 4141 | + (!this.bcsj && this.bcsj !== 0)) { // 班次历时为空判定 | |
| 4142 | + this.isInValid = true; | |
| 4143 | + } else { | |
| 4144 | + this.isInValid = false; | |
| 4141 | 4145 | } |
| 4142 | 4146 | } else { |
| 4143 | - this.isValidInfo = false; | |
| 4144 | - return false; | |
| 4147 | + this.isInValid = false; | |
| 4145 | 4148 | } |
| 4146 | 4149 | }; |
| 4147 | 4150 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/timeTableDetailManage_old.js
| ... | ... | @@ -214,6 +214,7 @@ angular.module('ScheduleApp').factory( |
| 214 | 214 | ttinfodetailIds[index].qdzCode = value.qdzCode || undefined; |
| 215 | 215 | ttinfodetailIds[index].zdzCode = value.zdzCode || undefined; |
| 216 | 216 | ttinfodetailIds[index].isfb = value.isFB || undefined; |
| 217 | + ttinfodetailIds[index].bcsj = value.bcsj || undefined; | |
| 217 | 218 | |
| 218 | 219 | ttinfodetailIds[index].validInfo(); |
| 219 | 220 | |
| ... | ... | @@ -637,6 +638,7 @@ angular.module('ScheduleApp').controller( |
| 637 | 638 | detailInfo.zdzCode = value.zdzCode || undefined; |
| 638 | 639 | detailInfo.isfb = value.isFB; |
| 639 | 640 | detailInfo.ists = value.isTS; |
| 641 | + detailInfo.bcsj = value.bcsj; | |
| 640 | 642 | |
| 641 | 643 | detailInfo.validInfo(); |
| 642 | 644 | |
| ... | ... | @@ -707,7 +709,7 @@ angular.module('ScheduleApp').controller( |
| 707 | 709 | reSetTTinfoDetail: function(value) { |
| 708 | 710 | for (var key in this) { |
| 709 | 711 | if (!angular.isFunction(this[key])) { |
| 710 | - if (this[key] != undefined) { | |
| 712 | + if (!!this[key]) { | |
| 711 | 713 | value[key] = this[key]; |
| 712 | 714 | } |
| 713 | 715 | } | ... | ... |