Commit 4935c9028871304b0eef8ba5a0f88633396eb45b
Merge branch 'minhang' of http://222.66.0.204:8090/panzhaov5/bsth_control into minhang
Showing
36 changed files
with
6766 additions
and
4064 deletions
src/main/java/com/bsth/controller/oil/CwjyController.java
| @@ -2,6 +2,8 @@ package com.bsth.controller.oil; | @@ -2,6 +2,8 @@ package com.bsth.controller.oil; | ||
| 2 | 2 | ||
| 3 | 3 | ||
| 4 | import java.util.Date; | 4 | import java.util.Date; |
| 5 | +import java.util.HashMap; | ||
| 6 | +import java.util.List; | ||
| 5 | import java.util.Map; | 7 | import java.util.Map; |
| 6 | 8 | ||
| 7 | import org.springframework.beans.factory.annotation.Autowired; | 9 | import org.springframework.beans.factory.annotation.Autowired; |
| @@ -31,9 +33,9 @@ public class CwjyController extends BaseController<Cwjy, Integer>{ | @@ -31,9 +33,9 @@ public class CwjyController extends BaseController<Cwjy, Integer>{ | ||
| 31 | return service.save(t); | 33 | return service.save(t); |
| 32 | } | 34 | } |
| 33 | 35 | ||
| 34 | - @RequestMapping(value = "/pagequery",method = RequestMethod.GET) | ||
| 35 | - public PageObject<Ylxxb> pagequery(@RequestParam Map<String, Object> map){ | ||
| 36 | - PageObject<Ylxxb> pagequery=null; | 36 | + @RequestMapping(value = "/queryList",method = RequestMethod.GET) |
| 37 | + public List<Ylxxb> queryList(@RequestParam Map<String, Object> map){ | ||
| 38 | + List<Ylxxb> pagequery=null; | ||
| 37 | map.put("curPage", map.get("page").toString()); | 39 | map.put("curPage", map.get("page").toString()); |
| 38 | map.put("pageData","10"); | 40 | map.put("pageData","10"); |
| 39 | pagequery=service.Pagequery(map); | 41 | pagequery=service.Pagequery(map); |
| @@ -56,9 +58,15 @@ public class CwjyController extends BaseController<Cwjy, Integer>{ | @@ -56,9 +58,15 @@ public class CwjyController extends BaseController<Cwjy, Integer>{ | ||
| 56 | * @throws | 58 | * @throws |
| 57 | */ | 59 | */ |
| 58 | @RequestMapping(value="/savejzl",method = RequestMethod.POST) | 60 | @RequestMapping(value="/savejzl",method = RequestMethod.POST) |
| 59 | - public Map<String, Object> savejzl(Ylxxb t){ | ||
| 60 | - Map<String, Object> map=service.savejzl(t); | ||
| 61 | - return map; | 61 | + public Map<String, Object> savejzl(Map<String, Object> map){ |
| 62 | + Map<String, Object> maps=new HashMap<>(); | ||
| 63 | + try { | ||
| 64 | + maps = service.savejzl(map); | ||
| 65 | + } catch (Exception e) { | ||
| 66 | + // TODO Auto-generated catch block | ||
| 67 | + e.printStackTrace(); | ||
| 68 | + } | ||
| 69 | + return maps; | ||
| 62 | } | 70 | } |
| 63 | 71 | ||
| 64 | } | 72 | } |
src/main/java/com/bsth/controller/oil/YlxxbController.java
| 1 | package com.bsth.controller.oil; | 1 | package com.bsth.controller.oil; |
| 2 | 2 | ||
| 3 | +import java.util.HashMap; | ||
| 3 | import java.util.Map; | 4 | import java.util.Map; |
| 4 | 5 | ||
| 5 | import org.springframework.beans.factory.annotation.Autowired; | 6 | import org.springframework.beans.factory.annotation.Autowired; |
| @@ -33,9 +34,15 @@ public class YlxxbController extends BaseController<Ylxxb, Integer>{ | @@ -33,9 +34,15 @@ public class YlxxbController extends BaseController<Ylxxb, Integer>{ | ||
| 33 | * @param map | 34 | * @param map |
| 34 | * @return | 35 | * @return |
| 35 | */ | 36 | */ |
| 36 | - @RequestMapping(value = "/check",method = RequestMethod.GET) | 37 | + @RequestMapping(value = "/check",method = RequestMethod.POST) |
| 37 | public Map<String, Object> check(@RequestParam Map<String, Object> map){ | 38 | public Map<String, Object> check(@RequestParam Map<String, Object> map){ |
| 38 | - Map<String, Object> list=service.checkJsy(map); | 39 | + Map<String, Object> list=new HashMap<>(); |
| 40 | + try { | ||
| 41 | + list = service.checkJsy(map); | ||
| 42 | + } catch (Exception e) { | ||
| 43 | + // TODO Auto-generated catch block | ||
| 44 | + e.printStackTrace(); | ||
| 45 | + } | ||
| 39 | return list; | 46 | return list; |
| 40 | } | 47 | } |
| 41 | } | 48 | } |
src/main/java/com/bsth/controller/report/ReportController.java
| @@ -108,4 +108,9 @@ public class ReportController { | @@ -108,4 +108,9 @@ public class ReportController { | ||
| 108 | return service.carList(map); | 108 | return service.carList(map); |
| 109 | } | 109 | } |
| 110 | 110 | ||
| 111 | + @RequestMapping(value="/userList",method = RequestMethod.GET) | ||
| 112 | + public List<Map<String,String>> userList(@RequestParam Map<String, Object> map){ | ||
| 113 | + return service.userList(map); | ||
| 114 | + } | ||
| 115 | + | ||
| 111 | } | 116 | } |
src/main/java/com/bsth/entity/schedule/temp/SchedulePlanRuleResult.java
| 1 | -package com.bsth.entity.schedule.temp; | ||
| 2 | - | ||
| 3 | -import com.bsth.entity.schedule.SchedulePlan; | ||
| 4 | - | ||
| 5 | -import javax.persistence.Entity; | ||
| 6 | -import javax.persistence.GeneratedValue; | ||
| 7 | -import javax.persistence.Id; | ||
| 8 | -import javax.persistence.Table; | ||
| 9 | -import java.util.Date; | ||
| 10 | - | ||
| 11 | -/** | ||
| 12 | - * 排班的中间结果数据,记录每次排班后规则的变化。 | ||
| 13 | - */ | ||
| 14 | -@Entity | ||
| 15 | -@Table(name = "bsth_c_s_sp_rule_rst") | ||
| 16 | -public class SchedulePlanRuleResult { | ||
| 17 | - /** 主键Id */ | ||
| 18 | - @Id | ||
| 19 | - @GeneratedValue | ||
| 20 | - private Long id; | ||
| 21 | - | ||
| 22 | - /** 线路id */ | ||
| 23 | - private String xlId; | ||
| 24 | - /** 线路名字 */ | ||
| 25 | - private String xlName; | ||
| 26 | - | ||
| 27 | - /** 排班规则id */ | ||
| 28 | - private String ruleId; | ||
| 29 | - /** 车辆配置id */ | ||
| 30 | - private String ccId; | ||
| 31 | - /** 车辆自编号 */ | ||
| 32 | - private String ccZbh; | ||
| 33 | - | ||
| 34 | - /** 路牌id列表字符串 */ | ||
| 35 | - private String gids; | ||
| 36 | - /** 路牌名字列表字符串 */ | ||
| 37 | - private String gnames; | ||
| 38 | - /** 翻到哪个路牌索引 */ | ||
| 39 | - private String gidindex; | ||
| 40 | - /** 人员配置id列表字符串 */ | ||
| 41 | - private String ecids; | ||
| 42 | - /** 人员配置搭班编码列表字符串 */ | ||
| 43 | - private String ecdbbms; | ||
| 44 | - /** 翻到哪个人员配置索引 */ | ||
| 45 | - private String ecindex; | ||
| 46 | - | ||
| 47 | - /** 排班日期 */ | ||
| 48 | - private Date scheduleDate; | ||
| 49 | - | ||
| 50 | - /** 操作人员id */ | ||
| 51 | - private String sysuserId; | ||
| 52 | - /** 操作人员姓名 */ | ||
| 53 | - private String sysuserName; | ||
| 54 | - /** 操作时间 */ | ||
| 55 | - private Date createDate; | ||
| 56 | - | ||
| 57 | - public SchedulePlanRuleResult() { | ||
| 58 | - | ||
| 59 | - } | ||
| 60 | - public SchedulePlanRuleResult(SchedulePlan schedulePlan) { | ||
| 61 | - this.sysuserId = schedulePlan.getCreateBy().getId().toString(); | ||
| 62 | - this.sysuserName = schedulePlan.getCreateBy().getName(); | ||
| 63 | -// this.createDate = schedulePlan.getCreateDate(); | ||
| 64 | - this.createDate = new Date(); | ||
| 65 | - } | ||
| 66 | - | ||
| 67 | - public Long getId() { | ||
| 68 | - return id; | ||
| 69 | - } | ||
| 70 | - | ||
| 71 | - public void setId(Long id) { | ||
| 72 | - this.id = id; | ||
| 73 | - } | ||
| 74 | - | ||
| 75 | - public String getRuleId() { | ||
| 76 | - return ruleId; | ||
| 77 | - } | ||
| 78 | - | ||
| 79 | - public void setRuleId(String ruleId) { | ||
| 80 | - this.ruleId = ruleId; | ||
| 81 | - } | ||
| 82 | - | ||
| 83 | - public String getCcId() { | ||
| 84 | - return ccId; | ||
| 85 | - } | ||
| 86 | - | ||
| 87 | - public void setCcId(String ccId) { | ||
| 88 | - this.ccId = ccId; | ||
| 89 | - } | ||
| 90 | - | ||
| 91 | - public String getCcZbh() { | ||
| 92 | - return ccZbh; | ||
| 93 | - } | ||
| 94 | - | ||
| 95 | - public void setCcZbh(String ccZbh) { | ||
| 96 | - this.ccZbh = ccZbh; | ||
| 97 | - } | ||
| 98 | - | ||
| 99 | - public String getGids() { | ||
| 100 | - return gids; | ||
| 101 | - } | ||
| 102 | - | ||
| 103 | - public void setGids(String gids) { | ||
| 104 | - this.gids = gids; | ||
| 105 | - } | ||
| 106 | - | ||
| 107 | - public String getGnames() { | ||
| 108 | - return gnames; | ||
| 109 | - } | ||
| 110 | - | ||
| 111 | - public void setGnames(String gnames) { | ||
| 112 | - this.gnames = gnames; | ||
| 113 | - } | ||
| 114 | - | ||
| 115 | - public String getGidindex() { | ||
| 116 | - return gidindex; | ||
| 117 | - } | ||
| 118 | - | ||
| 119 | - public void setGidindex(String gidindex) { | ||
| 120 | - this.gidindex = gidindex; | ||
| 121 | - } | ||
| 122 | - | ||
| 123 | - public String getEcids() { | ||
| 124 | - return ecids; | ||
| 125 | - } | ||
| 126 | - | ||
| 127 | - public void setEcids(String ecids) { | ||
| 128 | - this.ecids = ecids; | ||
| 129 | - } | ||
| 130 | - | ||
| 131 | - public String getEcdbbms() { | ||
| 132 | - return ecdbbms; | ||
| 133 | - } | ||
| 134 | - | ||
| 135 | - public void setEcdbbms(String ecdbbms) { | ||
| 136 | - this.ecdbbms = ecdbbms; | ||
| 137 | - } | ||
| 138 | - | ||
| 139 | - public String getEcindex() { | ||
| 140 | - return ecindex; | ||
| 141 | - } | ||
| 142 | - | ||
| 143 | - public void setEcindex(String ecindex) { | ||
| 144 | - this.ecindex = ecindex; | ||
| 145 | - } | ||
| 146 | - | ||
| 147 | - public Date getScheduleDate() { | ||
| 148 | - return scheduleDate; | ||
| 149 | - } | ||
| 150 | - | ||
| 151 | - public void setScheduleDate(Date scheduleDate) { | ||
| 152 | - this.scheduleDate = scheduleDate; | ||
| 153 | - } | ||
| 154 | - | ||
| 155 | - public String getSysuserId() { | ||
| 156 | - return sysuserId; | ||
| 157 | - } | ||
| 158 | - | ||
| 159 | - public void setSysuserId(String sysuserId) { | ||
| 160 | - this.sysuserId = sysuserId; | ||
| 161 | - } | ||
| 162 | - | ||
| 163 | - public String getSysuserName() { | ||
| 164 | - return sysuserName; | ||
| 165 | - } | ||
| 166 | - | ||
| 167 | - public void setSysuserName(String sysuserName) { | ||
| 168 | - this.sysuserName = sysuserName; | ||
| 169 | - } | ||
| 170 | - | ||
| 171 | - public Date getCreateDate() { | ||
| 172 | - return createDate; | ||
| 173 | - } | ||
| 174 | - | ||
| 175 | - public void setCreateDate(Date createDate) { | ||
| 176 | - this.createDate = createDate; | ||
| 177 | - } | ||
| 178 | - | ||
| 179 | - public String getXlId() { | ||
| 180 | - return xlId; | ||
| 181 | - } | ||
| 182 | - | ||
| 183 | - public void setXlId(String xlId) { | ||
| 184 | - this.xlId = xlId; | ||
| 185 | - } | ||
| 186 | - | ||
| 187 | - public String getXlName() { | ||
| 188 | - return xlName; | ||
| 189 | - } | ||
| 190 | - | ||
| 191 | - public void setXlName(String xlName) { | ||
| 192 | - this.xlName = xlName; | ||
| 193 | - } | ||
| 194 | -} | 1 | +package com.bsth.entity.schedule.temp; |
| 2 | + | ||
| 3 | +import com.bsth.entity.schedule.SchedulePlan; | ||
| 4 | + | ||
| 5 | +import javax.persistence.Entity; | ||
| 6 | +import javax.persistence.GeneratedValue; | ||
| 7 | +import javax.persistence.Id; | ||
| 8 | +import javax.persistence.Table; | ||
| 9 | +import java.util.Date; | ||
| 10 | + | ||
| 11 | +/** | ||
| 12 | + * 排班的中间结果数据,记录每次排班后规则的变化。 | ||
| 13 | + */ | ||
| 14 | +@Entity | ||
| 15 | +@Table(name = "bsth_c_s_sp_rule_rst") | ||
| 16 | +public class SchedulePlanRuleResult { | ||
| 17 | + /** 主键Id */ | ||
| 18 | + @Id | ||
| 19 | + @GeneratedValue | ||
| 20 | + private Long id; | ||
| 21 | + | ||
| 22 | + /** 线路id */ | ||
| 23 | + private String xlId; | ||
| 24 | + /** 线路名字 */ | ||
| 25 | + private String xlName; | ||
| 26 | + | ||
| 27 | + /** 排班规则id */ | ||
| 28 | + private String ruleId; | ||
| 29 | + /** 车辆配置id */ | ||
| 30 | + private String ccId; | ||
| 31 | + /** 车辆自编号 */ | ||
| 32 | + private String ccZbh; | ||
| 33 | + | ||
| 34 | + /** 路牌id列表字符串 */ | ||
| 35 | + private String gids; | ||
| 36 | + /** 路牌名字列表字符串 */ | ||
| 37 | + private String gnames; | ||
| 38 | + /** 翻到哪个路牌索引 */ | ||
| 39 | + private String gidindex; | ||
| 40 | + /** 人员配置id列表字符串 */ | ||
| 41 | + private String ecids; | ||
| 42 | + /** 人员配置搭班编码列表字符串 */ | ||
| 43 | + private String ecdbbms; | ||
| 44 | + /** 翻到哪个人员配置索引 */ | ||
| 45 | + private String ecindex; | ||
| 46 | + | ||
| 47 | + /** 时刻表id */ | ||
| 48 | + private String ttinfoId; | ||
| 49 | + /** 时刻表名字 */ | ||
| 50 | + private String ttinfoName; | ||
| 51 | + | ||
| 52 | + /** 排班日期 */ | ||
| 53 | + private Date scheduleDate; | ||
| 54 | + | ||
| 55 | + /** 操作人员id */ | ||
| 56 | + private String sysuserId; | ||
| 57 | + /** 操作人员姓名 */ | ||
| 58 | + private String sysuserName; | ||
| 59 | + /** 操作时间 */ | ||
| 60 | + private Date createDate; | ||
| 61 | + | ||
| 62 | + public SchedulePlanRuleResult() { | ||
| 63 | + | ||
| 64 | + } | ||
| 65 | + public SchedulePlanRuleResult(SchedulePlan schedulePlan) { | ||
| 66 | + this.sysuserId = schedulePlan.getCreateBy().getId().toString(); | ||
| 67 | + this.sysuserName = schedulePlan.getCreateBy().getName(); | ||
| 68 | +// this.createDate = schedulePlan.getCreateDate(); | ||
| 69 | + this.createDate = new Date(); | ||
| 70 | + } | ||
| 71 | + | ||
| 72 | + public Long getId() { | ||
| 73 | + return id; | ||
| 74 | + } | ||
| 75 | + | ||
| 76 | + public void setId(Long id) { | ||
| 77 | + this.id = id; | ||
| 78 | + } | ||
| 79 | + | ||
| 80 | + public String getRuleId() { | ||
| 81 | + return ruleId; | ||
| 82 | + } | ||
| 83 | + | ||
| 84 | + public void setRuleId(String ruleId) { | ||
| 85 | + this.ruleId = ruleId; | ||
| 86 | + } | ||
| 87 | + | ||
| 88 | + public String getCcId() { | ||
| 89 | + return ccId; | ||
| 90 | + } | ||
| 91 | + | ||
| 92 | + public void setCcId(String ccId) { | ||
| 93 | + this.ccId = ccId; | ||
| 94 | + } | ||
| 95 | + | ||
| 96 | + public String getCcZbh() { | ||
| 97 | + return ccZbh; | ||
| 98 | + } | ||
| 99 | + | ||
| 100 | + public void setCcZbh(String ccZbh) { | ||
| 101 | + this.ccZbh = ccZbh; | ||
| 102 | + } | ||
| 103 | + | ||
| 104 | + public String getGids() { | ||
| 105 | + return gids; | ||
| 106 | + } | ||
| 107 | + | ||
| 108 | + public void setGids(String gids) { | ||
| 109 | + this.gids = gids; | ||
| 110 | + } | ||
| 111 | + | ||
| 112 | + public String getGnames() { | ||
| 113 | + return gnames; | ||
| 114 | + } | ||
| 115 | + | ||
| 116 | + public void setGnames(String gnames) { | ||
| 117 | + this.gnames = gnames; | ||
| 118 | + } | ||
| 119 | + | ||
| 120 | + public String getGidindex() { | ||
| 121 | + return gidindex; | ||
| 122 | + } | ||
| 123 | + | ||
| 124 | + public void setGidindex(String gidindex) { | ||
| 125 | + this.gidindex = gidindex; | ||
| 126 | + } | ||
| 127 | + | ||
| 128 | + public String getEcids() { | ||
| 129 | + return ecids; | ||
| 130 | + } | ||
| 131 | + | ||
| 132 | + public void setEcids(String ecids) { | ||
| 133 | + this.ecids = ecids; | ||
| 134 | + } | ||
| 135 | + | ||
| 136 | + public String getEcdbbms() { | ||
| 137 | + return ecdbbms; | ||
| 138 | + } | ||
| 139 | + | ||
| 140 | + public void setEcdbbms(String ecdbbms) { | ||
| 141 | + this.ecdbbms = ecdbbms; | ||
| 142 | + } | ||
| 143 | + | ||
| 144 | + public String getEcindex() { | ||
| 145 | + return ecindex; | ||
| 146 | + } | ||
| 147 | + | ||
| 148 | + public void setEcindex(String ecindex) { | ||
| 149 | + this.ecindex = ecindex; | ||
| 150 | + } | ||
| 151 | + | ||
| 152 | + public Date getScheduleDate() { | ||
| 153 | + return scheduleDate; | ||
| 154 | + } | ||
| 155 | + | ||
| 156 | + public void setScheduleDate(Date scheduleDate) { | ||
| 157 | + this.scheduleDate = scheduleDate; | ||
| 158 | + } | ||
| 159 | + | ||
| 160 | + public String getSysuserId() { | ||
| 161 | + return sysuserId; | ||
| 162 | + } | ||
| 163 | + | ||
| 164 | + public void setSysuserId(String sysuserId) { | ||
| 165 | + this.sysuserId = sysuserId; | ||
| 166 | + } | ||
| 167 | + | ||
| 168 | + public String getSysuserName() { | ||
| 169 | + return sysuserName; | ||
| 170 | + } | ||
| 171 | + | ||
| 172 | + public void setSysuserName(String sysuserName) { | ||
| 173 | + this.sysuserName = sysuserName; | ||
| 174 | + } | ||
| 175 | + | ||
| 176 | + public Date getCreateDate() { | ||
| 177 | + return createDate; | ||
| 178 | + } | ||
| 179 | + | ||
| 180 | + public void setCreateDate(Date createDate) { | ||
| 181 | + this.createDate = createDate; | ||
| 182 | + } | ||
| 183 | + | ||
| 184 | + public String getXlId() { | ||
| 185 | + return xlId; | ||
| 186 | + } | ||
| 187 | + | ||
| 188 | + public void setXlId(String xlId) { | ||
| 189 | + this.xlId = xlId; | ||
| 190 | + } | ||
| 191 | + | ||
| 192 | + public String getXlName() { | ||
| 193 | + return xlName; | ||
| 194 | + } | ||
| 195 | + | ||
| 196 | + public void setXlName(String xlName) { | ||
| 197 | + this.xlName = xlName; | ||
| 198 | + } | ||
| 199 | + | ||
| 200 | + public String getTtinfoId() { | ||
| 201 | + return ttinfoId; | ||
| 202 | + } | ||
| 203 | + | ||
| 204 | + public void setTtinfoId(String ttinfoId) { | ||
| 205 | + this.ttinfoId = ttinfoId; | ||
| 206 | + } | ||
| 207 | + | ||
| 208 | + public String getTtinfoName() { | ||
| 209 | + return ttinfoName; | ||
| 210 | + } | ||
| 211 | + | ||
| 212 | + public void setTtinfoName(String ttinfoName) { | ||
| 213 | + this.ttinfoName = ttinfoName; | ||
| 214 | + } | ||
| 215 | +} |
src/main/java/com/bsth/repository/schedule/SchedulePlanRuleResultRepository.java
| 1 | -package com.bsth.repository.schedule; | ||
| 2 | - | ||
| 3 | -import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | ||
| 4 | -import com.bsth.repository.BaseRepository; | ||
| 5 | -import org.springframework.stereotype.Repository; | ||
| 6 | - | ||
| 7 | -/** | ||
| 8 | - * Created by xu on 17/3/29. | ||
| 9 | - */ | ||
| 10 | -@Repository | ||
| 11 | -public interface SchedulePlanRuleResultRepository extends BaseRepository<SchedulePlanRuleResult, Long> { | ||
| 12 | -} | 1 | +package com.bsth.repository.schedule; |
| 2 | + | ||
| 3 | +import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | ||
| 4 | +import com.bsth.repository.BaseRepository; | ||
| 5 | +import org.springframework.data.jpa.repository.Modifying; | ||
| 6 | +import org.springframework.data.jpa.repository.Query; | ||
| 7 | +import org.springframework.stereotype.Repository; | ||
| 8 | + | ||
| 9 | +import java.util.Date; | ||
| 10 | +import java.util.List; | ||
| 11 | + | ||
| 12 | +/** | ||
| 13 | + * Created by xu on 17/3/29. | ||
| 14 | + */ | ||
| 15 | +@Repository | ||
| 16 | +public interface SchedulePlanRuleResultRepository extends BaseRepository<SchedulePlanRuleResult, Long> { | ||
| 17 | + | ||
| 18 | + @Query("select t from SchedulePlanRuleResult t " + | ||
| 19 | + "where not exists (select 1 from SchedulePlanRuleResult " + | ||
| 20 | + "where createDate > t.createDate and scheduleDate < ?2 ) " + | ||
| 21 | + "and t.xlId = ?1 and t.scheduleDate < ?2") | ||
| 22 | + List<SchedulePlanRuleResult> findLastByXl(String xlid, Date from); | ||
| 23 | + | ||
| 24 | +// @Modifying | ||
| 25 | +// @Query("delete from SchedulePlanRuleResult t " + | ||
| 26 | +// "where t.xlId = ?1 and t.scheduleDate >= ?2 and t.scheduleDate <= ?3") | ||
| 27 | +// void deleteByXlAndDate(String xlid, Date from, Date to); | ||
| 28 | +} |
src/main/java/com/bsth/service/forms/impl/FormsServiceImpl.java
| @@ -731,22 +731,33 @@ public class FormsServiceImpl implements FormsService { | @@ -731,22 +731,33 @@ public class FormsServiceImpl implements FormsService { | ||
| 731 | 731 | ||
| 732 | @Override | 732 | @Override |
| 733 | public List<Daily> daily(Map<String, Object> map) { | 733 | public List<Daily> daily(Map<String, Object> map) { |
| 734 | + | ||
| 735 | + String gsbm=""; | ||
| 736 | + if(map.get("gsdmDaily")!=null){ | ||
| 737 | + gsbm=map.get("gsdmDaily").toString(); | ||
| 738 | + } | ||
| 739 | + | ||
| 740 | + String fgsbm=""; | ||
| 741 | + if(map.get("fgsdmDaily").toString()!=null){ | ||
| 742 | + fgsbm=map.get("fgsdmDaily").toString(); | ||
| 743 | + } | ||
| 744 | + | ||
| 734 | String sql="select t.schedule_date_str," | 745 | String sql="select t.schedule_date_str," |
| 735 | + " t.cl_zbh,t.j_gh,t.j_name,x.yh from (select r.schedule_date_str,r.xl_bm,r.xl_name," | 746 | + " t.cl_zbh,t.j_gh,t.j_name,x.yh from (select r.schedule_date_str,r.xl_bm,r.xl_name," |
| 736 | + " r.cl_zbh,r.j_gh,r.j_name from bsth_c_s_sp_info_real r WHERE " | 747 | + " r.cl_zbh,r.j_gh,r.j_name from bsth_c_s_sp_info_real r WHERE " |
| 737 | - + " r.xl_bm='" + map.get("line").toString() + "' and to_days(r.schedule_date)=to_days('"+map.get("date").toString()+"') " | ||
| 738 | - + " and r.gs_bm like '%"+map.get("gsdmDaily").toString()+"%' " | ||
| 739 | - + " and r.fgs_bm like '%"+map.get("fgsdmDaily").toString()+"%' " | 748 | + + " r.xl_bm='" + map.get("line").toString() + "' " |
| 749 | + + " and to_days(r.schedule_date)=to_days('"+map.get("date").toString()+"') " | ||
| 750 | + + " and r.gs_bm like '%"+gsbm+"%' " | ||
| 751 | + + " and r.fgs_bm like '%"+fgsbm+"%' " | ||
| 740 | + " GROUP BY r.schedule_date_str,r.xl_bm,r.xl_name,r.cl_zbh,r.j_gh,r.j_name) t" | 752 | + " GROUP BY r.schedule_date_str,r.xl_bm,r.xl_name,r.cl_zbh,r.j_gh,r.j_name) t" |
| 741 | + " left join (select * from bsth_c_ylb y where " | 753 | + " left join (select * from bsth_c_ylb y where " |
| 742 | + " to_days(y.rq)=to_days('"+map.get("date").toString()+"') " | 754 | + " to_days(y.rq)=to_days('"+map.get("date").toString()+"') " |
| 743 | + " and y.xlbm= '" + map.get("line").toString() + "'" | 755 | + " and y.xlbm= '" + map.get("line").toString() + "'" |
| 744 | - + " and y.ssgsdm like '%"+map.get("gsdmDaily").toString()+"%' " | ||
| 745 | - + " and y.fgsdm like '%"+map.get("fgsdmDaily").toString()+"%'" | 756 | + + " and y.ssgsdm like '%"+gsbm+"%' " |
| 757 | + + " and y.fgsdm like '%"+fgsbm+"%'" | ||
| 746 | + " ) x" | 758 | + " ) x" |
| 747 | + " on t.cl_zbh = x.nbbm "; | 759 | + " on t.cl_zbh = x.nbbm "; |
| 748 | 760 | ||
| 749 | - System.out.println(new Date()); | ||
| 750 | List<Daily> list = jdbcTemplate.query(sql, new RowMapper<Daily>() { | 761 | List<Daily> list = jdbcTemplate.query(sql, new RowMapper<Daily>() { |
| 751 | @Override | 762 | @Override |
| 752 | public Daily mapRow(ResultSet arg0, int arg1) throws SQLException { | 763 | public Daily mapRow(ResultSet arg0, int arg1) throws SQLException { |
src/main/java/com/bsth/service/oil/CwjyService.java
| 1 | package com.bsth.service.oil; | 1 | package com.bsth.service.oil; |
| 2 | 2 | ||
| 3 | 3 | ||
| 4 | +import java.util.List; | ||
| 4 | import java.util.Map; | 5 | import java.util.Map; |
| 5 | 6 | ||
| 6 | import com.bsth.entity.oil.Cwjy; | 7 | import com.bsth.entity.oil.Cwjy; |
| @@ -9,8 +10,8 @@ import com.bsth.service.BaseService; | @@ -9,8 +10,8 @@ import com.bsth.service.BaseService; | ||
| 9 | import com.bsth.util.PageObject; | 10 | import com.bsth.util.PageObject; |
| 10 | 11 | ||
| 11 | public interface CwjyService extends BaseService<Cwjy, Integer>{ | 12 | public interface CwjyService extends BaseService<Cwjy, Integer>{ |
| 12 | - PageObject<Ylxxb> Pagequery(Map<String, Object> map) ; | 13 | + List<Ylxxb> Pagequery(Map<String, Object> map) ; |
| 13 | Ylxxb bynbbm(Map<String, Object> map); | 14 | Ylxxb bynbbm(Map<String, Object> map); |
| 14 | 15 | ||
| 15 | - Map<String, Object> savejzl(Ylxxb t); | 16 | + Map<String, Object> savejzl(Map<String, Object> map) throws Exception ; |
| 16 | } | 17 | } |
src/main/java/com/bsth/service/oil/YlxxbService.java
| @@ -9,6 +9,6 @@ import com.bsth.util.PageObject; | @@ -9,6 +9,6 @@ import com.bsth.util.PageObject; | ||
| 9 | public interface YlxxbService extends BaseService<Ylxxb, Integer>{ | 9 | public interface YlxxbService extends BaseService<Ylxxb, Integer>{ |
| 10 | PageObject<Ylxxb> Pagequery(Map<String, Object> map) ; | 10 | PageObject<Ylxxb> Pagequery(Map<String, Object> map) ; |
| 11 | 11 | ||
| 12 | - Map<String, Object> checkJsy(Map<String, Object> map); | 12 | + Map<String, Object> checkJsy(Map<String, Object> map) throws Exception; |
| 13 | 13 | ||
| 14 | } | 14 | } |
src/main/java/com/bsth/service/oil/impl/CwjyServiceImpl.java
| @@ -6,17 +6,26 @@ import java.text.ParseException; | @@ -6,17 +6,26 @@ import java.text.ParseException; | ||
| 6 | import java.text.SimpleDateFormat; | 6 | import java.text.SimpleDateFormat; |
| 7 | import java.util.ArrayList; | 7 | import java.util.ArrayList; |
| 8 | import java.util.Arrays; | 8 | import java.util.Arrays; |
| 9 | +import java.util.Date; | ||
| 9 | import java.util.HashMap; | 10 | import java.util.HashMap; |
| 10 | import java.util.List; | 11 | import java.util.List; |
| 11 | import java.util.Map; | 12 | import java.util.Map; |
| 12 | 13 | ||
| 14 | +import javax.transaction.Transactional; | ||
| 15 | + | ||
| 16 | +import org.apache.commons.lang3.StringEscapeUtils; | ||
| 17 | +import org.slf4j.Logger; | ||
| 18 | +import org.slf4j.LoggerFactory; | ||
| 13 | import org.springframework.beans.factory.annotation.Autowired; | 19 | import org.springframework.beans.factory.annotation.Autowired; |
| 14 | import org.springframework.jdbc.core.JdbcTemplate; | 20 | import org.springframework.jdbc.core.JdbcTemplate; |
| 15 | import org.springframework.jdbc.core.RowMapper; | 21 | import org.springframework.jdbc.core.RowMapper; |
| 16 | import org.springframework.stereotype.Service; | 22 | import org.springframework.stereotype.Service; |
| 17 | 23 | ||
| 24 | +import com.alibaba.fastjson.JSONArray; | ||
| 25 | +import com.alibaba.fastjson.JSONObject; | ||
| 18 | import com.bsth.common.ResponseCode; | 26 | import com.bsth.common.ResponseCode; |
| 19 | import com.bsth.entity.oil.Cwjy; | 27 | import com.bsth.entity.oil.Cwjy; |
| 28 | +import com.bsth.entity.oil.Cyl; | ||
| 20 | import com.bsth.entity.oil.Ylxxb; | 29 | import com.bsth.entity.oil.Ylxxb; |
| 21 | import com.bsth.repository.oil.CwjyRepository; | 30 | import com.bsth.repository.oil.CwjyRepository; |
| 22 | import com.bsth.repository.oil.YlxxbRepository; | 31 | import com.bsth.repository.oil.YlxxbRepository; |
| @@ -35,8 +44,8 @@ public class CwjyServiceImpl extends BaseServiceImpl<Cwjy,Integer> implements Cw | @@ -35,8 +44,8 @@ public class CwjyServiceImpl extends BaseServiceImpl<Cwjy,Integer> implements Cw | ||
| 35 | 44 | ||
| 36 | @Autowired | 45 | @Autowired |
| 37 | JdbcTemplate jdbcTemplate; | 46 | JdbcTemplate jdbcTemplate; |
| 38 | - | ||
| 39 | - @SuppressWarnings("unchecked") | 47 | + Logger logger = LoggerFactory.getLogger(this.getClass()); |
| 48 | + /*@SuppressWarnings("unchecked") | ||
| 40 | public PageObject<Ylxxb> Pagequery(Map<String, Object> map) { | 49 | public PageObject<Ylxxb> Pagequery(Map<String, Object> map) { |
| 41 | int page=Integer.parseInt(map.get("page").toString()); | 50 | int page=Integer.parseInt(map.get("page").toString()); |
| 42 | SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd"); | 51 | SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd"); |
| @@ -129,7 +138,7 @@ public class CwjyServiceImpl extends BaseServiceImpl<Cwjy,Integer> implements Cw | @@ -129,7 +138,7 @@ public class CwjyServiceImpl extends BaseServiceImpl<Cwjy,Integer> implements Cw | ||
| 129 | return t; | 138 | return t; |
| 130 | } | 139 | } |
| 131 | }); | 140 | }); |
| 132 | - /*List<Object[]> list=repository.obtainCwjycl(rq,nbbm); | 141 | + List<Object[]> list=repository.obtainCwjycl(rq,nbbm); |
| 133 | for (int i = 0; i < list.size(); i++) { | 142 | for (int i = 0; i < list.size(); i++) { |
| 134 | Ylxxb y=new Ylxxb(); | 143 | Ylxxb y=new Ylxxb(); |
| 135 | y.setGsdm(list.get(i)[0]==null?"":list.get(i)[0].toString()); | 144 | y.setGsdm(list.get(i)[0]==null?"":list.get(i)[0].toString()); |
| @@ -148,13 +157,13 @@ public class CwjyServiceImpl extends BaseServiceImpl<Cwjy,Integer> implements Cw | @@ -148,13 +157,13 @@ public class CwjyServiceImpl extends BaseServiceImpl<Cwjy,Integer> implements Cw | ||
| 148 | e.printStackTrace(); | 157 | e.printStackTrace(); |
| 149 | } | 158 | } |
| 150 | yList.add(y); | 159 | yList.add(y); |
| 151 | - }*/ | 160 | + } |
| 152 | PageHelper pageHelper = new PageHelper(listsize, map); | 161 | PageHelper pageHelper = new PageHelper(listsize, map); |
| 153 | pageHelper.getMap(); | 162 | pageHelper.getMap(); |
| 154 | PageObject<Ylxxb> pageObject=pageHelper.getPageObject(); | 163 | PageObject<Ylxxb> pageObject=pageHelper.getPageObject(); |
| 155 | pageObject.setDataList(yList); | 164 | pageObject.setDataList(yList); |
| 156 | return pageObject; | 165 | return pageObject; |
| 157 | - } | 166 | + }*/ |
| 158 | 167 | ||
| 159 | @Override | 168 | @Override |
| 160 | public Ylxxb bynbbm(Map<String, Object> map) { | 169 | public Ylxxb bynbbm(Map<String, Object> map) { |
| @@ -188,28 +197,112 @@ public class CwjyServiceImpl extends BaseServiceImpl<Cwjy,Integer> implements Cw | @@ -188,28 +197,112 @@ public class CwjyServiceImpl extends BaseServiceImpl<Cwjy,Integer> implements Cw | ||
| 188 | return y; | 197 | return y; |
| 189 | } | 198 | } |
| 190 | 199 | ||
| 200 | + @Transactional | ||
| 191 | @Override | 201 | @Override |
| 192 | - public Map<String, Object> savejzl(Ylxxb t) { | 202 | + public Map<String, Object> savejzl(Map<String, Object> maps) throws Exception { |
| 193 | // TODO Auto-generated method stub | 203 | // TODO Auto-generated method stub |
| 194 | Map<String, Object> map=new HashMap<String,Object>(); | 204 | Map<String, Object> map=new HashMap<String,Object>(); |
| 195 | try { | 205 | try { |
| 196 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); | 206 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); |
| 197 | - String rq = sdf.format(t.getYyrq()); | ||
| 198 | - String nbbm=t.getNbbm(); | ||
| 199 | - List<Ylxxb> yList=ylxxbRepository.obtainYlxx2(rq,nbbm); | ||
| 200 | - if(yList.size()>0){ | ||
| 201 | - t.setId(yList.get(0).getId()); | ||
| 202 | - ylxxbRepository.save(t); | ||
| 203 | - }else{ | ||
| 204 | - ylxxbRepository.save(t); | 207 | +// String rq = sdf.format(t.getYyrq()); |
| 208 | +// String nbbm=t.getNbbm(); | ||
| 209 | +// List<Ylxxb> yList=ylxxbRepository.obtainYlxx2(rq,nbbm); | ||
| 210 | +// if(yList.size()>0){ | ||
| 211 | +// t.setId(yList.get(0).getId()); | ||
| 212 | +// ylxxbRepository.save(t); | ||
| 213 | +// }else{ | ||
| 214 | +// ylxxbRepository.save(t); | ||
| 215 | +// } | ||
| 216 | + String gsbm=maps.get("gsbm").toString(); | ||
| 217 | + String fgsbm=maps.get("fgsbm").toString(); | ||
| 218 | + String rq=maps.get("rq").toString(); | ||
| 219 | + Date date=sdf.parse(rq); | ||
| 220 | + String json =StringEscapeUtils.unescapeHtml4(maps.get("ylbList").toString()); | ||
| 221 | + JSONArray jsonArray=JSONArray.parseArray(json); | ||
| 222 | + JSONObject jsonObject; | ||
| 223 | + // 获取车辆存油信息 | ||
| 224 | + for (int i = 0; i < jsonArray.size(); i++) { | ||
| 225 | + jsonObject=jsonArray.getJSONObject(i); | ||
| 226 | + Integer id =jsonObject.getInteger("id"); | ||
| 227 | + String jsy=jsonObject.getString("jsy"); | ||
| 228 | + double jzl=jsonObject.getDoubleValue("jzl"); | ||
| 229 | + String stationid=jsonObject.getString("stationid"); | ||
| 230 | + int nylx=jsonObject.getIntValue("nylx"); | ||
| 231 | + String jyggh=jsonObject.getString("jyggh"); | ||
| 232 | + String bz=jsonObject.getString("bz"); | ||
| 233 | + Ylxxb y; | ||
| 234 | + if(id>0){ | ||
| 235 | + y=ylxxbRepository.findOne(id); | ||
| 236 | + y.setJsy(jsy); | ||
| 237 | + y.setJzl(jzl); | ||
| 238 | + y.setStationid(stationid); | ||
| 239 | + y.setJyggh(jyggh); | ||
| 240 | + y.setBz(bz); | ||
| 241 | + y.setCreatetime(date); | ||
| 242 | + ylxxbRepository.save(y); | ||
| 243 | + }else{ | ||
| 244 | + y=new Ylxxb(); | ||
| 245 | + y.setGsdm(gsbm); | ||
| 246 | + y.setJsy(jsy); | ||
| 247 | + y.setJzl(jzl); | ||
| 248 | + y.setStationid(stationid); | ||
| 249 | + y.setJyggh(jyggh); | ||
| 250 | + y.setBz(bz); | ||
| 251 | + y.setCreatetime(date); | ||
| 252 | + y.setJylx(1); | ||
| 253 | + ylxxbRepository.save(y); | ||
| 254 | + } | ||
| 205 | } | 255 | } |
| 206 | map.put("status", ResponseCode.SUCCESS); | 256 | map.put("status", ResponseCode.SUCCESS); |
| 257 | + | ||
| 207 | } catch (Exception e) { | 258 | } catch (Exception e) { |
| 208 | map.put("status", ResponseCode.ERROR); | 259 | map.put("status", ResponseCode.ERROR); |
| 209 | - e.printStackTrace(); | 260 | + logger.error("save erro.", e); |
| 261 | + throw e; | ||
| 210 | // TODO: handle exception | 262 | // TODO: handle exception |
| 211 | } | 263 | } |
| 212 | return map; | 264 | return map; |
| 213 | } | 265 | } |
| 214 | 266 | ||
| 267 | + @Override | ||
| 268 | + public List<Ylxxb> Pagequery(Map<String, Object> map) { | ||
| 269 | + // TODO Auto-generated method stub | ||
| 270 | + String rq=map.get("rq").toString(); | ||
| 271 | + String nbbm=map.get("nbbh").toString(); | ||
| 272 | + String sql="SELECT a.gsdm as gsdm,a.fgsdm as fgsdm,a.nbbm as nbbm," | ||
| 273 | + + "b.jyggh as jyggh,b.jzl as jzl ,b.stationid as stationid,b.jsy as jsy," | ||
| 274 | + + "b.nylx as nylx,b.yj as yj,b.bz as bz,b.id as id ,c.jsy as ldgh FROM bsth_c_cwjy a "+ | ||
| 275 | + " left join (" | ||
| 276 | + + " select * from bsth_c_ylxxb b " | ||
| 277 | + + "where to_days(b.yyrq)=to_days('"+rq+"') and jylx=1) b " + | ||
| 278 | + " on a.nbbm=b.nbbm " | ||
| 279 | + + "left join (select nbbm,group_concat(jsy) as jsy " | ||
| 280 | + + "from bsth_c_ylb where to_days(rq)= to_days('"+rq+"' ) group by nbbm "+ | ||
| 281 | + " ) c on a.nbbm=c.nbbm " | ||
| 282 | + + "where a.nbbm like '%"+nbbm+"%'"; | ||
| 283 | + | ||
| 284 | + List<Ylxxb> yList= jdbcTemplate.query(sql, | ||
| 285 | + new RowMapper<Ylxxb>(){ | ||
| 286 | + @Override | ||
| 287 | + public Ylxxb mapRow(ResultSet rs, int rowNum) throws SQLException { | ||
| 288 | + Ylxxb t=new Ylxxb(); | ||
| 289 | + t.setId(rs.getInt("id")); | ||
| 290 | + t.setGsdm(rs.getString("gsdm")); | ||
| 291 | + t.setFgsdm(rs.getString("fgsdm")); | ||
| 292 | + t.setNbbm(rs.getString("nbbm")); | ||
| 293 | + t.setJyggh(rs.getString("jyggh")); | ||
| 294 | + t.setJsy(rs.getString("jsy")); | ||
| 295 | + t.setJzl(rs.getDouble("jzl")); | ||
| 296 | + t.setStationid(rs.getString("stationid")); | ||
| 297 | + t.setNylx(rs.getInt("nylx")); | ||
| 298 | + t.setYj(rs.getDouble("yj")); | ||
| 299 | + t.setBz(rs.getString("bz")); | ||
| 300 | + t.setJsy(rs.getString("ldgh")); | ||
| 301 | + return t; | ||
| 302 | + } | ||
| 303 | + }); | ||
| 304 | + | ||
| 305 | + return yList; | ||
| 306 | + } | ||
| 307 | + | ||
| 215 | } | 308 | } |
src/main/java/com/bsth/service/oil/impl/YlbServiceImpl.java
| @@ -135,11 +135,9 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | @@ -135,11 +135,9 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | ||
| 135 | Ylb ylb=ylListBe.get(i); | 135 | Ylb ylb=ylListBe.get(i); |
| 136 | if(map.get("clZbh").toString().equals(ylb.getNbbm())){ | 136 | if(map.get("clZbh").toString().equals(ylb.getNbbm())){ |
| 137 | if(ylb.getJzyl()!=null){ | 137 | if(ylb.getJzyl()!=null){ |
| 138 | - if(ylb.getJzyl()>0){ | ||
| 139 | - t.setCzyl(ylb.getJzyl()); | ||
| 140 | - fage=false; | ||
| 141 | - break; | ||
| 142 | - } | 138 | + t.setCzyl(ylb.getJzyl()); |
| 139 | + fage=false; | ||
| 140 | + break; | ||
| 143 | } | 141 | } |
| 144 | 142 | ||
| 145 | } | 143 | } |
| @@ -272,7 +270,7 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | @@ -272,7 +270,7 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | ||
| 272 | for (int i = 0; i < ylListBe.size(); i++) { | 270 | for (int i = 0; i < ylListBe.size(); i++) { |
| 273 | Ylb ylb = ylListBe.get(i); | 271 | Ylb ylb = ylListBe.get(i); |
| 274 | if (map.get("clZbh").toString().equals(ylb.getNbbm())) { | 272 | if (map.get("clZbh").toString().equals(ylb.getNbbm())) { |
| 275 | - if(ylb.getJzyl()>0){ | 273 | + if(ylb.getJzyl()>=0){ |
| 276 | t.setCzyl(ylb.getJzyl()); | 274 | t.setCzyl(ylb.getJzyl()); |
| 277 | fage = false; | 275 | fage = false; |
| 278 | break; | 276 | break; |
| @@ -284,7 +282,7 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | @@ -284,7 +282,7 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | ||
| 284 | for (int y = 0; y < clyList.size(); y++) { | 282 | for (int y = 0; y < clyList.size(); y++) { |
| 285 | Cyl cyl = clyList.get(y); | 283 | Cyl cyl = clyList.get(y); |
| 286 | if (map.get("clZbh").toString().equals(cyl.getNbbm())) { | 284 | if (map.get("clZbh").toString().equals(cyl.getNbbm())) { |
| 287 | - if(cyl.getCyl()>0){ | 285 | + if(cyl.getCyl()>=0){ |
| 288 | t.setCzyl(cyl.getCyl()); | 286 | t.setCzyl(cyl.getCyl()); |
| 289 | fage = false; | 287 | fage = false; |
| 290 | break; | 288 | break; |
| @@ -680,7 +678,7 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | @@ -680,7 +678,7 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | ||
| 680 | if(map.get("nbbm_eq")!=null){ | 678 | if(map.get("nbbm_eq")!=null){ |
| 681 | nbbm=map.get("nbbm_eq").toString(); | 679 | nbbm=map.get("nbbm_eq").toString(); |
| 682 | } | 680 | } |
| 683 | - List<Ylb> ylListBe=repository.obtainYlbefore(rq, gsbm, fgsbm, xlbm, nbbm); | 681 | + List<Ylb> ylListBe=repository.obtainYlbefore(rq, gsbm, "", xlbm, nbbm); |
| 684 | List<Cyl> cylList=cylRepository.obtainCyl(nbbm, gsbm); | 682 | List<Cyl> cylList=cylRepository.obtainCyl(nbbm, gsbm); |
| 685 | List<Ylb> ylbList=repository.obtainYl(rq,gsbm,fgsbm,xlbm,nbbm,"nbbm"); | 683 | List<Ylb> ylbList=repository.obtainYl(rq,gsbm,fgsbm,xlbm,nbbm,"nbbm"); |
| 686 | List<Ylxxb> ylxxbList=ylxxbRepository.obtainYlxx(rq,0,gsbm); | 684 | List<Ylxxb> ylxxbList=ylxxbRepository.obtainYlxx(rq,0,gsbm); |
| @@ -703,10 +701,15 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | @@ -703,10 +701,15 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | ||
| 703 | t.setJsy(y1.getJsy()); | 701 | t.setJsy(y1.getJsy()); |
| 704 | t.setJzl(y1.getJzl()); | 702 | t.setJzl(y1.getJzl()); |
| 705 | t.setSsgsdm(y1.getGsdm()); | 703 | t.setSsgsdm(y1.getGsdm()); |
| 706 | - t.setFgsdm(carsMap.get(y1.getNbbm())); | 704 | + String fgsdm=carsMap.get(y1.getNbbm()); |
| 705 | + t.setFgsdm(fgsdm); | ||
| 706 | + t.setJcsx(1); | ||
| 707 | Line line= BasicData.nbbm2LineMap.get(y1.getNbbm()); | 707 | Line line= BasicData.nbbm2LineMap.get(y1.getNbbm()); |
| 708 | - if(null !=line) | ||
| 709 | - t.setXlbm(line.getLineCode()); | 708 | + if(null !=line){ |
| 709 | + t.setXlbm(line.getLineCode()); | ||
| 710 | + }else{ | ||
| 711 | + t.setXlbm(""); | ||
| 712 | + } | ||
| 710 | t.setJcsx(1); | 713 | t.setJcsx(1); |
| 711 | boolean status=true; | 714 | boolean status=true; |
| 712 | for (int j = 0; j < ylListBe.size(); j++) { | 715 | for (int j = 0; j < ylListBe.size(); j++) { |
| @@ -734,10 +737,12 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | @@ -734,10 +737,12 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | ||
| 734 | // double jzyl=Arith.add(t.getJzl(), t.getCzyl()); | 737 | // double jzyl=Arith.add(t.getJzl(), t.getCzyl()); |
| 735 | t.setJzyl(Arith.add(t.getJzl(), t.getCzyl())); | 738 | t.setJzyl(Arith.add(t.getJzl(), t.getCzyl())); |
| 736 | t.setYh(0.0); | 739 | t.setYh(0.0); |
| 737 | - repository.save(t); | ||
| 738 | - if(null!=cyl){ | ||
| 739 | - cyl.setCyl(Arith.add(t.getJzl(), t.getCzyl())); | ||
| 740 | - cylRepository.save(cyl); | 740 | + if(fgsdm.equals("fgsbm")){ |
| 741 | + repository.save(t); | ||
| 742 | + if(null!=cyl){ | ||
| 743 | + cyl.setCyl(Arith.add(t.getJzl(), t.getCzyl())); | ||
| 744 | + cylRepository.save(cyl); | ||
| 745 | + } | ||
| 741 | } | 746 | } |
| 742 | } | 747 | } |
| 743 | } | 748 | } |
src/main/java/com/bsth/service/oil/impl/YlxxbServiceImpl.java
| @@ -9,6 +9,9 @@ import java.util.HashMap; | @@ -9,6 +9,9 @@ import java.util.HashMap; | ||
| 9 | import java.util.List; | 9 | import java.util.List; |
| 10 | import java.util.Map; | 10 | import java.util.Map; |
| 11 | 11 | ||
| 12 | +import javax.transaction.Transactional; | ||
| 13 | + | ||
| 14 | +import org.apache.commons.lang3.StringEscapeUtils; | ||
| 12 | import org.slf4j.Logger; | 15 | import org.slf4j.Logger; |
| 13 | import org.slf4j.LoggerFactory; | 16 | import org.slf4j.LoggerFactory; |
| 14 | import org.springframework.beans.factory.annotation.Autowired; | 17 | import org.springframework.beans.factory.annotation.Autowired; |
| @@ -16,6 +19,8 @@ import org.springframework.jdbc.core.JdbcTemplate; | @@ -16,6 +19,8 @@ import org.springframework.jdbc.core.JdbcTemplate; | ||
| 16 | import org.springframework.jdbc.core.RowMapper; | 19 | import org.springframework.jdbc.core.RowMapper; |
| 17 | import org.springframework.stereotype.Service; | 20 | import org.springframework.stereotype.Service; |
| 18 | 21 | ||
| 22 | +import com.alibaba.fastjson.JSONArray; | ||
| 23 | +import com.alibaba.fastjson.JSONObject; | ||
| 19 | import com.bsth.common.ResponseCode; | 24 | import com.bsth.common.ResponseCode; |
| 20 | import com.bsth.entity.excep.Offline; | 25 | import com.bsth.entity.excep.Offline; |
| 21 | import com.bsth.entity.oil.Ylb; | 26 | import com.bsth.entity.oil.Ylb; |
| @@ -44,12 +49,27 @@ public class YlxxbServiceImpl extends BaseServiceImpl<Ylxxb,Integer> implements | @@ -44,12 +49,27 @@ public class YlxxbServiceImpl extends BaseServiceImpl<Ylxxb,Integer> implements | ||
| 44 | String rq=map.get("yyrq").toString(); | 49 | String rq=map.get("yyrq").toString(); |
| 45 | String gsdm=map.get("gsdm_like").toString(); | 50 | String gsdm=map.get("gsdm_like").toString(); |
| 46 | String fgsdm=map.get("fgsdm_like").toString(); | 51 | String fgsdm=map.get("fgsdm_like").toString(); |
| 47 | - | 52 | + /* |
| 48 | String sql=" select x.*,y.jsy as ldgh,y.fgsdm as fgsdm from bsth_c_ylxxb x " | 53 | String sql=" select x.*,y.jsy as ldgh,y.fgsdm as fgsdm from bsth_c_ylxxb x " |
| 49 | + " left join bsth_c_ylb y on x.nbbm = y.nbbm and x.jsy !=y.jsy " | 54 | + " left join bsth_c_ylb y on x.nbbm = y.nbbm and x.jsy !=y.jsy " |
| 50 | + " where DATE_FORMAT(y.rq,'%Y-%m-%d')='"+rq+"' and y.ssgsdm='"+gsdm+"' " | 55 | + " where DATE_FORMAT(y.rq,'%Y-%m-%d')='"+rq+"' and y.ssgsdm='"+gsdm+"' " |
| 51 | + " and y.fgsdm='"+fgsdm+"' and DATE_FORMAT(x.yyrq,'%Y-%m-%d')='"+rq+"' " | 56 | + " and y.fgsdm='"+fgsdm+"' and DATE_FORMAT(x.yyrq,'%Y-%m-%d')='"+rq+"' " |
| 52 | - + " and x.gsdm='"+gsdm+"'"; | 57 | + + " and x.gsdm='"+gsdm+"'";*/ |
| 58 | + | ||
| 59 | + String sql= "select v.*,u.jsy as ldgh from " | ||
| 60 | + + " ( select * from bsth_c_ylxxb x where " | ||
| 61 | + + " DATE_FORMAT(x.yyrq,'%Y-%m-%d')='"+rq+"' and x.gsdm='"+gsdm+"'" | ||
| 62 | + + " and x.jsy not in (" | ||
| 63 | + + " select jsy from bsth_c_ylb " | ||
| 64 | + + " where DATE_FORMAT(rq,'%Y-%m-%d')='"+rq+"' " | ||
| 65 | + + " and ssgsdm='"+gsdm+"' and fgsdm='"+fgsdm+"')" | ||
| 66 | + + " and x.nbbm in (select nbbm from bsth_c_ylb " | ||
| 67 | + + " where DATE_FORMAT(rq,'%Y-%m-%d')='"+rq+"' " | ||
| 68 | + + " and ssgsdm='"+gsdm+"' and fgsdm='"+fgsdm+"' )) v " | ||
| 69 | + + " left join (select * from bsth_c_ylb " | ||
| 70 | + + " where DATE_FORMAT(rq,'%Y-%m-%d')='"+rq+"'" | ||
| 71 | + + " and ssgsdm='"+gsdm+"' and fgsdm='"+fgsdm+"' ) u " | ||
| 72 | + + " on v.nbbm=u.nbbm "; | ||
| 53 | 73 | ||
| 54 | //根具条件查询指定日期Ylxxb的数据 | 74 | //根具条件查询指定日期Ylxxb的数据 |
| 55 | // List<Ylxxb> iterator=repository.checkYlxx(rq,gsdm); | 75 | // List<Ylxxb> iterator=repository.checkYlxx(rq,gsdm); |
| @@ -114,21 +134,33 @@ public class YlxxbServiceImpl extends BaseServiceImpl<Ylxxb,Integer> implements | @@ -114,21 +134,33 @@ public class YlxxbServiceImpl extends BaseServiceImpl<Ylxxb,Integer> implements | ||
| 114 | pageObject.setDataList(list); | 134 | pageObject.setDataList(list); |
| 115 | return pageObject; | 135 | return pageObject; |
| 116 | } | 136 | } |
| 117 | - | 137 | + @Transactional |
| 118 | @Override | 138 | @Override |
| 119 | - public Map<String, Object> checkJsy(Map<String, Object> map) { | 139 | + public Map<String, Object> checkJsy(Map<String, Object> map) throws Exception{ |
| 120 | Map<String, Object> newMap=new HashMap<String,Object>(); | 140 | Map<String, Object> newMap=new HashMap<String,Object>(); |
| 121 | // TODO Auto-generated method stub | 141 | // TODO Auto-generated method stub |
| 122 | try { | 142 | try { |
| 123 | - int id=Integer.parseInt(map.get("id").toString()); | ||
| 124 | - String jsy=map.get("jsy").toString(); | ||
| 125 | - Ylxxb ylxxb=repository.findOne(id); | ||
| 126 | - ylxxb.setJsy(jsy); | ||
| 127 | - repository.save(ylxxb); | 143 | +// int id=Integer.parseInt(map.get("id").toString()); |
| 144 | +// String jsy=map.get("jsy").toString(); | ||
| 145 | +// Ylxxb ylxxb=repository.findOne(id); | ||
| 146 | +// ylxxb.setJsy(jsy); | ||
| 147 | +// repository.save(ylxxb); | ||
| 148 | + String json =StringEscapeUtils.unescapeHtml4(map.get("ylbList").toString()); | ||
| 149 | + JSONArray jsonArray=JSONArray.parseArray(json); | ||
| 150 | + JSONObject jsonObject; | ||
| 151 | + for (int x = 0; x < jsonArray.size(); x++) { | ||
| 152 | + jsonObject=jsonArray.getJSONObject(x); | ||
| 153 | + Integer id =jsonObject.getInteger("id"); | ||
| 154 | + String jsy =jsonObject.getString("jsy"); | ||
| 155 | + Ylxxb ylxxb=repository.findOne(id); | ||
| 156 | + ylxxb.setJsy(jsy); | ||
| 157 | + repository.save(ylxxb); | ||
| 158 | + } | ||
| 128 | newMap.put("status", ResponseCode.SUCCESS); | 159 | newMap.put("status", ResponseCode.SUCCESS); |
| 129 | }catch(Exception e){ | 160 | }catch(Exception e){ |
| 130 | newMap.put("status", ResponseCode.ERROR); | 161 | newMap.put("status", ResponseCode.ERROR); |
| 131 | logger.error("save erro.", e); | 162 | logger.error("save erro.", e); |
| 163 | + throw e; | ||
| 132 | } | 164 | } |
| 133 | return newMap; | 165 | return newMap; |
| 134 | } | 166 | } |
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
| @@ -1579,10 +1579,12 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -1579,10 +1579,12 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 1579 | listSchedule.add(s); | 1579 | listSchedule.add(s); |
| 1580 | //计算营运里程,空驶里程 | 1580 | //计算营运里程,空驶里程 |
| 1581 | if (!childTaskPlans.isEmpty()) { | 1581 | if (!childTaskPlans.isEmpty()) { |
| 1582 | - Iterator<ChildTaskPlan> it = childTaskPlans.iterator(); | ||
| 1583 | - while (it.hasNext()) { | 1582 | +// Iterator<ChildTaskPlan> it = childTaskPlans.iterator(); |
| 1583 | + List<ChildTaskPlan> listit=new ArrayList<ChildTaskPlan>(childTaskPlans); | ||
| 1584 | + Collections.sort(listit, new ComparableChild()); | ||
| 1585 | + for (int j = 0; j < listit.size(); j++) { | ||
| 1584 | ScheduleRealInfo t = new ScheduleRealInfo(); | 1586 | ScheduleRealInfo t = new ScheduleRealInfo(); |
| 1585 | - ChildTaskPlan childTaskPlan = it.next(); | 1587 | + ChildTaskPlan childTaskPlan = listit.get(j); |
| 1586 | if (childTaskPlan.isDestroy()) { | 1588 | if (childTaskPlan.isDestroy()) { |
| 1587 | t.setFcsjActual(""); | 1589 | t.setFcsjActual(""); |
| 1588 | t.setZdsjActual(""); | 1590 | t.setZdsjActual(""); |
src/main/java/com/bsth/service/report/ReportService.java
| @@ -38,4 +38,6 @@ public interface ReportService { | @@ -38,4 +38,6 @@ public interface ReportService { | ||
| 38 | List<Map<String, Object>> lineList(); | 38 | List<Map<String, Object>> lineList(); |
| 39 | 39 | ||
| 40 | List<Map<String, String>> carList(Map<String, Object> map); | 40 | List<Map<String, String>> carList(Map<String, Object> map); |
| 41 | + | ||
| 42 | + List<Map<String, String>> userList(Map<String, Object> map); | ||
| 41 | } | 43 | } |
src/main/java/com/bsth/service/report/impl/CulateMileageServiceImpl.java
| @@ -221,15 +221,29 @@ public class CulateMileageServiceImpl implements CulateMileageService{ | @@ -221,15 +221,29 @@ public class CulateMileageServiceImpl implements CulateMileageService{ | ||
| 221 | if (!(scheduleRealInfo.getBcType().equals("in") | 221 | if (!(scheduleRealInfo.getBcType().equals("in") |
| 222 | || scheduleRealInfo.getBcType().equals("out"))) { | 222 | || scheduleRealInfo.getBcType().equals("out"))) { |
| 223 | if(scheduleRealInfo.isSflj()){ | 223 | if(scheduleRealInfo.isSflj()){ |
| 224 | - String[] fcsjStr = scheduleRealInfo.getFcsj().split(":"); | ||
| 225 | - long fcsj= Long.parseLong(fcsjStr[0])*60+Long.parseLong(fcsjStr[1]); | ||
| 226 | - if(item.equals("zgf")){ | ||
| 227 | - if(fcsj>=zgf1 && fcsj<=zgf2){ | ||
| 228 | - ljbc++; | 224 | + if(item.equals("zgf") || item.equals("wgf")){ |
| 225 | + String time=""; | ||
| 226 | + if(scheduleRealInfo.getFcsjActual()!=null){ | ||
| 227 | + time=scheduleRealInfo.getFcsjActual(); | ||
| 229 | } | 228 | } |
| 230 | - }else if(item.equals("wgf")){ | ||
| 231 | - if(fcsj>=wgf1 && fcsj<=wgf2){ | ||
| 232 | - ljbc++; | 229 | + if(time.equals("")){ |
| 230 | + if(scheduleRealInfo.getDfsj()!=null){ | ||
| 231 | + time=scheduleRealInfo.getDfsj(); | ||
| 232 | + } | ||
| 233 | + } | ||
| 234 | + if(!time.equals("")){ | ||
| 235 | + String[] fcsjStr = time.split(":"); | ||
| 236 | + long fcsj= Long.parseLong(fcsjStr[0])*60+Long.parseLong(fcsjStr[1]); | ||
| 237 | + | ||
| 238 | + if(item.equals("zgf")){ | ||
| 239 | + if(fcsj>=zgf1 && fcsj<=zgf2){ | ||
| 240 | + ljbc++; | ||
| 241 | + } | ||
| 242 | + }else if(item.equals("wgf")){ | ||
| 243 | + if(fcsj>=wgf1 && fcsj<=wgf2){ | ||
| 244 | + ljbc++; | ||
| 245 | + } | ||
| 246 | + } | ||
| 233 | } | 247 | } |
| 234 | }else{ | 248 | }else{ |
| 235 | ljbc++; | 249 | ljbc++; |
| @@ -327,37 +341,24 @@ public class CulateMileageServiceImpl implements CulateMileageService{ | @@ -327,37 +341,24 @@ public class CulateMileageServiceImpl implements CulateMileageService{ | ||
| 327 | || scheduleRealInfo.getBcType().equals("out"))) { | 341 | || scheduleRealInfo.getBcType().equals("out"))) { |
| 328 | Set<ChildTaskPlan> childTaskPlans = scheduleRealInfo.getcTasks(); | 342 | Set<ChildTaskPlan> childTaskPlans = scheduleRealInfo.getcTasks(); |
| 329 | if(!scheduleRealInfo.isSflj()){ | 343 | if(!scheduleRealInfo.isSflj()){ |
| 330 | - String[] fcsjStr = scheduleRealInfo.getFcsj().split(":"); | ||
| 331 | - long fcsj= Long.parseLong(fcsjStr[0])*60+Long.parseLong(fcsjStr[1]); | ||
| 332 | - if(childTaskPlans.isEmpty()){ | ||
| 333 | - if(scheduleRealInfo.getStatus()!=-1){ | ||
| 334 | - if(item.equals("zgf")){ | ||
| 335 | - if(fcsj>=zgf1 && fcsj<=zgf2){ | ||
| 336 | - sjbc++; | ||
| 337 | - } | ||
| 338 | - }else if(item.equals("wgf")){ | ||
| 339 | - if(fcsj>=wgf1 && fcsj<=wgf2){ | ||
| 340 | - sjbc++; | ||
| 341 | - } | ||
| 342 | - }else{ | ||
| 343 | - sjbc++; | 344 | + String time=""; |
| 345 | + if(item.equals("zgf") || item.equals("wgf")){ | ||
| 346 | + if(scheduleRealInfo.getFcsjActual()!=null){ | ||
| 347 | + time=scheduleRealInfo.getFcsjActual(); | ||
| 348 | + } | ||
| 349 | + if(time.equals("")){ | ||
| 350 | + if(scheduleRealInfo.getDfsj()!=null){ | ||
| 351 | + time=scheduleRealInfo.getDfsj(); | ||
| 344 | } | 352 | } |
| 345 | - | ||
| 346 | } | 353 | } |
| 347 | }else{ | 354 | }else{ |
| 348 | - if(scheduleRealInfo.getStatus() == -1){ | ||
| 349 | - boolean fage=false; | ||
| 350 | - Iterator<ChildTaskPlan> it = childTaskPlans.iterator(); | ||
| 351 | - if(it.hasNext()){ | ||
| 352 | - ChildTaskPlan childTaskPlan = it.next(); | ||
| 353 | - if(!childTaskPlan.isDestroy()){ | ||
| 354 | - if(childTaskPlan.getMileageType().equals("service")){ | ||
| 355 | - fage=true; | ||
| 356 | - } | ||
| 357 | - } | ||
| 358 | - | ||
| 359 | - } | ||
| 360 | - if(fage){ | 355 | + time=scheduleRealInfo.getFcsj(); |
| 356 | + } | ||
| 357 | + if(!time.equals("")){ | ||
| 358 | + String[] fcsjStr = scheduleRealInfo.getFcsj().split(":"); | ||
| 359 | + long fcsj= Long.parseLong(fcsjStr[0])*60+Long.parseLong(fcsjStr[1]); | ||
| 360 | + if(childTaskPlans.isEmpty()){ | ||
| 361 | + if(scheduleRealInfo.getStatus()!=-1){ | ||
| 361 | if(item.equals("zgf")){ | 362 | if(item.equals("zgf")){ |
| 362 | if(fcsj>=zgf1 && fcsj<=zgf2){ | 363 | if(fcsj>=zgf1 && fcsj<=zgf2){ |
| 363 | sjbc++; | 364 | sjbc++; |
| @@ -369,19 +370,47 @@ public class CulateMileageServiceImpl implements CulateMileageService{ | @@ -369,19 +370,47 @@ public class CulateMileageServiceImpl implements CulateMileageService{ | ||
| 369 | }else{ | 370 | }else{ |
| 370 | sjbc++; | 371 | sjbc++; |
| 371 | } | 372 | } |
| 373 | + | ||
| 372 | } | 374 | } |
| 373 | - | ||
| 374 | }else{ | 375 | }else{ |
| 375 | - if(item.equals("zgf")){ | ||
| 376 | - if(fcsj>=zgf1 && fcsj<=zgf2){ | ||
| 377 | - sjbc++; | 376 | + if(scheduleRealInfo.getStatus() == -1){ |
| 377 | + boolean fage=false; | ||
| 378 | + Iterator<ChildTaskPlan> it = childTaskPlans.iterator(); | ||
| 379 | + if(it.hasNext()){ | ||
| 380 | + ChildTaskPlan childTaskPlan = it.next(); | ||
| 381 | + if(!childTaskPlan.isDestroy()){ | ||
| 382 | + if(childTaskPlan.getMileageType().equals("service")){ | ||
| 383 | + fage=true; | ||
| 384 | + } | ||
| 385 | + } | ||
| 386 | + | ||
| 378 | } | 387 | } |
| 379 | - }else if(item.equals("wgf")){ | ||
| 380 | - if(fcsj>=wgf1 && fcsj<=wgf2){ | ||
| 381 | - sjbc++; | 388 | + if(fage){ |
| 389 | + if(item.equals("zgf")){ | ||
| 390 | + if(fcsj>=zgf1 && fcsj<=zgf2){ | ||
| 391 | + sjbc++; | ||
| 392 | + } | ||
| 393 | + }else if(item.equals("wgf")){ | ||
| 394 | + if(fcsj>=wgf1 && fcsj<=wgf2){ | ||
| 395 | + sjbc++; | ||
| 396 | + } | ||
| 397 | + }else{ | ||
| 398 | + sjbc++; | ||
| 399 | + } | ||
| 382 | } | 400 | } |
| 401 | + | ||
| 383 | }else{ | 402 | }else{ |
| 384 | - sjbc++; | 403 | + if(item.equals("zgf")){ |
| 404 | + if(fcsj>=zgf1 && fcsj<=zgf2){ | ||
| 405 | + sjbc++; | ||
| 406 | + } | ||
| 407 | + }else if(item.equals("wgf")){ | ||
| 408 | + if(fcsj>=wgf1 && fcsj<=wgf2){ | ||
| 409 | + sjbc++; | ||
| 410 | + } | ||
| 411 | + }else{ | ||
| 412 | + sjbc++; | ||
| 413 | + } | ||
| 385 | } | 414 | } |
| 386 | } | 415 | } |
| 387 | } | 416 | } |
src/main/java/com/bsth/service/report/impl/ReportServiceImpl.java
| @@ -25,6 +25,7 @@ import org.springframework.stereotype.Service; | @@ -25,6 +25,7 @@ import org.springframework.stereotype.Service; | ||
| 25 | 25 | ||
| 26 | import com.bsth.data.BasicData; | 26 | import com.bsth.data.BasicData; |
| 27 | import com.bsth.entity.Line; | 27 | import com.bsth.entity.Line; |
| 28 | +import com.bsth.entity.Personnel; | ||
| 28 | import com.bsth.entity.StationRoute; | 29 | import com.bsth.entity.StationRoute; |
| 29 | import com.bsth.entity.excep.ArrivalInfo; | 30 | import com.bsth.entity.excep.ArrivalInfo; |
| 30 | import com.bsth.entity.oil.Ylb; | 31 | import com.bsth.entity.oil.Ylb; |
| @@ -1384,4 +1385,47 @@ public class ReportServiceImpl implements ReportService{ | @@ -1384,4 +1385,47 @@ public class ReportServiceImpl implements ReportService{ | ||
| 1384 | } | 1385 | } |
| 1385 | return list; | 1386 | return list; |
| 1386 | } | 1387 | } |
| 1388 | + | ||
| 1389 | + | ||
| 1390 | + @Override | ||
| 1391 | + public List<Map<String, String>> userList(Map<String, Object> maps) { | ||
| 1392 | + // TODO Auto-generated method stub | ||
| 1393 | + // 转大写 | ||
| 1394 | + String jsy =maps.get("jsy").toString().toUpperCase(); | ||
| 1395 | + String gsbm=maps.get("gsbm").toString().trim(); | ||
| 1396 | +// String fgsbm=maps.get("fgsbm").toString().trim(); | ||
| 1397 | + List<Map<String, String>> list = new ArrayList<Map<String, String>>(); | ||
| 1398 | + Map<String, String> map; | ||
| 1399 | +// Set<String> allSet = BasicData.nbbm2CompanyCodeMap.keySet(); | ||
| 1400 | + Set<String> allJsy = BasicData.jsyMap.keySet(); | ||
| 1401 | + | ||
| 1402 | + Personnel per; | ||
| 1403 | + for (String k : allJsy) { | ||
| 1404 | + if (k.indexOf(jsy) != -1) { | ||
| 1405 | + // 所属线路 | ||
| 1406 | + boolean fage=true; | ||
| 1407 | + map = new HashMap<>(); | ||
| 1408 | + per = BasicData.jsyMap.get(k); | ||
| 1409 | + String rygsdm= per.getCompanyCode(); | ||
| 1410 | + | ||
| 1411 | + map.put("id", k); | ||
| 1412 | + map.put("text", k+"/"+per.getPersonnelName()); | ||
| 1413 | + | ||
| 1414 | + if(!gsbm.equals("")){ | ||
| 1415 | + if(!rygsdm.equals(gsbm)){ | ||
| 1416 | + fage=false; | ||
| 1417 | + } | ||
| 1418 | + } | ||
| 1419 | + | ||
| 1420 | + if(fage){ | ||
| 1421 | + list.add(map); | ||
| 1422 | + } | ||
| 1423 | + | ||
| 1424 | + } | ||
| 1425 | + | ||
| 1426 | + if (list.size() > 20) | ||
| 1427 | + break; | ||
| 1428 | + } | ||
| 1429 | + return list; | ||
| 1430 | + } | ||
| 1387 | } | 1431 | } |
src/main/java/com/bsth/service/schedule/SchedulePlanRuleResultService.java
| 1 | -package com.bsth.service.schedule; | ||
| 2 | - | ||
| 3 | -import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | ||
| 4 | - | ||
| 5 | -/** | ||
| 6 | - * Created by xu on 17/3/29. | ||
| 7 | - */ | ||
| 8 | -public interface SchedulePlanRuleResultService extends BService<SchedulePlanRuleResult, Long> { | ||
| 9 | -} | 1 | +package com.bsth.service.schedule; |
| 2 | + | ||
| 3 | +import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | ||
| 4 | + | ||
| 5 | +/** | ||
| 6 | + * Created by xu on 17/3/29. | ||
| 7 | + */ | ||
| 8 | +public interface SchedulePlanRuleResultService extends BService<SchedulePlanRuleResult, Long> { | ||
| 9 | +} |
src/main/java/com/bsth/service/schedule/impl/SchedulePlanRuleResultServiceImpl.java
| 1 | -package com.bsth.service.schedule.impl; | ||
| 2 | - | ||
| 3 | -import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | ||
| 4 | -import com.bsth.service.schedule.SchedulePlanRuleResultService; | ||
| 5 | -import org.springframework.stereotype.Service; | ||
| 6 | - | ||
| 7 | -/** | ||
| 8 | - * Created by xu on 17/3/29. | ||
| 9 | - */ | ||
| 10 | -@Service | ||
| 11 | -public class SchedulePlanRuleResultServiceImpl extends BServiceImpl<SchedulePlanRuleResult, Long> implements SchedulePlanRuleResultService { | ||
| 12 | -} | 1 | +package com.bsth.service.schedule.impl; |
| 2 | + | ||
| 3 | +import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | ||
| 4 | +import com.bsth.service.schedule.SchedulePlanRuleResultService; | ||
| 5 | +import org.springframework.stereotype.Service; | ||
| 6 | + | ||
| 7 | +/** | ||
| 8 | + * Created by xu on 17/3/29. | ||
| 9 | + */ | ||
| 10 | +@Service | ||
| 11 | +public class SchedulePlanRuleResultServiceImpl extends BServiceImpl<SchedulePlanRuleResult, Long> implements SchedulePlanRuleResultService { | ||
| 12 | +} |
src/main/java/com/bsth/service/schedule/impl/SchedulePlanServiceImpl.java
| @@ -54,6 +54,8 @@ public class SchedulePlanServiceImpl extends BServiceImpl<SchedulePlan, Long> im | @@ -54,6 +54,8 @@ public class SchedulePlanServiceImpl extends BServiceImpl<SchedulePlan, Long> im | ||
| 54 | private BusinessRepository businessRepository; | 54 | private BusinessRepository businessRepository; |
| 55 | @Autowired | 55 | @Autowired |
| 56 | private SchedulePlanRuleResultService schedulePlanRuleResultService; | 56 | private SchedulePlanRuleResultService schedulePlanRuleResultService; |
| 57 | + @Autowired | ||
| 58 | + private SchedulePlanRuleResultRepository schedulePlanRuleResultRepository; | ||
| 57 | 59 | ||
| 58 | /** 日志记录器 */ | 60 | /** 日志记录器 */ |
| 59 | private Logger logger = LoggerFactory.getLogger(SchedulePlanServiceImpl.class); | 61 | private Logger logger = LoggerFactory.getLogger(SchedulePlanServiceImpl.class); |
| @@ -87,6 +89,7 @@ public class SchedulePlanServiceImpl extends BServiceImpl<SchedulePlan, Long> im | @@ -87,6 +89,7 @@ public class SchedulePlanServiceImpl extends BServiceImpl<SchedulePlan, Long> im | ||
| 87 | // 设置gloable对象,在drl中通过别名使用 | 89 | // 设置gloable对象,在drl中通过别名使用 |
| 88 | session.setGlobal("scheduleResult", scheduleResults_output); | 90 | session.setGlobal("scheduleResult", scheduleResults_output); |
| 89 | session.setGlobal("log", logger); // 设置日志 | 91 | session.setGlobal("log", logger); // 设置日志 |
| 92 | + session.setGlobal("schedulePlanRuleResultRepository", schedulePlanRuleResultRepository); | ||
| 90 | 93 | ||
| 91 | // 载入数据 | 94 | // 载入数据 |
| 92 | session.insert(scheduleCalcuParam_input); | 95 | session.insert(scheduleCalcuParam_input); |
src/main/java/com/bsth/service/schedule/rules/shiftloop/ScheduleCalcuParam_input.java
| @@ -12,6 +12,9 @@ public class ScheduleCalcuParam_input { | @@ -12,6 +12,9 @@ public class ScheduleCalcuParam_input { | ||
| 12 | /** 结束计算日期 */ | 12 | /** 结束计算日期 */ |
| 13 | private DateTime toDate; | 13 | private DateTime toDate; |
| 14 | 14 | ||
| 15 | + /** 线路Id */ | ||
| 16 | + private String xlId; | ||
| 17 | + | ||
| 15 | /** 排班计划实体 */ | 18 | /** 排班计划实体 */ |
| 16 | private SchedulePlan schedulePlan; | 19 | private SchedulePlan schedulePlan; |
| 17 | 20 | ||
| @@ -22,6 +25,7 @@ public class ScheduleCalcuParam_input { | @@ -22,6 +25,7 @@ public class ScheduleCalcuParam_input { | ||
| 22 | this.toDate = new DateTime((schedulePlan.getScheduleToTime())); | 25 | this.toDate = new DateTime((schedulePlan.getScheduleToTime())); |
| 23 | 26 | ||
| 24 | this.schedulePlan = schedulePlan; | 27 | this.schedulePlan = schedulePlan; |
| 28 | + this.xlId = String.valueOf(schedulePlan.getXl().getId()); | ||
| 25 | } | 29 | } |
| 26 | 30 | ||
| 27 | public DateTime getFromDate() { | 31 | public DateTime getFromDate() { |
| @@ -47,4 +51,12 @@ public class ScheduleCalcuParam_input { | @@ -47,4 +51,12 @@ public class ScheduleCalcuParam_input { | ||
| 47 | public void setSchedulePlan(SchedulePlan schedulePlan) { | 51 | public void setSchedulePlan(SchedulePlan schedulePlan) { |
| 48 | this.schedulePlan = schedulePlan; | 52 | this.schedulePlan = schedulePlan; |
| 49 | } | 53 | } |
| 54 | + | ||
| 55 | + public String getXlId() { | ||
| 56 | + return xlId; | ||
| 57 | + } | ||
| 58 | + | ||
| 59 | + public void setXlId(String xlId) { | ||
| 60 | + this.xlId = xlId; | ||
| 61 | + } | ||
| 50 | } | 62 | } |
src/main/java/com/bsth/service/schedule/rules/ttinfo/LpInfoResult_output.java
| @@ -14,6 +14,8 @@ public class LpInfoResult_output { | @@ -14,6 +14,8 @@ public class LpInfoResult_output { | ||
| 14 | private String xlId; | 14 | private String xlId; |
| 15 | /** 时刻表Id */ | 15 | /** 时刻表Id */ |
| 16 | private String ttInfoId; | 16 | private String ttInfoId; |
| 17 | + /** 时刻表名字 */ | ||
| 18 | + private String ttInfoName; | ||
| 17 | 19 | ||
| 18 | public DateTime getDateTime() { | 20 | public DateTime getDateTime() { |
| 19 | return dateTime; | 21 | return dateTime; |
| @@ -46,4 +48,12 @@ public class LpInfoResult_output { | @@ -46,4 +48,12 @@ public class LpInfoResult_output { | ||
| 46 | public void setTtInfoId(String ttInfoId) { | 48 | public void setTtInfoId(String ttInfoId) { |
| 47 | this.ttInfoId = ttInfoId; | 49 | this.ttInfoId = ttInfoId; |
| 48 | } | 50 | } |
| 51 | + | ||
| 52 | + public String getTtInfoName() { | ||
| 53 | + return ttInfoName; | ||
| 54 | + } | ||
| 55 | + | ||
| 56 | + public void setTtInfoName(String ttInfoName) { | ||
| 57 | + this.ttInfoName = ttInfoName; | ||
| 58 | + } | ||
| 49 | } | 59 | } |
src/main/java/com/bsth/service/schedule/rules/ttinfo/LpInfoResultsFunction.java
| @@ -66,6 +66,7 @@ public class LpInfoResultsFunction implements AccumulateFunction { | @@ -66,6 +66,7 @@ public class LpInfoResultsFunction implements AccumulateFunction { | ||
| 66 | lpInfoResult_output.setLpId(String.valueOf(ttInfoDetail.getLp().getId())); | 66 | lpInfoResult_output.setLpId(String.valueOf(ttInfoDetail.getLp().getId())); |
| 67 | lpInfoResult_output.setXlId(String.valueOf(ttInfoDetail.getXl().getId())); | 67 | lpInfoResult_output.setXlId(String.valueOf(ttInfoDetail.getXl().getId())); |
| 68 | lpInfoResult_output.setTtInfoId(String.valueOf(ttInfoDetail.getTtinfo().getId())); | 68 | lpInfoResult_output.setTtInfoId(String.valueOf(ttInfoDetail.getTtinfo().getId())); |
| 69 | + lpInfoResult_output.setTtInfoName(ttInfoDetail.getTtinfo().getName()); | ||
| 69 | 70 | ||
| 70 | lpInfoResultsData.lpInfoResult_outputMap.put( | 71 | lpInfoResultsData.lpInfoResult_outputMap.put( |
| 71 | ttInfoDetail.getLp().getId(), | 72 | ttInfoDetail.getLp().getId(), |
src/main/java/com/bsth/util/ComparableChild.java
0 → 100644
| 1 | +package com.bsth.util; | ||
| 2 | + | ||
| 3 | +import java.util.Comparator; | ||
| 4 | +import java.util.List; | ||
| 5 | + | ||
| 6 | +import com.bsth.entity.realcontrol.ChildTaskPlan; | ||
| 7 | + | ||
| 8 | +public class ComparableChild implements Comparator<ChildTaskPlan>{ | ||
| 9 | + | ||
| 10 | + @Override | ||
| 11 | + public int compare(ChildTaskPlan o1, ChildTaskPlan o2) { | ||
| 12 | + // TODO Auto-generated method stub | ||
| 13 | + return o1.getStartDate().compareTo(o2.getStartDate()); | ||
| 14 | + } | ||
| 15 | + | ||
| 16 | +} |
src/main/resources/datatools/ktrs/carsDataInput.ktr
| @@ -84,27 +84,6 @@ | @@ -84,27 +84,6 @@ | ||
| 84 | <is_key_private>N</is_key_private> | 84 | <is_key_private>N</is_key_private> |
| 85 | </info> | 85 | </info> |
| 86 | <notepads> | 86 | <notepads> |
| 87 | - <notepad> | ||
| 88 | - <note>原系统的导出表,有些数据是没有的,有些数据也有问题,如下
报废日期去掉
车辆编码,暂时用1代替
是否电车 没有
车辆序号 没有
是否切换 没有
线路名称(这里不做关联,只是登记的时候使用) 咩有

字典
是与否truefalseType 是 1
是与否truefalseType 否 0


供应商名称snames 巴士拓华 1
供应商名称snames 博康 2

营运状态yyztType 营运 1
营运状态yyztType 停运 2
营运状态yyztType 挂失 3
营运状态yyztType 迁出(过户) 4
营运状态yyztType 迁出(转籍) 5
营运状态yyztType 报废 6
营运状态yyztType 歇业 7
营运状态yyztType 注销 8
营运状态yyztType 测试 9
营运状态yyztType 其他 10

机动车类型jdcType 非机动车 1
机动车类型jdcType 机动一队 2
机动车类型jdcType 机动二队 3
机动车类型jdcType 机动三队 4
机动车类型jdcType 备车 5
机动车类型jdcType 抢修车 6

车辆类型carType 营运车 1
车辆类型carType 包车 2
车辆类型carType 学校班车 3
车辆类型carType 公司班车 4
车辆类型carType 待报废车 5
车辆类型carType 备车 6
车辆类型carType 测试设备 7



</note> | ||
| 89 | - <xloc>45</xloc> | ||
| 90 | - <yloc>254</yloc> | ||
| 91 | - <width>346</width> | ||
| 92 | - <heigth>730</heigth> | ||
| 93 | - <fontname>YaHei Consolas Hybrid</fontname> | ||
| 94 | - <fontsize>12</fontsize> | ||
| 95 | - <fontbold>N</fontbold> | ||
| 96 | - <fontitalic>N</fontitalic> | ||
| 97 | - <fontcolorred>0</fontcolorred> | ||
| 98 | - <fontcolorgreen>0</fontcolorgreen> | ||
| 99 | - <fontcolorblue>0</fontcolorblue> | ||
| 100 | - <backgroundcolorred>255</backgroundcolorred> | ||
| 101 | - <backgroundcolorgreen>205</backgroundcolorgreen> | ||
| 102 | - <backgroundcolorblue>112</backgroundcolorblue> | ||
| 103 | - <bordercolorred>100</bordercolorred> | ||
| 104 | - <bordercolorgreen>100</bordercolorgreen> | ||
| 105 | - <bordercolorblue>100</bordercolorblue> | ||
| 106 | - <drawshadow>Y</drawshadow> | ||
| 107 | - </notepad> | ||
| 108 | </notepads> | 87 | </notepads> |
| 109 | <connection> | 88 | <connection> |
| 110 | <name>bus_control_variable</name> | 89 | <name>bus_control_variable</name> |
| @@ -268,98 +247,11 @@ | @@ -268,98 +247,11 @@ | ||
| 268 | </attributes> | 247 | </attributes> |
| 269 | </connection> | 248 | </connection> |
| 270 | <order> | 249 | <order> |
| 271 | - <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 272 | - <hop> <from>字段选择</from><to>是否空调车</to><enabled>Y</enabled> </hop> | ||
| 273 | - <hop> <from>是否有LED服务屏</from><to>是否有TV视频</to><enabled>Y</enabled> </hop> | ||
| 274 | - <hop> <from>是否有TV视频</from><to>是否的变成数字型</to><enabled>Y</enabled> </hop> | ||
| 275 | - <hop> <from>是否空调车</from><to>有无人售票</to><enabled>Y</enabled> </hop> | ||
| 276 | - <hop> <from>有无人售票</from><to>是否有LED服务屏</to><enabled>Y</enabled> </hop> | ||
| 277 | <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | 250 | <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> |
| 278 | - <hop> <from>供应商名称</from><to>营运状态</to><enabled>Y</enabled> </hop> | ||
| 279 | <hop> <from>插入/更新bsth_c_cars 2</from><to>错误输出 2</to><enabled>Y</enabled> </hop> | 251 | <hop> <from>插入/更新bsth_c_cars 2</from><to>错误输出 2</to><enabled>Y</enabled> </hop> |
| 280 | - <hop> <from>机动车类型</from><to>车辆类型</to><enabled>Y</enabled> </hop> | ||
| 281 | - <hop> <from>营运状态</from><to>机动车类型</to><enabled>Y</enabled> </hop> | ||
| 282 | - <hop> <from>车辆类型</from><to>车辆编码</to><enabled>Y</enabled> </hop> | ||
| 283 | - <hop> <from>车辆编码</from><to>插入/更新bsth_c_cars 2</to><enabled>Y</enabled> </hop> | ||
| 284 | - <hop> <from>是否的变成数字型</from><to>公交企业代码查询</to><enabled>Y</enabled> </hop> | ||
| 285 | - <hop> <from>公交企业代码查询</from><to>供应商名称</to><enabled>Y</enabled> </hop> | ||
| 286 | - <hop> <from>是否的变成数字型</from><to>错误输出 2 2</to><enabled>Y</enabled> </hop> | 252 | + <hop> <from>原始系统导出的Excel输入</from><to>插入/更新bsth_c_cars 2</to><enabled>Y</enabled> </hop> |
| 287 | </order> | 253 | </order> |
| 288 | <step> | 254 | <step> |
| 289 | - <name>供应商名称</name> | ||
| 290 | - <type>ValueMapper</type> | ||
| 291 | - <description/> | ||
| 292 | - <distribute>Y</distribute> | ||
| 293 | - <custom_distribution/> | ||
| 294 | - <copies>1</copies> | ||
| 295 | - <partitioning> | ||
| 296 | - <method>none</method> | ||
| 297 | - <schema_name/> | ||
| 298 | - </partitioning> | ||
| 299 | - <field_to_use>supplierName</field_to_use> | ||
| 300 | - <target_field/> | ||
| 301 | - <non_match_default/> | ||
| 302 | - <fields> | ||
| 303 | - <field> | ||
| 304 | - <source_value>巴士拓华</source_value> | ||
| 305 | - <target_value>1</target_value> | ||
| 306 | - </field> | ||
| 307 | - <field> | ||
| 308 | - <source_value>博康</source_value> | ||
| 309 | - <target_value>2</target_value> | ||
| 310 | - </field> | ||
| 311 | - </fields> | ||
| 312 | - <cluster_schema/> | ||
| 313 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 314 | - <xloc>709</xloc> | ||
| 315 | - <yloc>172</yloc> | ||
| 316 | - <draw>Y</draw> | ||
| 317 | - </GUI> | ||
| 318 | - </step> | ||
| 319 | - | ||
| 320 | - <step> | ||
| 321 | - <name>公交企业代码查询</name> | ||
| 322 | - <type>DBLookup</type> | ||
| 323 | - <description/> | ||
| 324 | - <distribute>Y</distribute> | ||
| 325 | - <custom_distribution/> | ||
| 326 | - <copies>1</copies> | ||
| 327 | - <partitioning> | ||
| 328 | - <method>none</method> | ||
| 329 | - <schema_name/> | ||
| 330 | - </partitioning> | ||
| 331 | - <connection>bus_control_variable</connection> | ||
| 332 | - <cache>N</cache> | ||
| 333 | - <cache_load_all>N</cache_load_all> | ||
| 334 | - <cache_size>0</cache_size> | ||
| 335 | - <lookup> | ||
| 336 | - <schema/> | ||
| 337 | - <table>bsth_c_business</table> | ||
| 338 | - <orderby/> | ||
| 339 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 340 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 341 | - <key> | ||
| 342 | - <name>company</name> | ||
| 343 | - <field>business_name</field> | ||
| 344 | - <condition>=</condition> | ||
| 345 | - <name2/> | ||
| 346 | - </key> | ||
| 347 | - <value> | ||
| 348 | - <name>business_code</name> | ||
| 349 | - <rename>businessCode</rename> | ||
| 350 | - <default/> | ||
| 351 | - <type>String</type> | ||
| 352 | - </value> | ||
| 353 | - </lookup> | ||
| 354 | - <cluster_schema/> | ||
| 355 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 356 | - <xloc>839</xloc> | ||
| 357 | - <yloc>169</yloc> | ||
| 358 | - <draw>Y</draw> | ||
| 359 | - </GUI> | ||
| 360 | - </step> | ||
| 361 | - | ||
| 362 | - <step> | ||
| 363 | <name>原始系统导出的Excel输入</name> | 255 | <name>原始系统导出的Excel输入</name> |
| 364 | <type>ExcelInput</type> | 256 | <type>ExcelInput</type> |
| 365 | <description/> | 257 | <description/> |
| @@ -418,7 +310,7 @@ | @@ -418,7 +310,7 @@ | ||
| 418 | <group/> | 310 | <group/> |
| 419 | </field> | 311 | </field> |
| 420 | <field> | 312 | <field> |
| 421 | - <name>车辆编码</name> | 313 | + <name>所属公司</name> |
| 422 | <type>String</type> | 314 | <type>String</type> |
| 423 | <length>-1</length> | 315 | <length>-1</length> |
| 424 | <precision>-1</precision> | 316 | <precision>-1</precision> |
| @@ -430,7 +322,7 @@ | @@ -430,7 +322,7 @@ | ||
| 430 | <group/> | 322 | <group/> |
| 431 | </field> | 323 | </field> |
| 432 | <field> | 324 | <field> |
| 433 | - <name>车型类别</name> | 325 | + <name>所属公司代码</name> |
| 434 | <type>String</type> | 326 | <type>String</type> |
| 435 | <length>-1</length> | 327 | <length>-1</length> |
| 436 | <precision>-1</precision> | 328 | <precision>-1</precision> |
| @@ -442,7 +334,7 @@ | @@ -442,7 +334,7 @@ | ||
| 442 | <group/> | 334 | <group/> |
| 443 | </field> | 335 | </field> |
| 444 | <field> | 336 | <field> |
| 445 | - <name>座位数</name> | 337 | + <name>所属分公司</name> |
| 446 | <type>String</type> | 338 | <type>String</type> |
| 447 | <length>-1</length> | 339 | <length>-1</length> |
| 448 | <precision>-1</precision> | 340 | <precision>-1</precision> |
| @@ -454,7 +346,7 @@ | @@ -454,7 +346,7 @@ | ||
| 454 | <group/> | 346 | <group/> |
| 455 | </field> | 347 | </field> |
| 456 | <field> | 348 | <field> |
| 457 | - <name>载客标准</name> | 349 | + <name>所属分公司代码</name> |
| 458 | <type>String</type> | 350 | <type>String</type> |
| 459 | <length>-1</length> | 351 | <length>-1</length> |
| 460 | <precision>-1</precision> | 352 | <precision>-1</precision> |
| @@ -466,7 +358,7 @@ | @@ -466,7 +358,7 @@ | ||
| 466 | <group/> | 358 | <group/> |
| 467 | </field> | 359 | </field> |
| 468 | <field> | 360 | <field> |
| 469 | - <name>技术速度</name> | 361 | + <name>供应商名称</name> |
| 470 | <type>String</type> | 362 | <type>String</type> |
| 471 | <length>-1</length> | 363 | <length>-1</length> |
| 472 | <precision>-1</precision> | 364 | <precision>-1</precision> |
| @@ -478,7 +370,7 @@ | @@ -478,7 +370,7 @@ | ||
| 478 | <group/> | 370 | <group/> |
| 479 | </field> | 371 | </field> |
| 480 | <field> | 372 | <field> |
| 481 | - <name>是否空调</name> | 373 | + <name>设备终端号</name> |
| 482 | <type>String</type> | 374 | <type>String</type> |
| 483 | <length>-1</length> | 375 | <length>-1</length> |
| 484 | <precision>-1</precision> | 376 | <precision>-1</precision> |
| @@ -489,1644 +381,246 @@ | @@ -489,1644 +381,246 @@ | ||
| 489 | <decimal/> | 381 | <decimal/> |
| 490 | <group/> | 382 | <group/> |
| 491 | </field> | 383 | </field> |
| 384 | + </fields> | ||
| 385 | + <sheets> | ||
| 386 | + <sheet> | ||
| 387 | + <name>工作表1</name> | ||
| 388 | + <startrow>0</startrow> | ||
| 389 | + <startcol>0</startcol> | ||
| 390 | + </sheet> | ||
| 391 | + </sheets> | ||
| 392 | + <strict_types>N</strict_types> | ||
| 393 | + <error_ignored>N</error_ignored> | ||
| 394 | + <error_line_skipped>N</error_line_skipped> | ||
| 395 | + <bad_line_files_destination_directory/> | ||
| 396 | + <bad_line_files_extension>warning</bad_line_files_extension> | ||
| 397 | + <error_line_files_destination_directory/> | ||
| 398 | + <error_line_files_extension>error</error_line_files_extension> | ||
| 399 | + <line_number_files_destination_directory/> | ||
| 400 | + <line_number_files_extension>line</line_number_files_extension> | ||
| 401 | + <shortFileFieldName/> | ||
| 402 | + <pathFieldName/> | ||
| 403 | + <hiddenFieldName/> | ||
| 404 | + <lastModificationTimeFieldName/> | ||
| 405 | + <uriNameFieldName/> | ||
| 406 | + <rootUriNameFieldName/> | ||
| 407 | + <extensionFieldName/> | ||
| 408 | + <sizeFieldName/> | ||
| 409 | + <spreadsheet_type>JXL</spreadsheet_type> | ||
| 410 | + <cluster_schema/> | ||
| 411 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 412 | + <xloc>131</xloc> | ||
| 413 | + <yloc>58</yloc> | ||
| 414 | + <draw>Y</draw> | ||
| 415 | + </GUI> | ||
| 416 | + </step> | ||
| 417 | + | ||
| 418 | + <step> | ||
| 419 | + <name>插入/更新bsth_c_cars 2</name> | ||
| 420 | + <type>InsertUpdate</type> | ||
| 421 | + <description/> | ||
| 422 | + <distribute>Y</distribute> | ||
| 423 | + <custom_distribution/> | ||
| 424 | + <copies>1</copies> | ||
| 425 | + <partitioning> | ||
| 426 | + <method>none</method> | ||
| 427 | + <schema_name/> | ||
| 428 | + </partitioning> | ||
| 429 | + <connection>bus_control_variable</connection> | ||
| 430 | + <commit>1000</commit> | ||
| 431 | + <update_bypassed>N</update_bypassed> | ||
| 432 | + <lookup> | ||
| 433 | + <schema/> | ||
| 434 | + <table>bsth_c_cars</table> | ||
| 435 | + <key> | ||
| 436 | + <name>所属公司代码</name> | ||
| 437 | + <field>business_code</field> | ||
| 438 | + <condition>=</condition> | ||
| 439 | + <name2/> | ||
| 440 | + </key> | ||
| 441 | + <key> | ||
| 442 | + <name>内部编码</name> | ||
| 443 | + <field>inside_code</field> | ||
| 444 | + <condition>=</condition> | ||
| 445 | + <name2/> | ||
| 446 | + </key> | ||
| 447 | + <value> | ||
| 448 | + <name>car_gride</name> | ||
| 449 | + <rename>车牌号</rename> | ||
| 450 | + <update>Y</update> | ||
| 451 | + </value> | ||
| 452 | + <value> | ||
| 453 | + <name>inside_code</name> | ||
| 454 | + <rename>内部编码</rename> | ||
| 455 | + <update>Y</update> | ||
| 456 | + </value> | ||
| 457 | + <value> | ||
| 458 | + <name>car_code</name> | ||
| 459 | + <rename>内部编码</rename> | ||
| 460 | + <update>Y</update> | ||
| 461 | + </value> | ||
| 462 | + <value> | ||
| 463 | + <name>company</name> | ||
| 464 | + <rename>所属公司</rename> | ||
| 465 | + <update>Y</update> | ||
| 466 | + </value> | ||
| 467 | + <value> | ||
| 468 | + <name>business_code</name> | ||
| 469 | + <rename>所属公司代码</rename> | ||
| 470 | + <update>Y</update> | ||
| 471 | + </value> | ||
| 472 | + <value> | ||
| 473 | + <name>branche_company</name> | ||
| 474 | + <rename>所属分公司</rename> | ||
| 475 | + <update>Y</update> | ||
| 476 | + </value> | ||
| 477 | + <value> | ||
| 478 | + <name>branche_company_code</name> | ||
| 479 | + <rename>所属分公司代码</rename> | ||
| 480 | + <update>Y</update> | ||
| 481 | + </value> | ||
| 482 | + <value> | ||
| 483 | + <name>supplier_name</name> | ||
| 484 | + <rename>供应商名称</rename> | ||
| 485 | + <update>Y</update> | ||
| 486 | + </value> | ||
| 487 | + <value> | ||
| 488 | + <name>equipment_code</name> | ||
| 489 | + <rename>设备终端号</rename> | ||
| 490 | + <update>Y</update> | ||
| 491 | + </value> | ||
| 492 | + </lookup> | ||
| 493 | + <cluster_schema/> | ||
| 494 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 495 | + <xloc>516</xloc> | ||
| 496 | + <yloc>138</yloc> | ||
| 497 | + <draw>Y</draw> | ||
| 498 | + </GUI> | ||
| 499 | + </step> | ||
| 500 | + | ||
| 501 | + <step> | ||
| 502 | + <name>获取变量</name> | ||
| 503 | + <type>GetVariable</type> | ||
| 504 | + <description/> | ||
| 505 | + <distribute>Y</distribute> | ||
| 506 | + <custom_distribution/> | ||
| 507 | + <copies>1</copies> | ||
| 508 | + <partitioning> | ||
| 509 | + <method>none</method> | ||
| 510 | + <schema_name/> | ||
| 511 | + </partitioning> | ||
| 512 | + <fields> | ||
| 492 | <field> | 513 | <field> |
| 493 | - <name>标准油耗(开空调)</name> | 514 | + <name>filepath_</name> |
| 515 | + <variable>${filepath}</variable> | ||
| 494 | <type>String</type> | 516 | <type>String</type> |
| 495 | - <length>-1</length> | ||
| 496 | - <precision>-1</precision> | ||
| 497 | - <trim_type>none</trim_type> | ||
| 498 | - <repeat>N</repeat> | ||
| 499 | <format/> | 517 | <format/> |
| 500 | <currency/> | 518 | <currency/> |
| 501 | <decimal/> | 519 | <decimal/> |
| 502 | <group/> | 520 | <group/> |
| 503 | - </field> | ||
| 504 | - <field> | ||
| 505 | - <name>标准油耗(关空调)</name> | ||
| 506 | - <type>String</type> | ||
| 507 | <length>-1</length> | 521 | <length>-1</length> |
| 508 | <precision>-1</precision> | 522 | <precision>-1</precision> |
| 509 | <trim_type>none</trim_type> | 523 | <trim_type>none</trim_type> |
| 510 | - <repeat>N</repeat> | ||
| 511 | - <format/> | ||
| 512 | - <currency/> | ||
| 513 | - <decimal/> | ||
| 514 | - <group/> | ||
| 515 | </field> | 524 | </field> |
| 516 | <field> | 525 | <field> |
| 517 | - <name>有无人售票</name> | 526 | + <name>erroroutputdir_</name> |
| 527 | + <variable>${erroroutputdir}</variable> | ||
| 518 | <type>String</type> | 528 | <type>String</type> |
| 519 | - <length>-1</length> | ||
| 520 | - <precision>-1</precision> | ||
| 521 | - <trim_type>none</trim_type> | ||
| 522 | - <repeat>N</repeat> | ||
| 523 | <format/> | 529 | <format/> |
| 524 | <currency/> | 530 | <currency/> |
| 525 | <decimal/> | 531 | <decimal/> |
| 526 | <group/> | 532 | <group/> |
| 527 | - </field> | ||
| 528 | - <field> | ||
| 529 | - <name>是否有TV视频</name> | ||
| 530 | - <type>String</type> | ||
| 531 | <length>-1</length> | 533 | <length>-1</length> |
| 532 | <precision>-1</precision> | 534 | <precision>-1</precision> |
| 533 | <trim_type>none</trim_type> | 535 | <trim_type>none</trim_type> |
| 534 | - <repeat>N</repeat> | 536 | + </field> |
| 537 | + </fields> | ||
| 538 | + <cluster_schema/> | ||
| 539 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 540 | + <xloc>134</xloc> | ||
| 541 | + <yloc>183</yloc> | ||
| 542 | + <draw>Y</draw> | ||
| 543 | + </GUI> | ||
| 544 | + </step> | ||
| 545 | + | ||
| 546 | + <step> | ||
| 547 | + <name>错误输出 2</name> | ||
| 548 | + <type>ExcelOutput</type> | ||
| 549 | + <description/> | ||
| 550 | + <distribute>Y</distribute> | ||
| 551 | + <custom_distribution/> | ||
| 552 | + <copies>1</copies> | ||
| 553 | + <partitioning> | ||
| 554 | + <method>none</method> | ||
| 555 | + <schema_name/> | ||
| 556 | + </partitioning> | ||
| 557 | + <header>Y</header> | ||
| 558 | + <footer>N</footer> | ||
| 559 | + <encoding/> | ||
| 560 | + <append>N</append> | ||
| 561 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 562 | + <file> | ||
| 563 | + <name>${erroroutputdir}/车辆基础信息_错误</name> | ||
| 564 | + <extention>xls</extention> | ||
| 565 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 566 | + <create_parent_folder>N</create_parent_folder> | ||
| 567 | + <split>N</split> | ||
| 568 | + <add_date>N</add_date> | ||
| 569 | + <add_time>N</add_time> | ||
| 570 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 571 | + <date_time_format/> | ||
| 572 | + <sheetname>Sheet1</sheetname> | ||
| 573 | + <autosizecolums>N</autosizecolums> | ||
| 574 | + <nullisblank>N</nullisblank> | ||
| 575 | + <protect_sheet>N</protect_sheet> | ||
| 576 | + <password>Encrypted </password> | ||
| 577 | + <splitevery>0</splitevery> | ||
| 578 | + <usetempfiles>N</usetempfiles> | ||
| 579 | + <tempdirectory/> | ||
| 580 | + </file> | ||
| 581 | + <template> | ||
| 582 | + <enabled>N</enabled> | ||
| 583 | + <append>N</append> | ||
| 584 | + <filename>template.xls</filename> | ||
| 585 | + </template> | ||
| 586 | + <fields> | ||
| 587 | + <field> | ||
| 588 | + <name>车牌号</name> | ||
| 589 | + <type>String</type> | ||
| 535 | <format/> | 590 | <format/> |
| 536 | - <currency/> | ||
| 537 | - <decimal/> | ||
| 538 | - <group/> | ||
| 539 | </field> | 591 | </field> |
| 540 | <field> | 592 | <field> |
| 541 | - <name>是否有LED服务屏</name> | 593 | + <name>内部编码</name> |
| 542 | <type>String</type> | 594 | <type>String</type> |
| 543 | - <length>-1</length> | ||
| 544 | - <precision>-1</precision> | ||
| 545 | - <trim_type>none</trim_type> | ||
| 546 | - <repeat>N</repeat> | ||
| 547 | <format/> | 595 | <format/> |
| 548 | - <currency/> | ||
| 549 | - <decimal/> | ||
| 550 | - <group/> | ||
| 551 | </field> | 596 | </field> |
| 552 | <field> | 597 | <field> |
| 553 | - <name>运营状态</name> | ||
| 554 | - <type>String</type> | ||
| 555 | - <length>-1</length> | ||
| 556 | - <precision>-1</precision> | ||
| 557 | - <trim_type>none</trim_type> | ||
| 558 | - <repeat>N</repeat> | ||
| 559 | - <format/> | ||
| 560 | - <currency/> | ||
| 561 | - <decimal/> | ||
| 562 | - <group/> | ||
| 563 | - </field> | ||
| 564 | - <field> | ||
| 565 | - <name>启用日期</name> | ||
| 566 | - <type>String</type> | ||
| 567 | - <length>-1</length> | ||
| 568 | - <precision>-1</precision> | ||
| 569 | - <trim_type>none</trim_type> | ||
| 570 | - <repeat>N</repeat> | ||
| 571 | - <format/> | ||
| 572 | - <currency/> | ||
| 573 | - <decimal/> | ||
| 574 | - <group/> | ||
| 575 | - </field> | ||
| 576 | - <field> | ||
| 577 | - <name>取消日期</name> | ||
| 578 | - <type>String</type> | ||
| 579 | - <length>-1</length> | ||
| 580 | - <precision>-1</precision> | ||
| 581 | - <trim_type>none</trim_type> | ||
| 582 | - <repeat>N</repeat> | ||
| 583 | - <format/> | ||
| 584 | - <currency/> | ||
| 585 | - <decimal/> | ||
| 586 | - <group/> | ||
| 587 | - </field> | ||
| 588 | - <field> | ||
| 589 | - <name>报废号</name> | ||
| 590 | - <type>String</type> | ||
| 591 | - <length>-1</length> | ||
| 592 | - <precision>-1</precision> | ||
| 593 | - <trim_type>none</trim_type> | ||
| 594 | - <repeat>N</repeat> | ||
| 595 | - <format/> | ||
| 596 | - <currency/> | ||
| 597 | - <decimal/> | ||
| 598 | - <group/> | ||
| 599 | - </field> | ||
| 600 | - <field> | ||
| 601 | - <name>报废日期</name> | ||
| 602 | - <type>String</type> | ||
| 603 | - <length>-1</length> | ||
| 604 | - <precision>-1</precision> | ||
| 605 | - <trim_type>none</trim_type> | ||
| 606 | - <repeat>N</repeat> | ||
| 607 | - <format/> | ||
| 608 | - <currency/> | ||
| 609 | - <decimal/> | ||
| 610 | - <group/> | ||
| 611 | - </field> | ||
| 612 | - <field> | ||
| 613 | - <name>备注</name> | ||
| 614 | - <type>String</type> | ||
| 615 | - <length>-1</length> | ||
| 616 | - <precision>-1</precision> | ||
| 617 | - <trim_type>none</trim_type> | ||
| 618 | - <repeat>N</repeat> | ||
| 619 | - <format/> | ||
| 620 | - <currency/> | ||
| 621 | - <decimal/> | ||
| 622 | - <group/> | ||
| 623 | - </field> | ||
| 624 | - <field> | ||
| 625 | - <name>设备编号</name> | ||
| 626 | - <type>String</type> | ||
| 627 | - <length>-1</length> | ||
| 628 | - <precision>-1</precision> | ||
| 629 | - <trim_type>none</trim_type> | ||
| 630 | - <repeat>N</repeat> | ||
| 631 | - <format/> | ||
| 632 | - <currency/> | ||
| 633 | - <decimal/> | ||
| 634 | - <group/> | ||
| 635 | - </field> | ||
| 636 | - <field> | ||
| 637 | - <name>厂牌型号</name> | ||
| 638 | - <type>String</type> | ||
| 639 | - <length>-1</length> | ||
| 640 | - <precision>-1</precision> | ||
| 641 | - <trim_type>none</trim_type> | ||
| 642 | - <repeat>N</repeat> | ||
| 643 | - <format/> | ||
| 644 | - <currency/> | ||
| 645 | - <decimal/> | ||
| 646 | - <group/> | ||
| 647 | - </field> | ||
| 648 | - <field> | ||
| 649 | - <name>厂牌型号2</name> | ||
| 650 | - <type>String</type> | ||
| 651 | - <length>-1</length> | ||
| 652 | - <precision>-1</precision> | ||
| 653 | - <trim_type>none</trim_type> | ||
| 654 | - <repeat>N</repeat> | ||
| 655 | - <format/> | ||
| 656 | - <currency/> | ||
| 657 | - <decimal/> | ||
| 658 | - <group/> | ||
| 659 | - </field> | ||
| 660 | - <field> | ||
| 661 | - <name>车辆等级标准</name> | ||
| 662 | - <type>String</type> | ||
| 663 | - <length>-1</length> | ||
| 664 | - <precision>-1</precision> | ||
| 665 | - <trim_type>none</trim_type> | ||
| 666 | - <repeat>N</repeat> | ||
| 667 | - <format/> | ||
| 668 | - <currency/> | ||
| 669 | - <decimal/> | ||
| 670 | - <group/> | ||
| 671 | - </field> | ||
| 672 | - <field> | ||
| 673 | - <name>出厂排放标准</name> | ||
| 674 | - <type>String</type> | ||
| 675 | - <length>-1</length> | ||
| 676 | - <precision>-1</precision> | ||
| 677 | - <trim_type>none</trim_type> | ||
| 678 | - <repeat>N</repeat> | ||
| 679 | - <format/> | ||
| 680 | - <currency/> | ||
| 681 | - <decimal/> | ||
| 682 | - <group/> | ||
| 683 | - </field> | ||
| 684 | - <field> | ||
| 685 | - <name>发动机号码1</name> | ||
| 686 | - <type>String</type> | ||
| 687 | - <length>-1</length> | ||
| 688 | - <precision>-1</precision> | ||
| 689 | - <trim_type>none</trim_type> | ||
| 690 | - <repeat>N</repeat> | ||
| 691 | - <format/> | ||
| 692 | - <currency/> | ||
| 693 | - <decimal/> | ||
| 694 | - <group/> | ||
| 695 | - </field> | ||
| 696 | - <field> | ||
| 697 | - <name>发动机号码2</name> | ||
| 698 | - <type>String</type> | ||
| 699 | - <length>-1</length> | ||
| 700 | - <precision>-1</precision> | ||
| 701 | - <trim_type>none</trim_type> | ||
| 702 | - <repeat>N</repeat> | ||
| 703 | - <format/> | ||
| 704 | - <currency/> | ||
| 705 | - <decimal/> | ||
| 706 | - <group/> | ||
| 707 | - </field> | ||
| 708 | - <field> | ||
| 709 | - <name>车架号码1</name> | ||
| 710 | - <type>String</type> | ||
| 711 | - <length>-1</length> | ||
| 712 | - <precision>-1</precision> | ||
| 713 | - <trim_type>none</trim_type> | ||
| 714 | - <repeat>N</repeat> | ||
| 715 | - <format/> | ||
| 716 | - <currency/> | ||
| 717 | - <decimal/> | ||
| 718 | - <group/> | ||
| 719 | - </field> | ||
| 720 | - <field> | ||
| 721 | - <name>车架号码2</name> | ||
| 722 | - <type>String</type> | ||
| 723 | - <length>-1</length> | ||
| 724 | - <precision>-1</precision> | ||
| 725 | - <trim_type>none</trim_type> | ||
| 726 | - <repeat>N</repeat> | ||
| 727 | - <format/> | ||
| 728 | - <currency/> | ||
| 729 | - <decimal/> | ||
| 730 | - <group/> | ||
| 731 | - </field> | ||
| 732 | - <field> | ||
| 733 | - <name>车辆类型</name> | ||
| 734 | - <type>String</type> | ||
| 735 | - <length>-1</length> | ||
| 736 | - <precision>-1</precision> | ||
| 737 | - <trim_type>none</trim_type> | ||
| 738 | - <repeat>N</repeat> | ||
| 739 | - <format/> | ||
| 740 | - <currency/> | ||
| 741 | - <decimal/> | ||
| 742 | - <group/> | ||
| 743 | - </field> | ||
| 744 | - <field> | ||
| 745 | - <name>所属公司</name> | ||
| 746 | - <type>String</type> | ||
| 747 | - <length>-1</length> | ||
| 748 | - <precision>-1</precision> | ||
| 749 | - <trim_type>none</trim_type> | ||
| 750 | - <repeat>N</repeat> | ||
| 751 | - <format/> | ||
| 752 | - <currency/> | ||
| 753 | - <decimal/> | ||
| 754 | - <group/> | ||
| 755 | - </field> | ||
| 756 | - <field> | ||
| 757 | - <name>修改日期</name> | ||
| 758 | - <type>String</type> | ||
| 759 | - <length>-1</length> | ||
| 760 | - <precision>-1</precision> | ||
| 761 | - <trim_type>none</trim_type> | ||
| 762 | - <repeat>N</repeat> | ||
| 763 | - <format/> | ||
| 764 | - <currency/> | ||
| 765 | - <decimal/> | ||
| 766 | - <group/> | ||
| 767 | - </field> | ||
| 768 | - <field> | ||
| 769 | - <name>是否机动车</name> | ||
| 770 | - <type>String</type> | ||
| 771 | - <length>-1</length> | ||
| 772 | - <precision>-1</precision> | ||
| 773 | - <trim_type>none</trim_type> | ||
| 774 | - <repeat>N</repeat> | ||
| 775 | - <format/> | ||
| 776 | - <currency/> | ||
| 777 | - <decimal/> | ||
| 778 | - <group/> | ||
| 779 | - </field> | ||
| 780 | - <field> | ||
| 781 | - <name>视频编号</name> | ||
| 782 | - <type>String</type> | ||
| 783 | - <length>-1</length> | ||
| 784 | - <precision>-1</precision> | ||
| 785 | - <trim_type>none</trim_type> | ||
| 786 | - <repeat>N</repeat> | ||
| 787 | - <format/> | ||
| 788 | - <currency/> | ||
| 789 | - <decimal/> | ||
| 790 | - <group/> | ||
| 791 | - </field> | ||
| 792 | - <field> | ||
| 793 | - <name>设备供应厂商</name> | ||
| 794 | - <type>String</type> | ||
| 795 | - <length>-1</length> | ||
| 796 | - <precision>-1</precision> | ||
| 797 | - <trim_type>none</trim_type> | ||
| 798 | - <repeat>N</repeat> | ||
| 799 | - <format/> | ||
| 800 | - <currency/> | ||
| 801 | - <decimal/> | ||
| 802 | - <group/> | ||
| 803 | - </field> | ||
| 804 | - <field> | ||
| 805 | - <name>分公司</name> | ||
| 806 | - <type>String</type> | ||
| 807 | - <length>-1</length> | ||
| 808 | - <precision>-1</precision> | ||
| 809 | - <trim_type>none</trim_type> | ||
| 810 | - <repeat>N</repeat> | ||
| 811 | - <format/> | ||
| 812 | - <currency/> | ||
| 813 | - <decimal/> | ||
| 814 | - <group/> | ||
| 815 | - </field> | ||
| 816 | - </fields> | ||
| 817 | - <sheets> | ||
| 818 | - <sheet> | ||
| 819 | - <name>工作表1</name> | ||
| 820 | - <startrow>0</startrow> | ||
| 821 | - <startcol>0</startcol> | ||
| 822 | - </sheet> | ||
| 823 | - </sheets> | ||
| 824 | - <strict_types>N</strict_types> | ||
| 825 | - <error_ignored>N</error_ignored> | ||
| 826 | - <error_line_skipped>N</error_line_skipped> | ||
| 827 | - <bad_line_files_destination_directory/> | ||
| 828 | - <bad_line_files_extension>warning</bad_line_files_extension> | ||
| 829 | - <error_line_files_destination_directory/> | ||
| 830 | - <error_line_files_extension>error</error_line_files_extension> | ||
| 831 | - <line_number_files_destination_directory/> | ||
| 832 | - <line_number_files_extension>line</line_number_files_extension> | ||
| 833 | - <shortFileFieldName/> | ||
| 834 | - <pathFieldName/> | ||
| 835 | - <hiddenFieldName/> | ||
| 836 | - <lastModificationTimeFieldName/> | ||
| 837 | - <uriNameFieldName/> | ||
| 838 | - <rootUriNameFieldName/> | ||
| 839 | - <extensionFieldName/> | ||
| 840 | - <sizeFieldName/> | ||
| 841 | - <spreadsheet_type>JXL</spreadsheet_type> | ||
| 842 | - <cluster_schema/> | ||
| 843 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 844 | - <xloc>131</xloc> | ||
| 845 | - <yloc>58</yloc> | ||
| 846 | - <draw>Y</draw> | ||
| 847 | - </GUI> | ||
| 848 | - </step> | ||
| 849 | - | ||
| 850 | - <step> | ||
| 851 | - <name>字段选择</name> | ||
| 852 | - <type>SelectValues</type> | ||
| 853 | - <description/> | ||
| 854 | - <distribute>Y</distribute> | ||
| 855 | - <custom_distribution/> | ||
| 856 | - <copies>1</copies> | ||
| 857 | - <partitioning> | ||
| 858 | - <method>none</method> | ||
| 859 | - <schema_name/> | ||
| 860 | - </partitioning> | ||
| 861 | - <fields> <field> <name>内部编码</name> | ||
| 862 | - <rename>insideCode</rename> | ||
| 863 | - <length>-2</length> | ||
| 864 | - <precision>-2</precision> | ||
| 865 | - </field> <field> <name>车辆编码</name> | ||
| 866 | - <rename>carCode</rename> | ||
| 867 | - <length>-2</length> | ||
| 868 | - <precision>-2</precision> | ||
| 869 | - </field> <field> <name>所属公司</name> | ||
| 870 | - <rename>company</rename> | ||
| 871 | - <length>-2</length> | ||
| 872 | - <precision>-2</precision> | ||
| 873 | - </field> <field> <name>分公司</name> | ||
| 874 | - <rename>brancheCompany</rename> | ||
| 875 | - <length>-2</length> | ||
| 876 | - <precision>-2</precision> | ||
| 877 | - </field> <field> <name>车牌号</name> | ||
| 878 | - <rename>carPlate</rename> | ||
| 879 | - <length>-2</length> | ||
| 880 | - <precision>-2</precision> | ||
| 881 | - </field> <field> <name>设备供应厂商</name> | ||
| 882 | - <rename>supplierName</rename> | ||
| 883 | - <length>-2</length> | ||
| 884 | - <precision>-2</precision> | ||
| 885 | - </field> <field> <name>设备编号</name> | ||
| 886 | - <rename>equipmentCode</rename> | ||
| 887 | - <length>-2</length> | ||
| 888 | - <precision>-2</precision> | ||
| 889 | - </field> <field> <name>车型类别</name> | ||
| 890 | - <rename>carClass</rename> | ||
| 891 | - <length>-2</length> | ||
| 892 | - <precision>-2</precision> | ||
| 893 | - </field> <field> <name>技术速度</name> | ||
| 894 | - <rename>speed</rename> | ||
| 895 | - <length>-2</length> | ||
| 896 | - <precision>-2</precision> | ||
| 897 | - </field> <field> <name>座位数</name> | ||
| 898 | - <rename>carSeatnNumber</rename> | ||
| 899 | - <length>-2</length> | ||
| 900 | - <precision>-2</precision> | ||
| 901 | - </field> <field> <name>载客标准</name> | ||
| 902 | - <rename>carStandard</rename> | ||
| 903 | - <length>-2</length> | ||
| 904 | - <precision>-2</precision> | ||
| 905 | - </field> <field> <name>标准油耗(开空调)</name> | ||
| 906 | - <rename>kburnStandard</rename> | ||
| 907 | - <length>-2</length> | ||
| 908 | - <precision>-2</precision> | ||
| 909 | - </field> <field> <name>标准油耗(关空调)</name> | ||
| 910 | - <rename>gburnStandard</rename> | ||
| 911 | - <length>-2</length> | ||
| 912 | - <precision>-2</precision> | ||
| 913 | - </field> <field> <name>报废号</name> | ||
| 914 | - <rename>scrapCode</rename> | ||
| 915 | - <length>-2</length> | ||
| 916 | - <precision>-2</precision> | ||
| 917 | - </field> <field> <name>厂牌型号</name> | ||
| 918 | - <rename>makeCodeOne</rename> | ||
| 919 | - <length>-2</length> | ||
| 920 | - <precision>-2</precision> | ||
| 921 | - </field> <field> <name>厂牌型号2</name> | ||
| 922 | - <rename>makeCodeTwo</rename> | ||
| 923 | - <length>-2</length> | ||
| 924 | - <precision>-2</precision> | ||
| 925 | - </field> <field> <name>车辆等级标准</name> | ||
| 926 | - <rename>carGride</rename> | ||
| 927 | - <length>-2</length> | ||
| 928 | - <precision>-2</precision> | ||
| 929 | - </field> <field> <name>出厂排放标准</name> | ||
| 930 | - <rename>emissionsStandard</rename> | ||
| 931 | - <length>-2</length> | ||
| 932 | - <precision>-2</precision> | ||
| 933 | - </field> <field> <name>发动机号码1</name> | ||
| 934 | - <rename>engineCodeOne</rename> | ||
| 935 | - <length>-2</length> | ||
| 936 | - <precision>-2</precision> | ||
| 937 | - </field> <field> <name>发动机号码2</name> | ||
| 938 | - <rename>engineCodeTwo</rename> | ||
| 939 | - <length>-2</length> | ||
| 940 | - <precision>-2</precision> | ||
| 941 | - </field> <field> <name>车架号码1</name> | ||
| 942 | - <rename>carNumberOne</rename> | ||
| 943 | - <length>-2</length> | ||
| 944 | - <precision>-2</precision> | ||
| 945 | - </field> <field> <name>车架号码2</name> | ||
| 946 | - <rename>carNumberTwo</rename> | ||
| 947 | - <length>-2</length> | ||
| 948 | - <precision>-2</precision> | ||
| 949 | - </field> <field> <name>启用日期</name> | ||
| 950 | - <rename>openDate</rename> | ||
| 951 | - <length>-2</length> | ||
| 952 | - <precision>-2</precision> | ||
| 953 | - </field> <field> <name>取消日期</name> | ||
| 954 | - <rename>closeDate</rename> | ||
| 955 | - <length>-2</length> | ||
| 956 | - <precision>-2</precision> | ||
| 957 | - </field> <field> <name>是否空调</name> | ||
| 958 | - <rename>hvacCar</rename> | ||
| 959 | - <length>-2</length> | ||
| 960 | - <precision>-2</precision> | ||
| 961 | - </field> <field> <name>有无人售票</name> | ||
| 962 | - <rename>ticketType</rename> | ||
| 963 | - <length>-2</length> | ||
| 964 | - <precision>-2</precision> | ||
| 965 | - </field> <field> <name>是否有LED服务屏</name> | ||
| 966 | - <rename>ledScreen</rename> | ||
| 967 | - <length>-2</length> | ||
| 968 | - <precision>-2</precision> | ||
| 969 | - </field> <field> <name>是否有TV视频</name> | ||
| 970 | - <rename>tvVideoType</rename> | ||
| 971 | - <length>-2</length> | ||
| 972 | - <precision>-2</precision> | ||
| 973 | - </field> <field> <name>车辆类型</name> | ||
| 974 | - <rename>carType</rename> | ||
| 975 | - <length>-2</length> | ||
| 976 | - <precision>-2</precision> | ||
| 977 | - </field> <field> <name>是否机动车</name> | ||
| 978 | - <rename>vehicleStats</rename> | ||
| 979 | - <length>-2</length> | ||
| 980 | - <precision>-2</precision> | ||
| 981 | - </field> <field> <name>运营状态</name> | ||
| 982 | - <rename>operatorsState</rename> | ||
| 983 | - <length>-2</length> | ||
| 984 | - <precision>-2</precision> | ||
| 985 | - </field> <field> <name>备注</name> | ||
| 986 | - <rename>descriptions</rename> | ||
| 987 | - <length>-2</length> | ||
| 988 | - <precision>-2</precision> | ||
| 989 | - </field> <field> <name>视频编号</name> | ||
| 990 | - <rename>videoCode</rename> | ||
| 991 | - <length>-2</length> | ||
| 992 | - <precision>-2</precision> | ||
| 993 | - </field> <select_unspecified>Y</select_unspecified> | ||
| 994 | - </fields> <cluster_schema/> | ||
| 995 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 996 | - <xloc>279</xloc> | ||
| 997 | - <yloc>59</yloc> | ||
| 998 | - <draw>Y</draw> | ||
| 999 | - </GUI> | ||
| 1000 | - </step> | ||
| 1001 | - | ||
| 1002 | - <step> | ||
| 1003 | - <name>插入/更新bsth_c_cars 2</name> | ||
| 1004 | - <type>InsertUpdate</type> | ||
| 1005 | - <description/> | ||
| 1006 | - <distribute>Y</distribute> | ||
| 1007 | - <custom_distribution/> | ||
| 1008 | - <copies>1</copies> | ||
| 1009 | - <partitioning> | ||
| 1010 | - <method>none</method> | ||
| 1011 | - <schema_name/> | ||
| 1012 | - </partitioning> | ||
| 1013 | - <connection>bus_control_variable</connection> | ||
| 1014 | - <commit>1000</commit> | ||
| 1015 | - <update_bypassed>N</update_bypassed> | ||
| 1016 | - <lookup> | ||
| 1017 | - <schema/> | ||
| 1018 | - <table>bsth_c_cars</table> | ||
| 1019 | - <key> | ||
| 1020 | - <name>businessCode</name> | ||
| 1021 | - <field>business_code</field> | ||
| 1022 | - <condition>=</condition> | ||
| 1023 | - <name2/> | ||
| 1024 | - </key> | ||
| 1025 | - <key> | ||
| 1026 | - <name>insideCode</name> | ||
| 1027 | - <field>inside_code</field> | ||
| 1028 | - <condition>=</condition> | ||
| 1029 | - <name2/> | ||
| 1030 | - </key> | ||
| 1031 | - <value> | ||
| 1032 | - <name>inside_code</name> | ||
| 1033 | - <rename>insideCode</rename> | ||
| 1034 | - <update>Y</update> | ||
| 1035 | - </value> | ||
| 1036 | - <value> | ||
| 1037 | - <name>company</name> | ||
| 1038 | - <rename>company</rename> | ||
| 1039 | - <update>Y</update> | ||
| 1040 | - </value> | ||
| 1041 | - <value> | ||
| 1042 | - <name>branche_company</name> | ||
| 1043 | - <rename>brancheCompany</rename> | ||
| 1044 | - <update>Y</update> | ||
| 1045 | - </value> | ||
| 1046 | - <value> | ||
| 1047 | - <name>car_plate</name> | ||
| 1048 | - <rename>carPlate</rename> | ||
| 1049 | - <update>Y</update> | ||
| 1050 | - </value> | ||
| 1051 | - <value> | ||
| 1052 | - <name>supplier_name</name> | ||
| 1053 | - <rename>supplierName</rename> | ||
| 1054 | - <update>Y</update> | ||
| 1055 | - </value> | ||
| 1056 | - <value> | ||
| 1057 | - <name>equipment_code</name> | ||
| 1058 | - <rename>equipmentCode</rename> | ||
| 1059 | - <update>Y</update> | ||
| 1060 | - </value> | ||
| 1061 | - <value> | ||
| 1062 | - <name>car_class</name> | ||
| 1063 | - <rename>carClass</rename> | ||
| 1064 | - <update>Y</update> | ||
| 1065 | - </value> | ||
| 1066 | - <value> | ||
| 1067 | - <name>speed</name> | ||
| 1068 | - <rename>speed</rename> | ||
| 1069 | - <update>Y</update> | ||
| 1070 | - </value> | ||
| 1071 | - <value> | ||
| 1072 | - <name>car_seatn_number</name> | ||
| 1073 | - <rename>carSeatnNumber</rename> | ||
| 1074 | - <update>Y</update> | ||
| 1075 | - </value> | ||
| 1076 | - <value> | ||
| 1077 | - <name>car_standard</name> | ||
| 1078 | - <rename>carStandard</rename> | ||
| 1079 | - <update>Y</update> | ||
| 1080 | - </value> | ||
| 1081 | - <value> | ||
| 1082 | - <name>car_code</name> | ||
| 1083 | - <rename>carCode</rename> | ||
| 1084 | - <update>Y</update> | ||
| 1085 | - </value> | ||
| 1086 | - <value> | ||
| 1087 | - <name>kburn_standard</name> | ||
| 1088 | - <rename>kburnStandard</rename> | ||
| 1089 | - <update>Y</update> | ||
| 1090 | - </value> | ||
| 1091 | - <value> | ||
| 1092 | - <name>gburn_standard</name> | ||
| 1093 | - <rename>gburnStandard</rename> | ||
| 1094 | - <update>Y</update> | ||
| 1095 | - </value> | ||
| 1096 | - <value> | ||
| 1097 | - <name>scrap_code</name> | ||
| 1098 | - <rename>scrapCode</rename> | ||
| 1099 | - <update>Y</update> | ||
| 1100 | - </value> | ||
| 1101 | - <value> | ||
| 1102 | - <name>make_code_one</name> | ||
| 1103 | - <rename>makeCodeOne</rename> | ||
| 1104 | - <update>Y</update> | ||
| 1105 | - </value> | ||
| 1106 | - <value> | ||
| 1107 | - <name>make_code_two</name> | ||
| 1108 | - <rename>makeCodeTwo</rename> | ||
| 1109 | - <update>Y</update> | ||
| 1110 | - </value> | ||
| 1111 | - <value> | ||
| 1112 | - <name>car_gride</name> | ||
| 1113 | - <rename>carGride</rename> | ||
| 1114 | - <update>Y</update> | ||
| 1115 | - </value> | ||
| 1116 | - <value> | ||
| 1117 | - <name>emissions_standard</name> | ||
| 1118 | - <rename>emissionsStandard</rename> | ||
| 1119 | - <update>Y</update> | ||
| 1120 | - </value> | ||
| 1121 | - <value> | ||
| 1122 | - <name>engine_code_one</name> | ||
| 1123 | - <rename>engineCodeOne</rename> | ||
| 1124 | - <update>Y</update> | ||
| 1125 | - </value> | ||
| 1126 | - <value> | ||
| 1127 | - <name>engine_code_two</name> | ||
| 1128 | - <rename>engineCodeTwo</rename> | ||
| 1129 | - <update>Y</update> | ||
| 1130 | - </value> | ||
| 1131 | - <value> | ||
| 1132 | - <name>car_number_one</name> | ||
| 1133 | - <rename>carNumberOne</rename> | ||
| 1134 | - <update>Y</update> | ||
| 1135 | - </value> | ||
| 1136 | - <value> | ||
| 1137 | - <name>car_number_two</name> | ||
| 1138 | - <rename>carNumberTwo</rename> | ||
| 1139 | - <update>Y</update> | ||
| 1140 | - </value> | ||
| 1141 | - <value> | ||
| 1142 | - <name>open_date</name> | ||
| 1143 | - <rename>openDate</rename> | ||
| 1144 | - <update>Y</update> | ||
| 1145 | - </value> | ||
| 1146 | - <value> | ||
| 1147 | - <name>close_date</name> | ||
| 1148 | - <rename>closeDate</rename> | ||
| 1149 | - <update>Y</update> | ||
| 1150 | - </value> | ||
| 1151 | - <value> | ||
| 1152 | - <name>hvac_car</name> | ||
| 1153 | - <rename>hvacCar</rename> | ||
| 1154 | - <update>Y</update> | ||
| 1155 | - </value> | ||
| 1156 | - <value> | ||
| 1157 | - <name>ticket_type</name> | ||
| 1158 | - <rename>ticketType</rename> | ||
| 1159 | - <update>Y</update> | ||
| 1160 | - </value> | ||
| 1161 | - <value> | ||
| 1162 | - <name>led_screen</name> | ||
| 1163 | - <rename>ledScreen</rename> | ||
| 1164 | - <update>Y</update> | ||
| 1165 | - </value> | ||
| 1166 | - <value> | ||
| 1167 | - <name>tv_video_type</name> | ||
| 1168 | - <rename>tvVideoType</rename> | ||
| 1169 | - <update>Y</update> | ||
| 1170 | - </value> | ||
| 1171 | - <value> | ||
| 1172 | - <name>car_type</name> | ||
| 1173 | - <rename>carType</rename> | ||
| 1174 | - <update>Y</update> | ||
| 1175 | - </value> | ||
| 1176 | - <value> | ||
| 1177 | - <name>vehicle_stats</name> | ||
| 1178 | - <rename>vehicleStats</rename> | ||
| 1179 | - <update>Y</update> | ||
| 1180 | - </value> | ||
| 1181 | - <value> | ||
| 1182 | - <name>operators_state</name> | ||
| 1183 | - <rename>operatorsState</rename> | ||
| 1184 | - <update>Y</update> | ||
| 1185 | - </value> | ||
| 1186 | - <value> | ||
| 1187 | - <name>descriptions</name> | ||
| 1188 | - <rename>descriptions</rename> | ||
| 1189 | - <update>Y</update> | ||
| 1190 | - </value> | ||
| 1191 | - <value> | ||
| 1192 | - <name>video_code</name> | ||
| 1193 | - <rename>videoCode</rename> | ||
| 1194 | - <update>Y</update> | ||
| 1195 | - </value> | ||
| 1196 | - <value> | ||
| 1197 | - <name>business_code</name> | ||
| 1198 | - <rename>businessCode</rename> | ||
| 1199 | - <update>Y</update> | ||
| 1200 | - </value> | ||
| 1201 | - </lookup> | ||
| 1202 | - <cluster_schema/> | ||
| 1203 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1204 | - <xloc>821</xloc> | ||
| 1205 | - <yloc>362</yloc> | ||
| 1206 | - <draw>Y</draw> | ||
| 1207 | - </GUI> | ||
| 1208 | - </step> | ||
| 1209 | - | ||
| 1210 | - <step> | ||
| 1211 | - <name>是否有LED服务屏</name> | ||
| 1212 | - <type>ValueMapper</type> | ||
| 1213 | - <description/> | ||
| 1214 | - <distribute>Y</distribute> | ||
| 1215 | - <custom_distribution/> | ||
| 1216 | - <copies>1</copies> | ||
| 1217 | - <partitioning> | ||
| 1218 | - <method>none</method> | ||
| 1219 | - <schema_name/> | ||
| 1220 | - </partitioning> | ||
| 1221 | - <field_to_use>ledScreen</field_to_use> | ||
| 1222 | - <target_field/> | ||
| 1223 | - <non_match_default/> | ||
| 1224 | - <fields> | ||
| 1225 | - <field> | ||
| 1226 | - <source_value>是</source_value> | ||
| 1227 | - <target_value>1</target_value> | ||
| 1228 | - </field> | ||
| 1229 | - <field> | ||
| 1230 | - <source_value>否</source_value> | ||
| 1231 | - <target_value>0</target_value> | ||
| 1232 | - </field> | ||
| 1233 | - </fields> | ||
| 1234 | - <cluster_schema/> | ||
| 1235 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1236 | - <xloc>590</xloc> | ||
| 1237 | - <yloc>61</yloc> | ||
| 1238 | - <draw>Y</draw> | ||
| 1239 | - </GUI> | ||
| 1240 | - </step> | ||
| 1241 | - | ||
| 1242 | - <step> | ||
| 1243 | - <name>是否有TV视频</name> | ||
| 1244 | - <type>ValueMapper</type> | ||
| 1245 | - <description/> | ||
| 1246 | - <distribute>Y</distribute> | ||
| 1247 | - <custom_distribution/> | ||
| 1248 | - <copies>1</copies> | ||
| 1249 | - <partitioning> | ||
| 1250 | - <method>none</method> | ||
| 1251 | - <schema_name/> | ||
| 1252 | - </partitioning> | ||
| 1253 | - <field_to_use>tvVideoType</field_to_use> | ||
| 1254 | - <target_field/> | ||
| 1255 | - <non_match_default/> | ||
| 1256 | - <fields> | ||
| 1257 | - <field> | ||
| 1258 | - <source_value>是</source_value> | ||
| 1259 | - <target_value>1</target_value> | ||
| 1260 | - </field> | ||
| 1261 | - <field> | ||
| 1262 | - <source_value>否</source_value> | ||
| 1263 | - <target_value>0</target_value> | ||
| 1264 | - </field> | ||
| 1265 | - </fields> | ||
| 1266 | - <cluster_schema/> | ||
| 1267 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1268 | - <xloc>706</xloc> | ||
| 1269 | - <yloc>61</yloc> | ||
| 1270 | - <draw>Y</draw> | ||
| 1271 | - </GUI> | ||
| 1272 | - </step> | ||
| 1273 | - | ||
| 1274 | - <step> | ||
| 1275 | - <name>是否的变成数字型</name> | ||
| 1276 | - <type>SelectValues</type> | ||
| 1277 | - <description/> | ||
| 1278 | - <distribute>Y</distribute> | ||
| 1279 | - <custom_distribution/> | ||
| 1280 | - <copies>1</copies> | ||
| 1281 | - <partitioning> | ||
| 1282 | - <method>none</method> | ||
| 1283 | - <schema_name/> | ||
| 1284 | - </partitioning> | ||
| 1285 | - <fields> <select_unspecified>N</select_unspecified> | ||
| 1286 | - <meta> <name>hvacCar</name> | ||
| 1287 | - <rename>hvacCar</rename> | ||
| 1288 | - <type>Integer</type> | ||
| 1289 | - <length>1</length> | ||
| 1290 | - <precision>-2</precision> | ||
| 1291 | - <conversion_mask/> | ||
| 1292 | - <date_format_lenient>false</date_format_lenient> | ||
| 1293 | - <date_format_locale/> | ||
| 1294 | - <date_format_timezone/> | ||
| 1295 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1296 | - <encoding/> | ||
| 1297 | - <decimal_symbol/> | ||
| 1298 | - <grouping_symbol/> | ||
| 1299 | - <currency_symbol/> | ||
| 1300 | - <storage_type/> | ||
| 1301 | - </meta> <meta> <name>ticketType</name> | ||
| 1302 | - <rename>ticketType</rename> | ||
| 1303 | - <type>Integer</type> | ||
| 1304 | - <length>1</length> | ||
| 1305 | - <precision>-2</precision> | ||
| 1306 | - <conversion_mask/> | ||
| 1307 | - <date_format_lenient>false</date_format_lenient> | ||
| 1308 | - <date_format_locale/> | ||
| 1309 | - <date_format_timezone/> | ||
| 1310 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1311 | - <encoding/> | ||
| 1312 | - <decimal_symbol/> | ||
| 1313 | - <grouping_symbol/> | ||
| 1314 | - <currency_symbol/> | ||
| 1315 | - <storage_type/> | ||
| 1316 | - </meta> <meta> <name>ledScreen</name> | ||
| 1317 | - <rename>ledScreen</rename> | ||
| 1318 | - <type>Integer</type> | ||
| 1319 | - <length>1</length> | ||
| 1320 | - <precision>-2</precision> | ||
| 1321 | - <conversion_mask/> | ||
| 1322 | - <date_format_lenient>false</date_format_lenient> | ||
| 1323 | - <date_format_locale/> | ||
| 1324 | - <date_format_timezone/> | ||
| 1325 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1326 | - <encoding/> | ||
| 1327 | - <decimal_symbol/> | ||
| 1328 | - <grouping_symbol/> | ||
| 1329 | - <currency_symbol/> | ||
| 1330 | - <storage_type/> | ||
| 1331 | - </meta> <meta> <name>tvVideoType</name> | ||
| 1332 | - <rename>tvVideoType</rename> | ||
| 1333 | - <type>Integer</type> | ||
| 1334 | - <length>1</length> | ||
| 1335 | - <precision>-2</precision> | ||
| 1336 | - <conversion_mask/> | ||
| 1337 | - <date_format_lenient>false</date_format_lenient> | ||
| 1338 | - <date_format_locale/> | ||
| 1339 | - <date_format_timezone/> | ||
| 1340 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1341 | - <encoding/> | ||
| 1342 | - <decimal_symbol/> | ||
| 1343 | - <grouping_symbol/> | ||
| 1344 | - <currency_symbol/> | ||
| 1345 | - <storage_type/> | ||
| 1346 | - </meta> </fields> <cluster_schema/> | ||
| 1347 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1348 | - <xloc>839</xloc> | ||
| 1349 | - <yloc>61</yloc> | ||
| 1350 | - <draw>Y</draw> | ||
| 1351 | - </GUI> | ||
| 1352 | - </step> | ||
| 1353 | - | ||
| 1354 | - <step> | ||
| 1355 | - <name>是否空调车</name> | ||
| 1356 | - <type>ValueMapper</type> | ||
| 1357 | - <description/> | ||
| 1358 | - <distribute>Y</distribute> | ||
| 1359 | - <custom_distribution/> | ||
| 1360 | - <copies>1</copies> | ||
| 1361 | - <partitioning> | ||
| 1362 | - <method>none</method> | ||
| 1363 | - <schema_name/> | ||
| 1364 | - </partitioning> | ||
| 1365 | - <field_to_use>hvacCar</field_to_use> | ||
| 1366 | - <target_field/> | ||
| 1367 | - <non_match_default/> | ||
| 1368 | - <fields> | ||
| 1369 | - <field> | ||
| 1370 | - <source_value>是</source_value> | ||
| 1371 | - <target_value>1</target_value> | ||
| 1372 | - </field> | ||
| 1373 | - <field> | ||
| 1374 | - <source_value>否</source_value> | ||
| 1375 | - <target_value>0</target_value> | ||
| 1376 | - </field> | ||
| 1377 | - </fields> | ||
| 1378 | - <cluster_schema/> | ||
| 1379 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1380 | - <xloc>388</xloc> | ||
| 1381 | - <yloc>61</yloc> | ||
| 1382 | - <draw>Y</draw> | ||
| 1383 | - </GUI> | ||
| 1384 | - </step> | ||
| 1385 | - | ||
| 1386 | - <step> | ||
| 1387 | - <name>有无人售票</name> | ||
| 1388 | - <type>ValueMapper</type> | ||
| 1389 | - <description/> | ||
| 1390 | - <distribute>Y</distribute> | ||
| 1391 | - <custom_distribution/> | ||
| 1392 | - <copies>1</copies> | ||
| 1393 | - <partitioning> | ||
| 1394 | - <method>none</method> | ||
| 1395 | - <schema_name/> | ||
| 1396 | - </partitioning> | ||
| 1397 | - <field_to_use>ticketType</field_to_use> | ||
| 1398 | - <target_field/> | ||
| 1399 | - <non_match_default/> | ||
| 1400 | - <fields> | ||
| 1401 | - <field> | ||
| 1402 | - <source_value>是</source_value> | ||
| 1403 | - <target_value>1</target_value> | ||
| 1404 | - </field> | ||
| 1405 | - <field> | ||
| 1406 | - <source_value>否</source_value> | ||
| 1407 | - <target_value>0</target_value> | ||
| 1408 | - </field> | ||
| 1409 | - </fields> | ||
| 1410 | - <cluster_schema/> | ||
| 1411 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1412 | - <xloc>485</xloc> | ||
| 1413 | - <yloc>61</yloc> | ||
| 1414 | - <draw>Y</draw> | ||
| 1415 | - </GUI> | ||
| 1416 | - </step> | ||
| 1417 | - | ||
| 1418 | - <step> | ||
| 1419 | - <name>机动车类型</name> | ||
| 1420 | - <type>ValueMapper</type> | ||
| 1421 | - <description/> | ||
| 1422 | - <distribute>Y</distribute> | ||
| 1423 | - <custom_distribution/> | ||
| 1424 | - <copies>1</copies> | ||
| 1425 | - <partitioning> | ||
| 1426 | - <method>none</method> | ||
| 1427 | - <schema_name/> | ||
| 1428 | - </partitioning> | ||
| 1429 | - <field_to_use>vehicleStats</field_to_use> | ||
| 1430 | - <target_field/> | ||
| 1431 | - <non_match_default/> | ||
| 1432 | - <fields> | ||
| 1433 | - <field> | ||
| 1434 | - <source_value>非机动车</source_value> | ||
| 1435 | - <target_value>1</target_value> | ||
| 1436 | - </field> | ||
| 1437 | - <field> | ||
| 1438 | - <source_value>机动一队</source_value> | ||
| 1439 | - <target_value>2</target_value> | ||
| 1440 | - </field> | ||
| 1441 | - <field> | ||
| 1442 | - <source_value>机动二队</source_value> | ||
| 1443 | - <target_value>3</target_value> | ||
| 1444 | - </field> | ||
| 1445 | - <field> | ||
| 1446 | - <source_value>机动三队</source_value> | ||
| 1447 | - <target_value>4</target_value> | ||
| 1448 | - </field> | ||
| 1449 | - <field> | ||
| 1450 | - <source_value>备车</source_value> | ||
| 1451 | - <target_value>5</target_value> | ||
| 1452 | - </field> | ||
| 1453 | - <field> | ||
| 1454 | - <source_value>抢修车</source_value> | ||
| 1455 | - <target_value>6</target_value> | ||
| 1456 | - </field> | ||
| 1457 | - </fields> | ||
| 1458 | - <cluster_schema/> | ||
| 1459 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1460 | - <xloc>519</xloc> | ||
| 1461 | - <yloc>174</yloc> | ||
| 1462 | - <draw>Y</draw> | ||
| 1463 | - </GUI> | ||
| 1464 | - </step> | ||
| 1465 | - | ||
| 1466 | - <step> | ||
| 1467 | - <name>获取变量</name> | ||
| 1468 | - <type>GetVariable</type> | ||
| 1469 | - <description/> | ||
| 1470 | - <distribute>Y</distribute> | ||
| 1471 | - <custom_distribution/> | ||
| 1472 | - <copies>1</copies> | ||
| 1473 | - <partitioning> | ||
| 1474 | - <method>none</method> | ||
| 1475 | - <schema_name/> | ||
| 1476 | - </partitioning> | ||
| 1477 | - <fields> | ||
| 1478 | - <field> | ||
| 1479 | - <name>filepath_</name> | ||
| 1480 | - <variable>${filepath}</variable> | ||
| 1481 | - <type>String</type> | ||
| 1482 | - <format/> | ||
| 1483 | - <currency/> | ||
| 1484 | - <decimal/> | ||
| 1485 | - <group/> | ||
| 1486 | - <length>-1</length> | ||
| 1487 | - <precision>-1</precision> | ||
| 1488 | - <trim_type>none</trim_type> | ||
| 1489 | - </field> | ||
| 1490 | - <field> | ||
| 1491 | - <name>erroroutputdir_</name> | ||
| 1492 | - <variable>${erroroutputdir}</variable> | ||
| 1493 | - <type>String</type> | ||
| 1494 | - <format/> | ||
| 1495 | - <currency/> | ||
| 1496 | - <decimal/> | ||
| 1497 | - <group/> | ||
| 1498 | - <length>-1</length> | ||
| 1499 | - <precision>-1</precision> | ||
| 1500 | - <trim_type>none</trim_type> | ||
| 1501 | - </field> | ||
| 1502 | - </fields> | ||
| 1503 | - <cluster_schema/> | ||
| 1504 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1505 | - <xloc>134</xloc> | ||
| 1506 | - <yloc>183</yloc> | ||
| 1507 | - <draw>Y</draw> | ||
| 1508 | - </GUI> | ||
| 1509 | - </step> | ||
| 1510 | - | ||
| 1511 | - <step> | ||
| 1512 | - <name>营运状态</name> | ||
| 1513 | - <type>ValueMapper</type> | ||
| 1514 | - <description/> | ||
| 1515 | - <distribute>Y</distribute> | ||
| 1516 | - <custom_distribution/> | ||
| 1517 | - <copies>1</copies> | ||
| 1518 | - <partitioning> | ||
| 1519 | - <method>none</method> | ||
| 1520 | - <schema_name/> | ||
| 1521 | - </partitioning> | ||
| 1522 | - <field_to_use>operatorsState</field_to_use> | ||
| 1523 | - <target_field/> | ||
| 1524 | - <non_match_default/> | ||
| 1525 | - <fields> | ||
| 1526 | - <field> | ||
| 1527 | - <source_value>营运</source_value> | ||
| 1528 | - <target_value>1</target_value> | ||
| 1529 | - </field> | ||
| 1530 | - <field> | ||
| 1531 | - <source_value>停运</source_value> | ||
| 1532 | - <target_value>2</target_value> | ||
| 1533 | - </field> | ||
| 1534 | - <field> | ||
| 1535 | - <source_value>挂失</source_value> | ||
| 1536 | - <target_value>3</target_value> | ||
| 1537 | - </field> | ||
| 1538 | - <field> | ||
| 1539 | - <source_value>迁出(过户)</source_value> | ||
| 1540 | - <target_value>4</target_value> | ||
| 1541 | - </field> | ||
| 1542 | - <field> | ||
| 1543 | - <source_value>迁出(转籍)</source_value> | ||
| 1544 | - <target_value>5</target_value> | ||
| 1545 | - </field> | ||
| 1546 | - <field> | ||
| 1547 | - <source_value>报废</source_value> | ||
| 1548 | - <target_value>6</target_value> | ||
| 1549 | - </field> | ||
| 1550 | - <field> | ||
| 1551 | - <source_value>歇业</source_value> | ||
| 1552 | - <target_value>7</target_value> | ||
| 1553 | - </field> | ||
| 1554 | - <field> | ||
| 1555 | - <source_value>注销</source_value> | ||
| 1556 | - <target_value>8</target_value> | ||
| 1557 | - </field> | ||
| 1558 | - <field> | ||
| 1559 | - <source_value>测试</source_value> | ||
| 1560 | - <target_value>9</target_value> | ||
| 1561 | - </field> | ||
| 1562 | - <field> | ||
| 1563 | - <source_value>其他</source_value> | ||
| 1564 | - <target_value>10</target_value> | ||
| 1565 | - </field> | ||
| 1566 | - </fields> | ||
| 1567 | - <cluster_schema/> | ||
| 1568 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1569 | - <xloc>615</xloc> | ||
| 1570 | - <yloc>173</yloc> | ||
| 1571 | - <draw>Y</draw> | ||
| 1572 | - </GUI> | ||
| 1573 | - </step> | ||
| 1574 | - | ||
| 1575 | - <step> | ||
| 1576 | - <name>车辆类型</name> | ||
| 1577 | - <type>ValueMapper</type> | ||
| 1578 | - <description/> | ||
| 1579 | - <distribute>Y</distribute> | ||
| 1580 | - <custom_distribution/> | ||
| 1581 | - <copies>1</copies> | ||
| 1582 | - <partitioning> | ||
| 1583 | - <method>none</method> | ||
| 1584 | - <schema_name/> | ||
| 1585 | - </partitioning> | ||
| 1586 | - <field_to_use>carType</field_to_use> | ||
| 1587 | - <target_field/> | ||
| 1588 | - <non_match_default/> | ||
| 1589 | - <fields> | ||
| 1590 | - <field> | ||
| 1591 | - <source_value>营运车</source_value> | ||
| 1592 | - <target_value>1</target_value> | ||
| 1593 | - </field> | ||
| 1594 | - <field> | ||
| 1595 | - <source_value>包车</source_value> | ||
| 1596 | - <target_value>2</target_value> | ||
| 1597 | - </field> | ||
| 1598 | - <field> | ||
| 1599 | - <source_value>学校班车</source_value> | ||
| 1600 | - <target_value>3</target_value> | ||
| 1601 | - </field> | ||
| 1602 | - <field> | ||
| 1603 | - <source_value>公司班车</source_value> | ||
| 1604 | - <target_value>4</target_value> | ||
| 1605 | - </field> | ||
| 1606 | - <field> | ||
| 1607 | - <source_value>待报废车</source_value> | ||
| 1608 | - <target_value>5</target_value> | ||
| 1609 | - </field> | ||
| 1610 | - <field> | ||
| 1611 | - <source_value>备车</source_value> | ||
| 1612 | - <target_value>6</target_value> | ||
| 1613 | - </field> | ||
| 1614 | - <field> | ||
| 1615 | - <source_value>测试设备</source_value> | ||
| 1616 | - <target_value>7</target_value> | ||
| 1617 | - </field> | ||
| 1618 | - </fields> | ||
| 1619 | - <cluster_schema/> | ||
| 1620 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1621 | - <xloc>521</xloc> | ||
| 1622 | - <yloc>275</yloc> | ||
| 1623 | - <draw>Y</draw> | ||
| 1624 | - </GUI> | ||
| 1625 | - </step> | ||
| 1626 | - | ||
| 1627 | - <step> | ||
| 1628 | - <name>车辆编码</name> | ||
| 1629 | - <type>Constant</type> | ||
| 1630 | - <description/> | ||
| 1631 | - <distribute>Y</distribute> | ||
| 1632 | - <custom_distribution/> | ||
| 1633 | - <copies>1</copies> | ||
| 1634 | - <partitioning> | ||
| 1635 | - <method>none</method> | ||
| 1636 | - <schema_name/> | ||
| 1637 | - </partitioning> | ||
| 1638 | - <fields> | ||
| 1639 | - <field> | ||
| 1640 | - <name>carCode</name> | ||
| 1641 | - <type>String</type> | ||
| 1642 | - <format/> | ||
| 1643 | - <currency/> | ||
| 1644 | - <decimal/> | ||
| 1645 | - <group/> | ||
| 1646 | - <nullif>1</nullif> | ||
| 1647 | - <length>-1</length> | ||
| 1648 | - <precision>-1</precision> | ||
| 1649 | - <set_empty_string>N</set_empty_string> | ||
| 1650 | - </field> | ||
| 1651 | - </fields> | ||
| 1652 | - <cluster_schema/> | ||
| 1653 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1654 | - <xloc>820</xloc> | ||
| 1655 | - <yloc>272</yloc> | ||
| 1656 | - <draw>Y</draw> | ||
| 1657 | - </GUI> | ||
| 1658 | - </step> | ||
| 1659 | - | ||
| 1660 | - <step> | ||
| 1661 | - <name>错误输出 2</name> | ||
| 1662 | - <type>ExcelOutput</type> | ||
| 1663 | - <description/> | ||
| 1664 | - <distribute>Y</distribute> | ||
| 1665 | - <custom_distribution/> | ||
| 1666 | - <copies>1</copies> | ||
| 1667 | - <partitioning> | ||
| 1668 | - <method>none</method> | ||
| 1669 | - <schema_name/> | ||
| 1670 | - </partitioning> | ||
| 1671 | - <header>Y</header> | ||
| 1672 | - <footer>N</footer> | ||
| 1673 | - <encoding/> | ||
| 1674 | - <append>N</append> | ||
| 1675 | - <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 1676 | - <file> | ||
| 1677 | - <name>${erroroutputdir}/车辆基础信息_错误</name> | ||
| 1678 | - <extention>xls</extention> | ||
| 1679 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 1680 | - <create_parent_folder>N</create_parent_folder> | ||
| 1681 | - <split>N</split> | ||
| 1682 | - <add_date>N</add_date> | ||
| 1683 | - <add_time>N</add_time> | ||
| 1684 | - <SpecifyFormat>N</SpecifyFormat> | ||
| 1685 | - <date_time_format/> | ||
| 1686 | - <sheetname>Sheet1</sheetname> | ||
| 1687 | - <autosizecolums>N</autosizecolums> | ||
| 1688 | - <nullisblank>N</nullisblank> | ||
| 1689 | - <protect_sheet>N</protect_sheet> | ||
| 1690 | - <password>Encrypted </password> | ||
| 1691 | - <splitevery>0</splitevery> | ||
| 1692 | - <usetempfiles>N</usetempfiles> | ||
| 1693 | - <tempdirectory/> | ||
| 1694 | - </file> | ||
| 1695 | - <template> | ||
| 1696 | - <enabled>N</enabled> | ||
| 1697 | - <append>N</append> | ||
| 1698 | - <filename>template.xls</filename> | ||
| 1699 | - </template> | ||
| 1700 | - <fields> | ||
| 1701 | - <field> | ||
| 1702 | - <name>insideCode</name> | ||
| 1703 | - <type>String</type> | ||
| 1704 | - <format/> | ||
| 1705 | - </field> | ||
| 1706 | - <field> | ||
| 1707 | - <name>company</name> | ||
| 1708 | - <type>String</type> | ||
| 1709 | - <format/> | ||
| 1710 | - </field> | ||
| 1711 | - <field> | ||
| 1712 | - <name>brancheCompany</name> | ||
| 1713 | - <type>String</type> | ||
| 1714 | - <format/> | ||
| 1715 | - </field> | ||
| 1716 | - <field> | ||
| 1717 | - <name>carPlate</name> | ||
| 1718 | - <type>String</type> | ||
| 1719 | - <format/> | ||
| 1720 | - </field> | ||
| 1721 | - <field> | ||
| 1722 | - <name>supplierName</name> | ||
| 1723 | - <type>String</type> | ||
| 1724 | - <format/> | ||
| 1725 | - </field> | ||
| 1726 | - <field> | ||
| 1727 | - <name>equipmentCode</name> | ||
| 1728 | - <type>String</type> | ||
| 1729 | - <format/> | ||
| 1730 | - </field> | ||
| 1731 | - <field> | ||
| 1732 | - <name>carClass</name> | ||
| 1733 | - <type>String</type> | ||
| 1734 | - <format/> | ||
| 1735 | - </field> | ||
| 1736 | - <field> | ||
| 1737 | - <name>speed</name> | ||
| 1738 | - <type>String</type> | ||
| 1739 | - <format/> | ||
| 1740 | - </field> | ||
| 1741 | - <field> | ||
| 1742 | - <name>carSeatnNumber</name> | ||
| 1743 | - <type>String</type> | ||
| 1744 | - <format/> | ||
| 1745 | - </field> | ||
| 1746 | - <field> | ||
| 1747 | - <name>carStandard</name> | ||
| 1748 | - <type>String</type> | ||
| 1749 | - <format/> | ||
| 1750 | - </field> | ||
| 1751 | - <field> | ||
| 1752 | - <name>kburnStandard</name> | ||
| 1753 | - <type>String</type> | ||
| 1754 | - <format/> | ||
| 1755 | - </field> | ||
| 1756 | - <field> | ||
| 1757 | - <name>gburnStandard</name> | ||
| 1758 | - <type>String</type> | ||
| 1759 | - <format/> | ||
| 1760 | - </field> | ||
| 1761 | - <field> | ||
| 1762 | - <name>scrapCode</name> | ||
| 1763 | - <type>String</type> | ||
| 1764 | - <format/> | ||
| 1765 | - </field> | ||
| 1766 | - <field> | ||
| 1767 | - <name>makeCodeOne</name> | ||
| 1768 | - <type>String</type> | ||
| 1769 | - <format/> | ||
| 1770 | - </field> | ||
| 1771 | - <field> | ||
| 1772 | - <name>makeCodeTwo</name> | ||
| 1773 | - <type>String</type> | ||
| 1774 | - <format/> | ||
| 1775 | - </field> | ||
| 1776 | - <field> | ||
| 1777 | - <name>carGride</name> | ||
| 1778 | - <type>String</type> | ||
| 1779 | - <format/> | ||
| 1780 | - </field> | ||
| 1781 | - <field> | ||
| 1782 | - <name>emissionsStandard</name> | ||
| 1783 | - <type>String</type> | ||
| 1784 | - <format/> | ||
| 1785 | - </field> | ||
| 1786 | - <field> | ||
| 1787 | - <name>engineCodeOne</name> | ||
| 1788 | - <type>String</type> | ||
| 1789 | - <format/> | ||
| 1790 | - </field> | ||
| 1791 | - <field> | ||
| 1792 | - <name>engineCodeTwo</name> | ||
| 1793 | - <type>String</type> | ||
| 1794 | - <format/> | ||
| 1795 | - </field> | ||
| 1796 | - <field> | ||
| 1797 | - <name>carNumberOne</name> | ||
| 1798 | - <type>String</type> | ||
| 1799 | - <format/> | ||
| 1800 | - </field> | ||
| 1801 | - <field> | ||
| 1802 | - <name>carNumberTwo</name> | ||
| 1803 | - <type>String</type> | ||
| 1804 | - <format/> | ||
| 1805 | - </field> | ||
| 1806 | - <field> | ||
| 1807 | - <name>openDate</name> | ||
| 1808 | - <type>String</type> | ||
| 1809 | - <format/> | ||
| 1810 | - </field> | ||
| 1811 | - <field> | ||
| 1812 | - <name>closeDate</name> | ||
| 1813 | - <type>String</type> | ||
| 1814 | - <format/> | ||
| 1815 | - </field> | ||
| 1816 | - <field> | ||
| 1817 | - <name>hvacCar</name> | ||
| 1818 | - <type>Integer</type> | ||
| 1819 | - <format/> | ||
| 1820 | - </field> | ||
| 1821 | - <field> | ||
| 1822 | - <name>ticketType</name> | ||
| 1823 | - <type>Integer</type> | ||
| 1824 | - <format/> | ||
| 1825 | - </field> | ||
| 1826 | - <field> | ||
| 1827 | - <name>ledScreen</name> | ||
| 1828 | - <type>Integer</type> | ||
| 1829 | - <format/> | ||
| 1830 | - </field> | ||
| 1831 | - <field> | ||
| 1832 | - <name>tvVideoType</name> | ||
| 1833 | - <type>Integer</type> | ||
| 1834 | - <format/> | ||
| 1835 | - </field> | ||
| 1836 | - <field> | ||
| 1837 | - <name>carType</name> | ||
| 1838 | - <type>String</type> | ||
| 1839 | - <format/> | ||
| 1840 | - </field> | ||
| 1841 | - <field> | ||
| 1842 | - <name>vehicleStats</name> | ||
| 1843 | - <type>String</type> | ||
| 1844 | - <format/> | ||
| 1845 | - </field> | ||
| 1846 | - <field> | ||
| 1847 | - <name>operatorsState</name> | ||
| 1848 | - <type>String</type> | ||
| 1849 | - <format/> | ||
| 1850 | - </field> | ||
| 1851 | - <field> | ||
| 1852 | - <name>descriptions</name> | ||
| 1853 | - <type>String</type> | ||
| 1854 | - <format/> | ||
| 1855 | - </field> | ||
| 1856 | - <field> | ||
| 1857 | - <name>videoCode</name> | ||
| 1858 | - <type>String</type> | ||
| 1859 | - <format/> | ||
| 1860 | - </field> | ||
| 1861 | - <field> | ||
| 1862 | - <name>businessCode</name> | ||
| 1863 | - <type>String</type> | ||
| 1864 | - <format/> | ||
| 1865 | - </field> | ||
| 1866 | - <field> | ||
| 1867 | - <name>carCode</name> | ||
| 1868 | - <type>String</type> | ||
| 1869 | - <format/> | ||
| 1870 | - </field> | ||
| 1871 | - <field> | ||
| 1872 | - <name>error_count</name> | ||
| 1873 | - <type>Integer</type> | ||
| 1874 | - <format/> | ||
| 1875 | - </field> | ||
| 1876 | - <field> | ||
| 1877 | - <name>error_desc</name> | ||
| 1878 | - <type>String</type> | ||
| 1879 | - <format/> | ||
| 1880 | - </field> | ||
| 1881 | - <field> | ||
| 1882 | - <name>error_column1</name> | ||
| 1883 | - <type>String</type> | ||
| 1884 | - <format/> | ||
| 1885 | - </field> | ||
| 1886 | - <field> | ||
| 1887 | - <name>error_column2</name> | ||
| 1888 | - <type>String</type> | ||
| 1889 | - <format/> | ||
| 1890 | - </field> | ||
| 1891 | - </fields> | ||
| 1892 | - <custom> | ||
| 1893 | - <header_font_name>arial</header_font_name> | ||
| 1894 | - <header_font_size>10</header_font_size> | ||
| 1895 | - <header_font_bold>N</header_font_bold> | ||
| 1896 | - <header_font_italic>N</header_font_italic> | ||
| 1897 | - <header_font_underline>no</header_font_underline> | ||
| 1898 | - <header_font_orientation>horizontal</header_font_orientation> | ||
| 1899 | - <header_font_color>black</header_font_color> | ||
| 1900 | - <header_background_color>none</header_background_color> | ||
| 1901 | - <header_row_height>255</header_row_height> | ||
| 1902 | - <header_alignment>left</header_alignment> | ||
| 1903 | - <header_image/> | ||
| 1904 | - <row_font_name>arial</row_font_name> | ||
| 1905 | - <row_font_size>10</row_font_size> | ||
| 1906 | - <row_font_color>black</row_font_color> | ||
| 1907 | - <row_background_color>none</row_background_color> | ||
| 1908 | - </custom> | ||
| 1909 | - <cluster_schema/> | ||
| 1910 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1911 | - <xloc>633</xloc> | ||
| 1912 | - <yloc>364</yloc> | ||
| 1913 | - <draw>Y</draw> | ||
| 1914 | - </GUI> | ||
| 1915 | - </step> | ||
| 1916 | - | ||
| 1917 | - <step> | ||
| 1918 | - <name>错误输出 2 2</name> | ||
| 1919 | - <type>ExcelOutput</type> | ||
| 1920 | - <description/> | ||
| 1921 | - <distribute>Y</distribute> | ||
| 1922 | - <custom_distribution/> | ||
| 1923 | - <copies>1</copies> | ||
| 1924 | - <partitioning> | ||
| 1925 | - <method>none</method> | ||
| 1926 | - <schema_name/> | ||
| 1927 | - </partitioning> | ||
| 1928 | - <header>Y</header> | ||
| 1929 | - <footer>N</footer> | ||
| 1930 | - <encoding/> | ||
| 1931 | - <append>N</append> | ||
| 1932 | - <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 1933 | - <file> | ||
| 1934 | - <name>${erroroutputdir}/车辆基础信息_错误2</name> | ||
| 1935 | - <extention>xls</extention> | ||
| 1936 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 1937 | - <create_parent_folder>N</create_parent_folder> | ||
| 1938 | - <split>N</split> | ||
| 1939 | - <add_date>N</add_date> | ||
| 1940 | - <add_time>N</add_time> | ||
| 1941 | - <SpecifyFormat>N</SpecifyFormat> | ||
| 1942 | - <date_time_format/> | ||
| 1943 | - <sheetname>Sheet1</sheetname> | ||
| 1944 | - <autosizecolums>N</autosizecolums> | ||
| 1945 | - <nullisblank>N</nullisblank> | ||
| 1946 | - <protect_sheet>N</protect_sheet> | ||
| 1947 | - <password>Encrypted </password> | ||
| 1948 | - <splitevery>0</splitevery> | ||
| 1949 | - <usetempfiles>N</usetempfiles> | ||
| 1950 | - <tempdirectory/> | ||
| 1951 | - </file> | ||
| 1952 | - <template> | ||
| 1953 | - <enabled>N</enabled> | ||
| 1954 | - <append>N</append> | ||
| 1955 | - <filename>template.xls</filename> | ||
| 1956 | - </template> | ||
| 1957 | - <fields> | ||
| 1958 | - <field> | ||
| 1959 | - <name>insideCode</name> | ||
| 1960 | - <type>String</type> | ||
| 1961 | - <format/> | ||
| 1962 | - </field> | ||
| 1963 | - <field> | ||
| 1964 | - <name>carCode</name> | ||
| 1965 | - <type>String</type> | ||
| 1966 | - <format/> | ||
| 1967 | - </field> | ||
| 1968 | - <field> | ||
| 1969 | - <name>company</name> | ||
| 1970 | - <type>String</type> | ||
| 1971 | - <format/> | ||
| 1972 | - </field> | ||
| 1973 | - <field> | ||
| 1974 | - <name>brancheCompany</name> | ||
| 1975 | - <type>String</type> | ||
| 1976 | - <format/> | ||
| 1977 | - </field> | ||
| 1978 | - <field> | ||
| 1979 | - <name>carPlate</name> | ||
| 1980 | - <type>String</type> | ||
| 1981 | - <format/> | ||
| 1982 | - </field> | ||
| 1983 | - <field> | ||
| 1984 | - <name>supplierName</name> | ||
| 1985 | - <type>String</type> | ||
| 1986 | - <format/> | ||
| 1987 | - </field> | ||
| 1988 | - <field> | ||
| 1989 | - <name>equipmentCode</name> | ||
| 1990 | - <type>String</type> | ||
| 1991 | - <format/> | ||
| 1992 | - </field> | ||
| 1993 | - <field> | ||
| 1994 | - <name>carClass</name> | ||
| 1995 | - <type>String</type> | ||
| 1996 | - <format/> | ||
| 1997 | - </field> | ||
| 1998 | - <field> | ||
| 1999 | - <name>speed</name> | ||
| 2000 | - <type>String</type> | ||
| 2001 | - <format/> | ||
| 2002 | - </field> | ||
| 2003 | - <field> | ||
| 2004 | - <name>carSeatnNumber</name> | ||
| 2005 | - <type>String</type> | ||
| 2006 | - <format/> | ||
| 2007 | - </field> | ||
| 2008 | - <field> | ||
| 2009 | - <name>carStandard</name> | ||
| 2010 | - <type>String</type> | ||
| 2011 | - <format/> | ||
| 2012 | - </field> | ||
| 2013 | - <field> | ||
| 2014 | - <name>kburnStandard</name> | ||
| 2015 | - <type>String</type> | ||
| 2016 | - <format/> | ||
| 2017 | - </field> | ||
| 2018 | - <field> | ||
| 2019 | - <name>gburnStandard</name> | ||
| 2020 | - <type>String</type> | ||
| 2021 | - <format/> | ||
| 2022 | - </field> | ||
| 2023 | - <field> | ||
| 2024 | - <name>scrapCode</name> | ||
| 2025 | - <type>String</type> | ||
| 2026 | - <format/> | ||
| 2027 | - </field> | ||
| 2028 | - <field> | ||
| 2029 | - <name>makeCodeOne</name> | ||
| 2030 | - <type>String</type> | ||
| 2031 | - <format/> | ||
| 2032 | - </field> | ||
| 2033 | - <field> | ||
| 2034 | - <name>makeCodeTwo</name> | ||
| 2035 | - <type>String</type> | ||
| 2036 | - <format/> | ||
| 2037 | - </field> | ||
| 2038 | - <field> | ||
| 2039 | - <name>carGride</name> | ||
| 2040 | - <type>String</type> | ||
| 2041 | - <format/> | ||
| 2042 | - </field> | ||
| 2043 | - <field> | ||
| 2044 | - <name>emissionsStandard</name> | ||
| 2045 | - <type>String</type> | ||
| 2046 | - <format/> | ||
| 2047 | - </field> | ||
| 2048 | - <field> | ||
| 2049 | - <name>engineCodeOne</name> | ||
| 2050 | - <type>String</type> | ||
| 2051 | - <format/> | ||
| 2052 | - </field> | ||
| 2053 | - <field> | ||
| 2054 | - <name>engineCodeTwo</name> | ||
| 2055 | - <type>String</type> | ||
| 2056 | - <format/> | ||
| 2057 | - </field> | ||
| 2058 | - <field> | ||
| 2059 | - <name>carNumberOne</name> | ||
| 2060 | - <type>String</type> | ||
| 2061 | - <format/> | ||
| 2062 | - </field> | ||
| 2063 | - <field> | ||
| 2064 | - <name>carNumberTwo</name> | ||
| 2065 | - <type>String</type> | ||
| 2066 | - <format/> | ||
| 2067 | - </field> | ||
| 2068 | - <field> | ||
| 2069 | - <name>openDate</name> | ||
| 2070 | - <type>String</type> | ||
| 2071 | - <format/> | ||
| 2072 | - </field> | ||
| 2073 | - <field> | ||
| 2074 | - <name>closeDate</name> | ||
| 2075 | - <type>String</type> | ||
| 2076 | - <format/> | ||
| 2077 | - </field> | ||
| 2078 | - <field> | ||
| 2079 | - <name>hvacCar</name> | ||
| 2080 | - <type>String</type> | ||
| 2081 | - <format/> | ||
| 2082 | - </field> | ||
| 2083 | - <field> | ||
| 2084 | - <name>ticketType</name> | ||
| 2085 | - <type>String</type> | ||
| 2086 | - <format/> | ||
| 2087 | - </field> | ||
| 2088 | - <field> | ||
| 2089 | - <name>ledScreen</name> | ||
| 2090 | - <type>String</type> | ||
| 2091 | - <format/> | ||
| 2092 | - </field> | ||
| 2093 | - <field> | ||
| 2094 | - <name>tvVideoType</name> | ||
| 2095 | - <type>String</type> | ||
| 2096 | - <format/> | ||
| 2097 | - </field> | ||
| 2098 | - <field> | ||
| 2099 | - <name>carType</name> | ||
| 2100 | - <type>String</type> | ||
| 2101 | - <format/> | ||
| 2102 | - </field> | ||
| 2103 | - <field> | ||
| 2104 | - <name>vehicleStats</name> | 598 | + <name>所属公司</name> |
| 2105 | <type>String</type> | 599 | <type>String</type> |
| 2106 | <format/> | 600 | <format/> |
| 2107 | </field> | 601 | </field> |
| 2108 | <field> | 602 | <field> |
| 2109 | - <name>operatorsState</name> | 603 | + <name>所属公司代码</name> |
| 2110 | <type>String</type> | 604 | <type>String</type> |
| 2111 | <format/> | 605 | <format/> |
| 2112 | </field> | 606 | </field> |
| 2113 | <field> | 607 | <field> |
| 2114 | - <name>descriptions</name> | 608 | + <name>所属分公司</name> |
| 2115 | <type>String</type> | 609 | <type>String</type> |
| 2116 | <format/> | 610 | <format/> |
| 2117 | </field> | 611 | </field> |
| 2118 | <field> | 612 | <field> |
| 2119 | - <name>videoCode</name> | 613 | + <name>所属分公司代码</name> |
| 2120 | <type>String</type> | 614 | <type>String</type> |
| 2121 | <format/> | 615 | <format/> |
| 2122 | </field> | 616 | </field> |
| 2123 | <field> | 617 | <field> |
| 2124 | - <name>修改日期</name> | 618 | + <name>供应商名称</name> |
| 2125 | <type>String</type> | 619 | <type>String</type> |
| 2126 | <format/> | 620 | <format/> |
| 2127 | </field> | 621 | </field> |
| 2128 | <field> | 622 | <field> |
| 2129 | - <name>报废日期</name> | 623 | + <name>设备终端号</name> |
| 2130 | <type>String</type> | 624 | <type>String</type> |
| 2131 | <format/> | 625 | <format/> |
| 2132 | </field> | 626 | </field> |
| @@ -2170,8 +664,8 @@ | @@ -2170,8 +664,8 @@ | ||
| 2170 | </custom> | 664 | </custom> |
| 2171 | <cluster_schema/> | 665 | <cluster_schema/> |
| 2172 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | 666 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 2173 | - <xloc>971</xloc> | ||
| 2174 | - <yloc>63</yloc> | 667 | + <xloc>328</xloc> |
| 668 | + <yloc>140</yloc> | ||
| 2175 | <draw>Y</draw> | 669 | <draw>Y</draw> |
| 2176 | </GUI> | 670 | </GUI> |
| 2177 | </step> | 671 | </step> |
| @@ -2189,18 +683,6 @@ | @@ -2189,18 +683,6 @@ | ||
| 2189 | <max_pct_errors/> | 683 | <max_pct_errors/> |
| 2190 | <min_pct_rows/> | 684 | <min_pct_rows/> |
| 2191 | </error> | 685 | </error> |
| 2192 | - <error> | ||
| 2193 | - <source_step>是否的变成数字型</source_step> | ||
| 2194 | - <target_step>错误输出 2 2</target_step> | ||
| 2195 | - <is_enabled>Y</is_enabled> | ||
| 2196 | - <nr_valuename>error_count</nr_valuename> | ||
| 2197 | - <descriptions_valuename>error_desc</descriptions_valuename> | ||
| 2198 | - <fields_valuename>error_column1</fields_valuename> | ||
| 2199 | - <codes_valuename>error_column2</codes_valuename> | ||
| 2200 | - <max_errors/> | ||
| 2201 | - <max_pct_errors/> | ||
| 2202 | - <min_pct_rows/> | ||
| 2203 | - </error> | ||
| 2204 | </step_error_handling> | 686 | </step_error_handling> |
| 2205 | <slave-step-copy-partition-distribution> | 687 | <slave-step-copy-partition-distribution> |
| 2206 | </slave-step-copy-partition-distribution> | 688 | </slave-step-copy-partition-distribution> |
src/main/resources/datatools/ktrs/carsDataOutput.ktr
| @@ -242,20 +242,8 @@ | @@ -242,20 +242,8 @@ | ||
| 242 | </attributes> | 242 | </attributes> |
| 243 | </connection> | 243 | </connection> |
| 244 | <order> | 244 | <order> |
| 245 | - <hop> <from>是否有LED服务屏</from><to>是否有TV视频</to><enabled>Y</enabled> </hop> | ||
| 246 | - <hop> <from>是否空调车</from><to>有无人售票</to><enabled>Y</enabled> </hop> | ||
| 247 | - <hop> <from>有无人售票</from><to>是否有LED服务屏</to><enabled>Y</enabled> </hop> | ||
| 248 | - <hop> <from>表输入</from><to>是否空调车</to><enabled>Y</enabled> </hop> | ||
| 249 | - <hop> <from>是否有TV视频</from><to>供应商名称</to><enabled>Y</enabled> </hop> | ||
| 250 | - <hop> <from>供应商名称</from><to>营运状态标识</to><enabled>Y</enabled> </hop> | ||
| 251 | - <hop> <from>营运状态标识</from><to>营运状态查询</to><enabled>Y</enabled> </hop> | ||
| 252 | - <hop> <from>营运状态查询</from><to>机动车类型标识</to><enabled>Y</enabled> </hop> | ||
| 253 | - <hop> <from>机动车类型标识</from><to>机动车类型查询</to><enabled>Y</enabled> </hop> | ||
| 254 | - <hop> <from>机动车类型查询</from><to>车辆类型标识</to><enabled>Y</enabled> </hop> | ||
| 255 | - <hop> <from>车辆类型标识</from><to>车辆类型查询</to><enabled>Y</enabled> </hop> | ||
| 256 | - <hop> <from>车辆类型查询</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 257 | - <hop> <from>字段选择</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | ||
| 258 | - <hop> <from>字段选择 2</from><to>Excel输出</to><enabled>Y</enabled> </hop> | 245 | + <hop> <from>表输入</from><to>字段选择</to><enabled>Y</enabled> </hop> |
| 246 | + <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 259 | </order> | 247 | </order> |
| 260 | <step> | 248 | <step> |
| 261 | <name>Excel输出</name> | 249 | <name>Excel输出</name> |
| @@ -309,167 +297,27 @@ | @@ -309,167 +297,27 @@ | ||
| 309 | <format/> | 297 | <format/> |
| 310 | </field> | 298 | </field> |
| 311 | <field> | 299 | <field> |
| 312 | - <name>车辆编码</name> | ||
| 313 | - <type>String</type> | ||
| 314 | - <format/> | ||
| 315 | - </field> | ||
| 316 | - <field> | ||
| 317 | - <name>车型类别</name> | ||
| 318 | - <type>String</type> | ||
| 319 | - <format/> | ||
| 320 | - </field> | ||
| 321 | - <field> | ||
| 322 | - <name>座位数</name> | ||
| 323 | - <type>String</type> | ||
| 324 | - <format/> | ||
| 325 | - </field> | ||
| 326 | - <field> | ||
| 327 | - <name>载客标准</name> | ||
| 328 | - <type>String</type> | ||
| 329 | - <format/> | ||
| 330 | - </field> | ||
| 331 | - <field> | ||
| 332 | - <name>技术速度</name> | ||
| 333 | - <type>String</type> | ||
| 334 | - <format/> | ||
| 335 | - </field> | ||
| 336 | - <field> | ||
| 337 | - <name>是否空调</name> | ||
| 338 | - <type>String</type> | ||
| 339 | - <format/> | ||
| 340 | - </field> | ||
| 341 | - <field> | ||
| 342 | - <name>标准油耗(开空调)</name> | ||
| 343 | - <type>String</type> | ||
| 344 | - <format/> | ||
| 345 | - </field> | ||
| 346 | - <field> | ||
| 347 | - <name>标准油耗(关空调)</name> | ||
| 348 | - <type>String</type> | ||
| 349 | - <format/> | ||
| 350 | - </field> | ||
| 351 | - <field> | ||
| 352 | - <name>有无人售票</name> | ||
| 353 | - <type>String</type> | ||
| 354 | - <format/> | ||
| 355 | - </field> | ||
| 356 | - <field> | ||
| 357 | - <name>是否有TV视频</name> | ||
| 358 | - <type>String</type> | ||
| 359 | - <format/> | ||
| 360 | - </field> | ||
| 361 | - <field> | ||
| 362 | - <name>是否有LED服务屏</name> | ||
| 363 | - <type>String</type> | ||
| 364 | - <format/> | ||
| 365 | - </field> | ||
| 366 | - <field> | ||
| 367 | - <name>运营状态</name> | ||
| 368 | - <type>String</type> | ||
| 369 | - <format/> | ||
| 370 | - </field> | ||
| 371 | - <field> | ||
| 372 | - <name>启用日期</name> | ||
| 373 | - <type>String</type> | ||
| 374 | - <format/> | ||
| 375 | - </field> | ||
| 376 | - <field> | ||
| 377 | - <name>取消日期</name> | ||
| 378 | - <type>String</type> | ||
| 379 | - <format/> | ||
| 380 | - </field> | ||
| 381 | - <field> | ||
| 382 | - <name>报废号</name> | ||
| 383 | - <type>String</type> | ||
| 384 | - <format/> | ||
| 385 | - </field> | ||
| 386 | - <field> | ||
| 387 | - <name>报废日期</name> | ||
| 388 | - <type>String</type> | ||
| 389 | - <format/> | ||
| 390 | - </field> | ||
| 391 | - <field> | ||
| 392 | - <name>备注</name> | ||
| 393 | - <type>String</type> | ||
| 394 | - <format/> | ||
| 395 | - </field> | ||
| 396 | - <field> | ||
| 397 | - <name>设备编号</name> | ||
| 398 | - <type>String</type> | ||
| 399 | - <format/> | ||
| 400 | - </field> | ||
| 401 | - <field> | ||
| 402 | - <name>厂牌型号</name> | ||
| 403 | - <type>String</type> | ||
| 404 | - <format/> | ||
| 405 | - </field> | ||
| 406 | - <field> | ||
| 407 | - <name>厂牌型号2</name> | ||
| 408 | - <type>String</type> | ||
| 409 | - <format/> | ||
| 410 | - </field> | ||
| 411 | - <field> | ||
| 412 | - <name>车辆等级标准</name> | ||
| 413 | - <type>String</type> | ||
| 414 | - <format/> | ||
| 415 | - </field> | ||
| 416 | - <field> | ||
| 417 | - <name>出厂排放标准</name> | ||
| 418 | - <type>String</type> | ||
| 419 | - <format/> | ||
| 420 | - </field> | ||
| 421 | - <field> | ||
| 422 | - <name>发动机号码1</name> | ||
| 423 | - <type>String</type> | ||
| 424 | - <format/> | ||
| 425 | - </field> | ||
| 426 | - <field> | ||
| 427 | - <name>发动机号码2</name> | ||
| 428 | - <type>String</type> | ||
| 429 | - <format/> | ||
| 430 | - </field> | ||
| 431 | - <field> | ||
| 432 | - <name>车架号码1</name> | ||
| 433 | - <type>String</type> | ||
| 434 | - <format/> | ||
| 435 | - </field> | ||
| 436 | - <field> | ||
| 437 | - <name>车架号码2</name> | ||
| 438 | - <type>String</type> | ||
| 439 | - <format/> | ||
| 440 | - </field> | ||
| 441 | - <field> | ||
| 442 | - <name>车辆类型</name> | ||
| 443 | - <type>String</type> | ||
| 444 | - <format/> | ||
| 445 | - </field> | ||
| 446 | - <field> | ||
| 447 | <name>所属公司</name> | 300 | <name>所属公司</name> |
| 448 | <type>String</type> | 301 | <type>String</type> |
| 449 | <format/> | 302 | <format/> |
| 450 | </field> | 303 | </field> |
| 451 | <field> | 304 | <field> |
| 452 | - <name>修改日期</name> | ||
| 453 | - <type>String</type> | ||
| 454 | - <format/> | ||
| 455 | - </field> | ||
| 456 | - <field> | ||
| 457 | - <name>是否机动车</name> | 305 | + <name>所属公司代码</name> |
| 458 | <type>String</type> | 306 | <type>String</type> |
| 459 | <format/> | 307 | <format/> |
| 460 | </field> | 308 | </field> |
| 461 | <field> | 309 | <field> |
| 462 | - <name>视频编号</name> | 310 | + <name>所属分公司</name> |
| 463 | <type>String</type> | 311 | <type>String</type> |
| 464 | <format/> | 312 | <format/> |
| 465 | </field> | 313 | </field> |
| 466 | <field> | 314 | <field> |
| 467 | - <name>设备供应厂商</name> | 315 | + <name>所属分公司代码</name> |
| 468 | <type>String</type> | 316 | <type>String</type> |
| 469 | <format/> | 317 | <format/> |
| 470 | </field> | 318 | </field> |
| 471 | <field> | 319 | <field> |
| 472 | - <name>分公司</name> | 320 | + <name>设备终端号</name> |
| 473 | <type>String</type> | 321 | <type>String</type> |
| 474 | <format/> | 322 | <format/> |
| 475 | </field> | 323 | </field> |
| @@ -493,40 +341,8 @@ | @@ -493,40 +341,8 @@ | ||
| 493 | </custom> | 341 | </custom> |
| 494 | <cluster_schema/> | 342 | <cluster_schema/> |
| 495 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | 343 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 496 | - <xloc>574</xloc> | ||
| 497 | - <yloc>270</yloc> | ||
| 498 | - <draw>Y</draw> | ||
| 499 | - </GUI> | ||
| 500 | - </step> | ||
| 501 | - | ||
| 502 | - <step> | ||
| 503 | - <name>供应商名称</name> | ||
| 504 | - <type>ValueMapper</type> | ||
| 505 | - <description/> | ||
| 506 | - <distribute>Y</distribute> | ||
| 507 | - <custom_distribution/> | ||
| 508 | - <copies>1</copies> | ||
| 509 | - <partitioning> | ||
| 510 | - <method>none</method> | ||
| 511 | - <schema_name/> | ||
| 512 | - </partitioning> | ||
| 513 | - <field_to_use>supplier_name</field_to_use> | ||
| 514 | - <target_field>supplier_name_str</target_field> | ||
| 515 | - <non_match_default/> | ||
| 516 | - <fields> | ||
| 517 | - <field> | ||
| 518 | - <source_value>1</source_value> | ||
| 519 | - <target_value>巴士拓华</target_value> | ||
| 520 | - </field> | ||
| 521 | - <field> | ||
| 522 | - <source_value>2</source_value> | ||
| 523 | - <target_value>博康</target_value> | ||
| 524 | - </field> | ||
| 525 | - </fields> | ||
| 526 | - <cluster_schema/> | ||
| 527 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 528 | - <xloc>449</xloc> | ||
| 529 | - <yloc>68</yloc> | 344 | + <xloc>282</xloc> |
| 345 | + <yloc>169</yloc> | ||
| 530 | <draw>Y</draw> | 346 | <draw>Y</draw> |
| 531 | </GUI> | 347 | </GUI> |
| 532 | </step> | 348 | </step> |
| @@ -542,986 +358,43 @@ | @@ -542,986 +358,43 @@ | ||
| 542 | <method>none</method> | 358 | <method>none</method> |
| 543 | <schema_name/> | 359 | <schema_name/> |
| 544 | </partitioning> | 360 | </partitioning> |
| 545 | - <fields> <select_unspecified>N</select_unspecified> | ||
| 546 | - <meta> <name>car_plate</name> | 361 | + <fields> <field> <name>car_plate</name> |
| 547 | <rename>车牌号</rename> | 362 | <rename>车牌号</rename> |
| 548 | - <type>String</type> | ||
| 549 | <length>-2</length> | 363 | <length>-2</length> |
| 550 | <precision>-2</precision> | 364 | <precision>-2</precision> |
| 551 | - <conversion_mask/> | ||
| 552 | - <date_format_lenient>false</date_format_lenient> | ||
| 553 | - <date_format_locale/> | ||
| 554 | - <date_format_timezone/> | ||
| 555 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 556 | - <encoding/> | ||
| 557 | - <decimal_symbol/> | ||
| 558 | - <grouping_symbol/> | ||
| 559 | - <currency_symbol/> | ||
| 560 | - <storage_type/> | ||
| 561 | - </meta> <meta> <name>inside_code</name> | 365 | + </field> <field> <name>inside_code</name> |
| 562 | <rename>内部编码</rename> | 366 | <rename>内部编码</rename> |
| 563 | - <type>String</type> | ||
| 564 | - <length>-2</length> | ||
| 565 | - <precision>-2</precision> | ||
| 566 | - <conversion_mask/> | ||
| 567 | - <date_format_lenient>false</date_format_lenient> | ||
| 568 | - <date_format_locale/> | ||
| 569 | - <date_format_timezone/> | ||
| 570 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 571 | - <encoding/> | ||
| 572 | - <decimal_symbol/> | ||
| 573 | - <grouping_symbol/> | ||
| 574 | - <currency_symbol/> | ||
| 575 | - <storage_type/> | ||
| 576 | - </meta> <meta> <name>car_code</name> | ||
| 577 | - <rename>车辆编码</rename> | ||
| 578 | - <type>String</type> | ||
| 579 | - <length>-2</length> | ||
| 580 | - <precision>-2</precision> | ||
| 581 | - <conversion_mask/> | ||
| 582 | - <date_format_lenient>false</date_format_lenient> | ||
| 583 | - <date_format_locale/> | ||
| 584 | - <date_format_timezone/> | ||
| 585 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 586 | - <encoding/> | ||
| 587 | - <decimal_symbol/> | ||
| 588 | - <grouping_symbol/> | ||
| 589 | - <currency_symbol/> | ||
| 590 | - <storage_type/> | ||
| 591 | - </meta> <meta> <name>car_class</name> | ||
| 592 | - <rename>车型类别</rename> | ||
| 593 | - <type>String</type> | ||
| 594 | - <length>-2</length> | ||
| 595 | - <precision>-2</precision> | ||
| 596 | - <conversion_mask/> | ||
| 597 | - <date_format_lenient>false</date_format_lenient> | ||
| 598 | - <date_format_locale/> | ||
| 599 | - <date_format_timezone/> | ||
| 600 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 601 | - <encoding/> | ||
| 602 | - <decimal_symbol/> | ||
| 603 | - <grouping_symbol/> | ||
| 604 | - <currency_symbol/> | ||
| 605 | - <storage_type/> | ||
| 606 | - </meta> <meta> <name>car_seatn_number</name> | ||
| 607 | - <rename>座位数</rename> | ||
| 608 | - <type>String</type> | ||
| 609 | - <length>-2</length> | ||
| 610 | - <precision>-2</precision> | ||
| 611 | - <conversion_mask/> | ||
| 612 | - <date_format_lenient>false</date_format_lenient> | ||
| 613 | - <date_format_locale/> | ||
| 614 | - <date_format_timezone/> | ||
| 615 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 616 | - <encoding/> | ||
| 617 | - <decimal_symbol/> | ||
| 618 | - <grouping_symbol/> | ||
| 619 | - <currency_symbol/> | ||
| 620 | - <storage_type/> | ||
| 621 | - </meta> <meta> <name>car_standard</name> | ||
| 622 | - <rename>载客标准</rename> | ||
| 623 | - <type>String</type> | ||
| 624 | - <length>-2</length> | ||
| 625 | - <precision>-2</precision> | ||
| 626 | - <conversion_mask/> | ||
| 627 | - <date_format_lenient>false</date_format_lenient> | ||
| 628 | - <date_format_locale/> | ||
| 629 | - <date_format_timezone/> | ||
| 630 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 631 | - <encoding/> | ||
| 632 | - <decimal_symbol/> | ||
| 633 | - <grouping_symbol/> | ||
| 634 | - <currency_symbol/> | ||
| 635 | - <storage_type/> | ||
| 636 | - </meta> <meta> <name>speed</name> | ||
| 637 | - <rename>技术速度</rename> | ||
| 638 | - <type>String</type> | ||
| 639 | - <length>-2</length> | ||
| 640 | - <precision>-2</precision> | ||
| 641 | - <conversion_mask/> | ||
| 642 | - <date_format_lenient>false</date_format_lenient> | ||
| 643 | - <date_format_locale/> | ||
| 644 | - <date_format_timezone/> | ||
| 645 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 646 | - <encoding/> | ||
| 647 | - <decimal_symbol/> | ||
| 648 | - <grouping_symbol/> | ||
| 649 | - <currency_symbol/> | ||
| 650 | - <storage_type/> | ||
| 651 | - </meta> <meta> <name>hvac_car_str</name> | ||
| 652 | - <rename>是否空调</rename> | ||
| 653 | - <type>String</type> | ||
| 654 | - <length>-2</length> | ||
| 655 | - <precision>-2</precision> | ||
| 656 | - <conversion_mask/> | ||
| 657 | - <date_format_lenient>false</date_format_lenient> | ||
| 658 | - <date_format_locale/> | ||
| 659 | - <date_format_timezone/> | ||
| 660 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 661 | - <encoding/> | ||
| 662 | - <decimal_symbol/> | ||
| 663 | - <grouping_symbol/> | ||
| 664 | - <currency_symbol/> | ||
| 665 | - <storage_type/> | ||
| 666 | - </meta> <meta> <name>kburn_standard</name> | ||
| 667 | - <rename>标准油耗(开空调)</rename> | ||
| 668 | - <type>String</type> | ||
| 669 | - <length>-2</length> | ||
| 670 | - <precision>-2</precision> | ||
| 671 | - <conversion_mask/> | ||
| 672 | - <date_format_lenient>false</date_format_lenient> | ||
| 673 | - <date_format_locale/> | ||
| 674 | - <date_format_timezone/> | ||
| 675 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 676 | - <encoding/> | ||
| 677 | - <decimal_symbol/> | ||
| 678 | - <grouping_symbol/> | ||
| 679 | - <currency_symbol/> | ||
| 680 | - <storage_type/> | ||
| 681 | - </meta> <meta> <name>gburn_standard</name> | ||
| 682 | - <rename>标准油耗(关空调)</rename> | ||
| 683 | - <type>String</type> | ||
| 684 | - <length>-2</length> | ||
| 685 | - <precision>-2</precision> | ||
| 686 | - <conversion_mask/> | ||
| 687 | - <date_format_lenient>false</date_format_lenient> | ||
| 688 | - <date_format_locale/> | ||
| 689 | - <date_format_timezone/> | ||
| 690 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 691 | - <encoding/> | ||
| 692 | - <decimal_symbol/> | ||
| 693 | - <grouping_symbol/> | ||
| 694 | - <currency_symbol/> | ||
| 695 | - <storage_type/> | ||
| 696 | - </meta> <meta> <name>ticket_type_str</name> | ||
| 697 | - <rename>有无人售票</rename> | ||
| 698 | - <type>String</type> | ||
| 699 | - <length>-2</length> | ||
| 700 | - <precision>-2</precision> | ||
| 701 | - <conversion_mask/> | ||
| 702 | - <date_format_lenient>false</date_format_lenient> | ||
| 703 | - <date_format_locale/> | ||
| 704 | - <date_format_timezone/> | ||
| 705 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 706 | - <encoding/> | ||
| 707 | - <decimal_symbol/> | ||
| 708 | - <grouping_symbol/> | ||
| 709 | - <currency_symbol/> | ||
| 710 | - <storage_type/> | ||
| 711 | - </meta> <meta> <name>tv_video_type_str</name> | ||
| 712 | - <rename>是否有TV视频</rename> | ||
| 713 | - <type>String</type> | ||
| 714 | - <length>-2</length> | ||
| 715 | - <precision>-2</precision> | ||
| 716 | - <conversion_mask/> | ||
| 717 | - <date_format_lenient>false</date_format_lenient> | ||
| 718 | - <date_format_locale/> | ||
| 719 | - <date_format_timezone/> | ||
| 720 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 721 | - <encoding/> | ||
| 722 | - <decimal_symbol/> | ||
| 723 | - <grouping_symbol/> | ||
| 724 | - <currency_symbol/> | ||
| 725 | - <storage_type/> | ||
| 726 | - </meta> <meta> <name>led_screen_str</name> | ||
| 727 | - <rename>是否有LED服务屏</rename> | ||
| 728 | - <type>String</type> | ||
| 729 | - <length>-2</length> | ||
| 730 | - <precision>-2</precision> | ||
| 731 | - <conversion_mask/> | ||
| 732 | - <date_format_lenient>false</date_format_lenient> | ||
| 733 | - <date_format_locale/> | ||
| 734 | - <date_format_timezone/> | ||
| 735 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 736 | - <encoding/> | ||
| 737 | - <decimal_symbol/> | ||
| 738 | - <grouping_symbol/> | ||
| 739 | - <currency_symbol/> | ||
| 740 | - <storage_type/> | ||
| 741 | - </meta> <meta> <name>operators_state_str</name> | ||
| 742 | - <rename>运营状态</rename> | ||
| 743 | - <type>String</type> | ||
| 744 | - <length>-2</length> | ||
| 745 | - <precision>-2</precision> | ||
| 746 | - <conversion_mask/> | ||
| 747 | - <date_format_lenient>false</date_format_lenient> | ||
| 748 | - <date_format_locale/> | ||
| 749 | - <date_format_timezone/> | ||
| 750 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 751 | - <encoding/> | ||
| 752 | - <decimal_symbol/> | ||
| 753 | - <grouping_symbol/> | ||
| 754 | - <currency_symbol/> | ||
| 755 | - <storage_type/> | ||
| 756 | - </meta> <meta> <name>open_date</name> | ||
| 757 | - <rename>启用日期</rename> | ||
| 758 | - <type>String</type> | ||
| 759 | - <length>-2</length> | ||
| 760 | - <precision>-2</precision> | ||
| 761 | - <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 762 | - <date_format_lenient>false</date_format_lenient> | ||
| 763 | - <date_format_locale/> | ||
| 764 | - <date_format_timezone/> | ||
| 765 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 766 | - <encoding/> | ||
| 767 | - <decimal_symbol/> | ||
| 768 | - <grouping_symbol/> | ||
| 769 | - <currency_symbol/> | ||
| 770 | - <storage_type/> | ||
| 771 | - </meta> <meta> <name>close_date</name> | ||
| 772 | - <rename>取消日期</rename> | ||
| 773 | - <type>String</type> | ||
| 774 | - <length>-2</length> | ||
| 775 | - <precision>-2</precision> | ||
| 776 | - <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 777 | - <date_format_lenient>false</date_format_lenient> | ||
| 778 | - <date_format_locale/> | ||
| 779 | - <date_format_timezone/> | ||
| 780 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 781 | - <encoding/> | ||
| 782 | - <decimal_symbol/> | ||
| 783 | - <grouping_symbol/> | ||
| 784 | - <currency_symbol/> | ||
| 785 | - <storage_type/> | ||
| 786 | - </meta> <meta> <name>scrap_code</name> | ||
| 787 | - <rename>报废号</rename> | ||
| 788 | - <type>String</type> | ||
| 789 | - <length>-2</length> | ||
| 790 | - <precision>-2</precision> | ||
| 791 | - <conversion_mask/> | ||
| 792 | - <date_format_lenient>false</date_format_lenient> | ||
| 793 | - <date_format_locale/> | ||
| 794 | - <date_format_timezone/> | ||
| 795 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 796 | - <encoding/> | ||
| 797 | - <decimal_symbol/> | ||
| 798 | - <grouping_symbol/> | ||
| 799 | - <currency_symbol/> | ||
| 800 | - <storage_type/> | ||
| 801 | - </meta> <meta> <name>scrap_date</name> | ||
| 802 | - <rename>报废日期</rename> | ||
| 803 | - <type>String</type> | ||
| 804 | - <length>-2</length> | ||
| 805 | - <precision>-2</precision> | ||
| 806 | - <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 807 | - <date_format_lenient>false</date_format_lenient> | ||
| 808 | - <date_format_locale/> | ||
| 809 | - <date_format_timezone/> | ||
| 810 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 811 | - <encoding/> | ||
| 812 | - <decimal_symbol/> | ||
| 813 | - <grouping_symbol/> | ||
| 814 | - <currency_symbol/> | ||
| 815 | - <storage_type/> | ||
| 816 | - </meta> <meta> <name>descriptions</name> | ||
| 817 | - <rename>备注</rename> | ||
| 818 | - <type>String</type> | ||
| 819 | - <length>-2</length> | ||
| 820 | - <precision>-2</precision> | ||
| 821 | - <conversion_mask/> | ||
| 822 | - <date_format_lenient>false</date_format_lenient> | ||
| 823 | - <date_format_locale/> | ||
| 824 | - <date_format_timezone/> | ||
| 825 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 826 | - <encoding/> | ||
| 827 | - <decimal_symbol/> | ||
| 828 | - <grouping_symbol/> | ||
| 829 | - <currency_symbol/> | ||
| 830 | - <storage_type/> | ||
| 831 | - </meta> <meta> <name>equipment_code</name> | ||
| 832 | - <rename>设备编号</rename> | ||
| 833 | - <type>String</type> | ||
| 834 | - <length>-2</length> | ||
| 835 | - <precision>-2</precision> | ||
| 836 | - <conversion_mask/> | ||
| 837 | - <date_format_lenient>false</date_format_lenient> | ||
| 838 | - <date_format_locale/> | ||
| 839 | - <date_format_timezone/> | ||
| 840 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 841 | - <encoding/> | ||
| 842 | - <decimal_symbol/> | ||
| 843 | - <grouping_symbol/> | ||
| 844 | - <currency_symbol/> | ||
| 845 | - <storage_type/> | ||
| 846 | - </meta> <meta> <name>make_code_one</name> | ||
| 847 | - <rename>厂牌型号</rename> | ||
| 848 | - <type>String</type> | ||
| 849 | - <length>-2</length> | ||
| 850 | - <precision>-2</precision> | ||
| 851 | - <conversion_mask/> | ||
| 852 | - <date_format_lenient>false</date_format_lenient> | ||
| 853 | - <date_format_locale/> | ||
| 854 | - <date_format_timezone/> | ||
| 855 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 856 | - <encoding/> | ||
| 857 | - <decimal_symbol/> | ||
| 858 | - <grouping_symbol/> | ||
| 859 | - <currency_symbol/> | ||
| 860 | - <storage_type/> | ||
| 861 | - </meta> <meta> <name>make_code_two</name> | ||
| 862 | - <rename>厂牌型号2</rename> | ||
| 863 | - <type>String</type> | ||
| 864 | - <length>-2</length> | ||
| 865 | - <precision>-2</precision> | ||
| 866 | - <conversion_mask/> | ||
| 867 | - <date_format_lenient>false</date_format_lenient> | ||
| 868 | - <date_format_locale/> | ||
| 869 | - <date_format_timezone/> | ||
| 870 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 871 | - <encoding/> | ||
| 872 | - <decimal_symbol/> | ||
| 873 | - <grouping_symbol/> | ||
| 874 | - <currency_symbol/> | ||
| 875 | - <storage_type/> | ||
| 876 | - </meta> <meta> <name>car_gride</name> | ||
| 877 | - <rename>车辆等级标准</rename> | ||
| 878 | - <type>String</type> | ||
| 879 | - <length>-2</length> | ||
| 880 | - <precision>-2</precision> | ||
| 881 | - <conversion_mask/> | ||
| 882 | - <date_format_lenient>false</date_format_lenient> | ||
| 883 | - <date_format_locale/> | ||
| 884 | - <date_format_timezone/> | ||
| 885 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 886 | - <encoding/> | ||
| 887 | - <decimal_symbol/> | ||
| 888 | - <grouping_symbol/> | ||
| 889 | - <currency_symbol/> | ||
| 890 | - <storage_type/> | ||
| 891 | - </meta> <meta> <name>emissions_standard</name> | ||
| 892 | - <rename>出厂排放标准</rename> | ||
| 893 | - <type>String</type> | ||
| 894 | - <length>-2</length> | ||
| 895 | - <precision>-2</precision> | ||
| 896 | - <conversion_mask/> | ||
| 897 | - <date_format_lenient>false</date_format_lenient> | ||
| 898 | - <date_format_locale/> | ||
| 899 | - <date_format_timezone/> | ||
| 900 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 901 | - <encoding/> | ||
| 902 | - <decimal_symbol/> | ||
| 903 | - <grouping_symbol/> | ||
| 904 | - <currency_symbol/> | ||
| 905 | - <storage_type/> | ||
| 906 | - </meta> <meta> <name>engine_code_one</name> | ||
| 907 | - <rename>发动机号码1</rename> | ||
| 908 | - <type>String</type> | ||
| 909 | - <length>-2</length> | ||
| 910 | - <precision>-2</precision> | ||
| 911 | - <conversion_mask/> | ||
| 912 | - <date_format_lenient>false</date_format_lenient> | ||
| 913 | - <date_format_locale/> | ||
| 914 | - <date_format_timezone/> | ||
| 915 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 916 | - <encoding/> | ||
| 917 | - <decimal_symbol/> | ||
| 918 | - <grouping_symbol/> | ||
| 919 | - <currency_symbol/> | ||
| 920 | - <storage_type/> | ||
| 921 | - </meta> <meta> <name>engine_code_two</name> | ||
| 922 | - <rename>发动机号码2</rename> | ||
| 923 | - <type>String</type> | ||
| 924 | - <length>-2</length> | ||
| 925 | - <precision>-2</precision> | ||
| 926 | - <conversion_mask/> | ||
| 927 | - <date_format_lenient>false</date_format_lenient> | ||
| 928 | - <date_format_locale/> | ||
| 929 | - <date_format_timezone/> | ||
| 930 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 931 | - <encoding/> | ||
| 932 | - <decimal_symbol/> | ||
| 933 | - <grouping_symbol/> | ||
| 934 | - <currency_symbol/> | ||
| 935 | - <storage_type/> | ||
| 936 | - </meta> <meta> <name>car_number_one</name> | ||
| 937 | - <rename>车架号码1</rename> | ||
| 938 | - <type>String</type> | ||
| 939 | - <length>-2</length> | ||
| 940 | - <precision>-2</precision> | ||
| 941 | - <conversion_mask/> | ||
| 942 | - <date_format_lenient>false</date_format_lenient> | ||
| 943 | - <date_format_locale/> | ||
| 944 | - <date_format_timezone/> | ||
| 945 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 946 | - <encoding/> | ||
| 947 | - <decimal_symbol/> | ||
| 948 | - <grouping_symbol/> | ||
| 949 | - <currency_symbol/> | ||
| 950 | - <storage_type/> | ||
| 951 | - </meta> <meta> <name>car_number_two</name> | ||
| 952 | - <rename>车架号码2</rename> | ||
| 953 | - <type>String</type> | ||
| 954 | - <length>-2</length> | ||
| 955 | - <precision>-2</precision> | ||
| 956 | - <conversion_mask/> | ||
| 957 | - <date_format_lenient>false</date_format_lenient> | ||
| 958 | - <date_format_locale/> | ||
| 959 | - <date_format_timezone/> | ||
| 960 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 961 | - <encoding/> | ||
| 962 | - <decimal_symbol/> | ||
| 963 | - <grouping_symbol/> | ||
| 964 | - <currency_symbol/> | ||
| 965 | - <storage_type/> | ||
| 966 | - </meta> <meta> <name>car_type_str</name> | ||
| 967 | - <rename>车辆类型</rename> | ||
| 968 | - <type>String</type> | ||
| 969 | <length>-2</length> | 367 | <length>-2</length> |
| 970 | <precision>-2</precision> | 368 | <precision>-2</precision> |
| 971 | - <conversion_mask/> | ||
| 972 | - <date_format_lenient>false</date_format_lenient> | ||
| 973 | - <date_format_locale/> | ||
| 974 | - <date_format_timezone/> | ||
| 975 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 976 | - <encoding/> | ||
| 977 | - <decimal_symbol/> | ||
| 978 | - <grouping_symbol/> | ||
| 979 | - <currency_symbol/> | ||
| 980 | - <storage_type/> | ||
| 981 | - </meta> <meta> <name>company</name> | 369 | + </field> <field> <name>company</name> |
| 982 | <rename>所属公司</rename> | 370 | <rename>所属公司</rename> |
| 983 | - <type>String</type> | ||
| 984 | <length>-2</length> | 371 | <length>-2</length> |
| 985 | <precision>-2</precision> | 372 | <precision>-2</precision> |
| 986 | - <conversion_mask/> | ||
| 987 | - <date_format_lenient>false</date_format_lenient> | ||
| 988 | - <date_format_locale/> | ||
| 989 | - <date_format_timezone/> | ||
| 990 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 991 | - <encoding/> | ||
| 992 | - <decimal_symbol/> | ||
| 993 | - <grouping_symbol/> | ||
| 994 | - <currency_symbol/> | ||
| 995 | - <storage_type/> | ||
| 996 | - </meta> <meta> <name>update_date</name> | ||
| 997 | - <rename>修改日期</rename> | ||
| 998 | - <type>String</type> | 373 | + </field> <field> <name>business_code</name> |
| 374 | + <rename>所属公司代码</rename> | ||
| 999 | <length>-2</length> | 375 | <length>-2</length> |
| 1000 | <precision>-2</precision> | 376 | <precision>-2</precision> |
| 1001 | - <conversion_mask>yyyy-MM-dd HH:mm:ss</conversion_mask> | ||
| 1002 | - <date_format_lenient>false</date_format_lenient> | ||
| 1003 | - <date_format_locale/> | ||
| 1004 | - <date_format_timezone/> | ||
| 1005 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1006 | - <encoding/> | ||
| 1007 | - <decimal_symbol/> | ||
| 1008 | - <grouping_symbol/> | ||
| 1009 | - <currency_symbol/> | ||
| 1010 | - <storage_type/> | ||
| 1011 | - </meta> <meta> <name>vehicle_stats_str</name> | ||
| 1012 | - <rename>是否机动车</rename> | ||
| 1013 | - <type>String</type> | 377 | + </field> <field> <name>branche_company</name> |
| 378 | + <rename>所属分公司</rename> | ||
| 1014 | <length>-2</length> | 379 | <length>-2</length> |
| 1015 | <precision>-2</precision> | 380 | <precision>-2</precision> |
| 1016 | - <conversion_mask/> | ||
| 1017 | - <date_format_lenient>false</date_format_lenient> | ||
| 1018 | - <date_format_locale/> | ||
| 1019 | - <date_format_timezone/> | ||
| 1020 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1021 | - <encoding/> | ||
| 1022 | - <decimal_symbol/> | ||
| 1023 | - <grouping_symbol/> | ||
| 1024 | - <currency_symbol/> | ||
| 1025 | - <storage_type/> | ||
| 1026 | - </meta> <meta> <name>video_code</name> | ||
| 1027 | - <rename>视频编号</rename> | ||
| 1028 | - <type>String</type> | 381 | + </field> <field> <name>branche_company_code</name> |
| 382 | + <rename>所属分公司代码</rename> | ||
| 1029 | <length>-2</length> | 383 | <length>-2</length> |
| 1030 | <precision>-2</precision> | 384 | <precision>-2</precision> |
| 1031 | - <conversion_mask/> | ||
| 1032 | - <date_format_lenient>false</date_format_lenient> | ||
| 1033 | - <date_format_locale/> | ||
| 1034 | - <date_format_timezone/> | ||
| 1035 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1036 | - <encoding/> | ||
| 1037 | - <decimal_symbol/> | ||
| 1038 | - <grouping_symbol/> | ||
| 1039 | - <currency_symbol/> | ||
| 1040 | - <storage_type/> | ||
| 1041 | - </meta> <meta> <name>supplier_name_str</name> | 385 | + </field> <field> <name>supplier_name</name> |
| 1042 | <rename>设备供应厂商</rename> | 386 | <rename>设备供应厂商</rename> |
| 1043 | - <type>String</type> | ||
| 1044 | - <length>-2</length> | ||
| 1045 | - <precision>-2</precision> | ||
| 1046 | - <conversion_mask/> | ||
| 1047 | - <date_format_lenient>false</date_format_lenient> | ||
| 1048 | - <date_format_locale/> | ||
| 1049 | - <date_format_timezone/> | ||
| 1050 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1051 | - <encoding/> | ||
| 1052 | - <decimal_symbol/> | ||
| 1053 | - <grouping_symbol/> | ||
| 1054 | - <currency_symbol/> | ||
| 1055 | - <storage_type/> | ||
| 1056 | - </meta> <meta> <name>branche_company</name> | ||
| 1057 | - <rename>分公司</rename> | ||
| 1058 | - <type>String</type> | ||
| 1059 | - <length>-2</length> | ||
| 1060 | - <precision>-2</precision> | ||
| 1061 | - <conversion_mask/> | ||
| 1062 | - <date_format_lenient>false</date_format_lenient> | ||
| 1063 | - <date_format_locale/> | ||
| 1064 | - <date_format_timezone/> | ||
| 1065 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1066 | - <encoding/> | ||
| 1067 | - <decimal_symbol/> | ||
| 1068 | - <grouping_symbol/> | ||
| 1069 | - <currency_symbol/> | ||
| 1070 | - <storage_type/> | ||
| 1071 | - </meta> </fields> <cluster_schema/> | ||
| 1072 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1073 | - <xloc>808</xloc> | ||
| 1074 | - <yloc>267</yloc> | ||
| 1075 | - <draw>Y</draw> | ||
| 1076 | - </GUI> | ||
| 1077 | - </step> | ||
| 1078 | - | ||
| 1079 | - <step> | ||
| 1080 | - <name>字段选择 2</name> | ||
| 1081 | - <type>SelectValues</type> | ||
| 1082 | - <description/> | ||
| 1083 | - <distribute>Y</distribute> | ||
| 1084 | - <custom_distribution/> | ||
| 1085 | - <copies>1</copies> | ||
| 1086 | - <partitioning> | ||
| 1087 | - <method>none</method> | ||
| 1088 | - <schema_name/> | ||
| 1089 | - </partitioning> | ||
| 1090 | - <fields> <field> <name>车牌号</name> | ||
| 1091 | - <rename/> | ||
| 1092 | - <length>-2</length> | ||
| 1093 | - <precision>-2</precision> | ||
| 1094 | - </field> <field> <name>内部编码</name> | ||
| 1095 | - <rename/> | ||
| 1096 | - <length>-2</length> | ||
| 1097 | - <precision>-2</precision> | ||
| 1098 | - </field> <field> <name>车辆编码</name> | ||
| 1099 | - <rename/> | ||
| 1100 | - <length>-2</length> | ||
| 1101 | - <precision>-2</precision> | ||
| 1102 | - </field> <field> <name>车型类别</name> | ||
| 1103 | - <rename/> | ||
| 1104 | - <length>-2</length> | ||
| 1105 | - <precision>-2</precision> | ||
| 1106 | - </field> <field> <name>座位数</name> | ||
| 1107 | - <rename/> | ||
| 1108 | - <length>-2</length> | ||
| 1109 | - <precision>-2</precision> | ||
| 1110 | - </field> <field> <name>载客标准</name> | ||
| 1111 | - <rename/> | ||
| 1112 | - <length>-2</length> | ||
| 1113 | - <precision>-2</precision> | ||
| 1114 | - </field> <field> <name>技术速度</name> | ||
| 1115 | - <rename/> | ||
| 1116 | <length>-2</length> | 387 | <length>-2</length> |
| 1117 | <precision>-2</precision> | 388 | <precision>-2</precision> |
| 1118 | - </field> <field> <name>是否空调</name> | ||
| 1119 | - <rename/> | ||
| 1120 | - <length>-2</length> | ||
| 1121 | - <precision>-2</precision> | ||
| 1122 | - </field> <field> <name>标准油耗(开空调)</name> | ||
| 1123 | - <rename/> | ||
| 1124 | - <length>-2</length> | ||
| 1125 | - <precision>-2</precision> | ||
| 1126 | - </field> <field> <name>标准油耗(关空调)</name> | ||
| 1127 | - <rename/> | ||
| 1128 | - <length>-2</length> | ||
| 1129 | - <precision>-2</precision> | ||
| 1130 | - </field> <field> <name>有无人售票</name> | ||
| 1131 | - <rename/> | ||
| 1132 | - <length>-2</length> | ||
| 1133 | - <precision>-2</precision> | ||
| 1134 | - </field> <field> <name>是否有TV视频</name> | ||
| 1135 | - <rename/> | ||
| 1136 | - <length>-2</length> | ||
| 1137 | - <precision>-2</precision> | ||
| 1138 | - </field> <field> <name>是否有LED服务屏</name> | ||
| 1139 | - <rename/> | ||
| 1140 | - <length>-2</length> | ||
| 1141 | - <precision>-2</precision> | ||
| 1142 | - </field> <field> <name>运营状态</name> | ||
| 1143 | - <rename/> | ||
| 1144 | - <length>-2</length> | ||
| 1145 | - <precision>-2</precision> | ||
| 1146 | - </field> <field> <name>启用日期</name> | ||
| 1147 | - <rename/> | ||
| 1148 | - <length>-2</length> | ||
| 1149 | - <precision>-2</precision> | ||
| 1150 | - </field> <field> <name>取消日期</name> | ||
| 1151 | - <rename/> | ||
| 1152 | - <length>-2</length> | ||
| 1153 | - <precision>-2</precision> | ||
| 1154 | - </field> <field> <name>报废号</name> | ||
| 1155 | - <rename/> | ||
| 1156 | - <length>-2</length> | ||
| 1157 | - <precision>-2</precision> | ||
| 1158 | - </field> <field> <name>报废日期</name> | ||
| 1159 | - <rename/> | ||
| 1160 | - <length>-2</length> | ||
| 1161 | - <precision>-2</precision> | ||
| 1162 | - </field> <field> <name>备注</name> | ||
| 1163 | - <rename/> | ||
| 1164 | - <length>-2</length> | ||
| 1165 | - <precision>-2</precision> | ||
| 1166 | - </field> <field> <name>设备编号</name> | ||
| 1167 | - <rename/> | ||
| 1168 | - <length>-2</length> | ||
| 1169 | - <precision>-2</precision> | ||
| 1170 | - </field> <field> <name>厂牌型号</name> | ||
| 1171 | - <rename/> | ||
| 1172 | - <length>-2</length> | ||
| 1173 | - <precision>-2</precision> | ||
| 1174 | - </field> <field> <name>厂牌型号2</name> | ||
| 1175 | - <rename/> | ||
| 1176 | - <length>-2</length> | ||
| 1177 | - <precision>-2</precision> | ||
| 1178 | - </field> <field> <name>车辆等级标准</name> | ||
| 1179 | - <rename/> | ||
| 1180 | - <length>-2</length> | ||
| 1181 | - <precision>-2</precision> | ||
| 1182 | - </field> <field> <name>出厂排放标准</name> | ||
| 1183 | - <rename/> | ||
| 1184 | - <length>-2</length> | ||
| 1185 | - <precision>-2</precision> | ||
| 1186 | - </field> <field> <name>发动机号码1</name> | ||
| 1187 | - <rename/> | ||
| 1188 | - <length>-2</length> | ||
| 1189 | - <precision>-2</precision> | ||
| 1190 | - </field> <field> <name>发动机号码2</name> | ||
| 1191 | - <rename/> | ||
| 1192 | - <length>-2</length> | ||
| 1193 | - <precision>-2</precision> | ||
| 1194 | - </field> <field> <name>车架号码1</name> | ||
| 1195 | - <rename/> | ||
| 1196 | - <length>-2</length> | ||
| 1197 | - <precision>-2</precision> | ||
| 1198 | - </field> <field> <name>车架号码2</name> | ||
| 1199 | - <rename/> | ||
| 1200 | - <length>-2</length> | ||
| 1201 | - <precision>-2</precision> | ||
| 1202 | - </field> <field> <name>车辆类型</name> | ||
| 1203 | - <rename/> | ||
| 1204 | - <length>-2</length> | ||
| 1205 | - <precision>-2</precision> | ||
| 1206 | - </field> <field> <name>所属公司</name> | ||
| 1207 | - <rename/> | ||
| 1208 | - <length>-2</length> | ||
| 1209 | - <precision>-2</precision> | ||
| 1210 | - </field> <field> <name>修改日期</name> | ||
| 1211 | - <rename/> | ||
| 1212 | - <length>-2</length> | ||
| 1213 | - <precision>-2</precision> | ||
| 1214 | - </field> <field> <name>是否机动车</name> | ||
| 1215 | - <rename/> | ||
| 1216 | - <length>-2</length> | ||
| 1217 | - <precision>-2</precision> | ||
| 1218 | - </field> <field> <name>视频编号</name> | ||
| 1219 | - <rename/> | ||
| 1220 | - <length>-2</length> | ||
| 1221 | - <precision>-2</precision> | ||
| 1222 | - </field> <field> <name>设备供应厂商</name> | ||
| 1223 | - <rename/> | ||
| 1224 | - <length>-2</length> | ||
| 1225 | - <precision>-2</precision> | ||
| 1226 | - </field> <field> <name>分公司</name> | ||
| 1227 | - <rename/> | 389 | + </field> <field> <name>equipment_code</name> |
| 390 | + <rename>设备终端号</rename> | ||
| 1228 | <length>-2</length> | 391 | <length>-2</length> |
| 1229 | <precision>-2</precision> | 392 | <precision>-2</precision> |
| 1230 | </field> <select_unspecified>N</select_unspecified> | 393 | </field> <select_unspecified>N</select_unspecified> |
| 1231 | </fields> <cluster_schema/> | 394 | </fields> <cluster_schema/> |
| 1232 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | 395 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 1233 | - <xloc>687</xloc> | ||
| 1234 | - <yloc>268</yloc> | ||
| 1235 | - <draw>Y</draw> | ||
| 1236 | - </GUI> | ||
| 1237 | - </step> | ||
| 1238 | - | ||
| 1239 | - <step> | ||
| 1240 | - <name>是否有LED服务屏</name> | ||
| 1241 | - <type>ValueMapper</type> | ||
| 1242 | - <description/> | ||
| 1243 | - <distribute>Y</distribute> | ||
| 1244 | - <custom_distribution/> | ||
| 1245 | - <copies>1</copies> | ||
| 1246 | - <partitioning> | ||
| 1247 | - <method>none</method> | ||
| 1248 | - <schema_name/> | ||
| 1249 | - </partitioning> | ||
| 1250 | - <field_to_use>led_screen</field_to_use> | ||
| 1251 | - <target_field>led_screen_str</target_field> | ||
| 1252 | - <non_match_default/> | ||
| 1253 | - <fields> | ||
| 1254 | - <field> | ||
| 1255 | - <source_value>1</source_value> | ||
| 1256 | - <target_value>是</target_value> | ||
| 1257 | - </field> | ||
| 1258 | - <field> | ||
| 1259 | - <source_value>0</source_value> | ||
| 1260 | - <target_value>否</target_value> | ||
| 1261 | - </field> | ||
| 1262 | - </fields> | ||
| 1263 | - <cluster_schema/> | ||
| 1264 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1265 | - <xloc>324</xloc> | ||
| 1266 | - <yloc>68</yloc> | ||
| 1267 | - <draw>Y</draw> | ||
| 1268 | - </GUI> | ||
| 1269 | - </step> | ||
| 1270 | - | ||
| 1271 | - <step> | ||
| 1272 | - <name>是否有TV视频</name> | ||
| 1273 | - <type>ValueMapper</type> | ||
| 1274 | - <description/> | ||
| 1275 | - <distribute>Y</distribute> | ||
| 1276 | - <custom_distribution/> | ||
| 1277 | - <copies>1</copies> | ||
| 1278 | - <partitioning> | ||
| 1279 | - <method>none</method> | ||
| 1280 | - <schema_name/> | ||
| 1281 | - </partitioning> | ||
| 1282 | - <field_to_use>tv_video_type</field_to_use> | ||
| 1283 | - <target_field>tv_video_type_str</target_field> | ||
| 1284 | - <non_match_default/> | ||
| 1285 | - <fields> | ||
| 1286 | - <field> | ||
| 1287 | - <source_value>1</source_value> | ||
| 1288 | - <target_value>是</target_value> | ||
| 1289 | - </field> | ||
| 1290 | - <field> | ||
| 1291 | - <source_value>0</source_value> | ||
| 1292 | - <target_value>否</target_value> | ||
| 1293 | - </field> | ||
| 1294 | - </fields> | ||
| 1295 | - <cluster_schema/> | ||
| 1296 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1297 | - <xloc>325</xloc> | ||
| 1298 | - <yloc>158</yloc> | ||
| 1299 | - <draw>Y</draw> | ||
| 1300 | - </GUI> | ||
| 1301 | - </step> | ||
| 1302 | - | ||
| 1303 | - <step> | ||
| 1304 | - <name>是否空调车</name> | ||
| 1305 | - <type>ValueMapper</type> | ||
| 1306 | - <description/> | ||
| 1307 | - <distribute>Y</distribute> | ||
| 1308 | - <custom_distribution/> | ||
| 1309 | - <copies>1</copies> | ||
| 1310 | - <partitioning> | ||
| 1311 | - <method>none</method> | ||
| 1312 | - <schema_name/> | ||
| 1313 | - </partitioning> | ||
| 1314 | - <field_to_use>hvac_car</field_to_use> | ||
| 1315 | - <target_field>hvac_car_str</target_field> | ||
| 1316 | - <non_match_default/> | ||
| 1317 | - <fields> | ||
| 1318 | - <field> | ||
| 1319 | - <source_value>1</source_value> | ||
| 1320 | - <target_value>是</target_value> | ||
| 1321 | - </field> | ||
| 1322 | - <field> | ||
| 1323 | - <source_value>0</source_value> | ||
| 1324 | - <target_value>否</target_value> | ||
| 1325 | - </field> | ||
| 1326 | - </fields> | ||
| 1327 | - <cluster_schema/> | ||
| 1328 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1329 | - <xloc>209</xloc> | ||
| 1330 | - <yloc>68</yloc> | ||
| 1331 | - <draw>Y</draw> | ||
| 1332 | - </GUI> | ||
| 1333 | - </step> | ||
| 1334 | - | ||
| 1335 | - <step> | ||
| 1336 | - <name>有无人售票</name> | ||
| 1337 | - <type>ValueMapper</type> | ||
| 1338 | - <description/> | ||
| 1339 | - <distribute>Y</distribute> | ||
| 1340 | - <custom_distribution/> | ||
| 1341 | - <copies>1</copies> | ||
| 1342 | - <partitioning> | ||
| 1343 | - <method>none</method> | ||
| 1344 | - <schema_name/> | ||
| 1345 | - </partitioning> | ||
| 1346 | - <field_to_use>ticket_type</field_to_use> | ||
| 1347 | - <target_field>ticket_type_str</target_field> | ||
| 1348 | - <non_match_default/> | ||
| 1349 | - <fields> | ||
| 1350 | - <field> | ||
| 1351 | - <source_value>1</source_value> | ||
| 1352 | - <target_value>是</target_value> | ||
| 1353 | - </field> | ||
| 1354 | - <field> | ||
| 1355 | - <source_value>0</source_value> | ||
| 1356 | - <target_value>否</target_value> | ||
| 1357 | - </field> | ||
| 1358 | - </fields> | ||
| 1359 | - <cluster_schema/> | ||
| 1360 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1361 | - <xloc>208</xloc> | ||
| 1362 | - <yloc>157</yloc> | ||
| 1363 | - <draw>Y</draw> | ||
| 1364 | - </GUI> | ||
| 1365 | - </step> | ||
| 1366 | - | ||
| 1367 | - <step> | ||
| 1368 | - <name>机动车类型查询</name> | ||
| 1369 | - <type>DBLookup</type> | ||
| 1370 | - <description/> | ||
| 1371 | - <distribute>Y</distribute> | ||
| 1372 | - <custom_distribution/> | ||
| 1373 | - <copies>1</copies> | ||
| 1374 | - <partitioning> | ||
| 1375 | - <method>none</method> | ||
| 1376 | - <schema_name/> | ||
| 1377 | - </partitioning> | ||
| 1378 | - <connection>bus_control_variable</connection> | ||
| 1379 | - <cache>N</cache> | ||
| 1380 | - <cache_load_all>N</cache_load_all> | ||
| 1381 | - <cache_size>0</cache_size> | ||
| 1382 | - <lookup> | ||
| 1383 | - <schema/> | ||
| 1384 | - <table>bsth_c_sys_dictionary</table> | ||
| 1385 | - <orderby/> | ||
| 1386 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 1387 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 1388 | - <key> | ||
| 1389 | - <name>jdcType</name> | ||
| 1390 | - <field>d_group</field> | ||
| 1391 | - <condition>=</condition> | ||
| 1392 | - <name2/> | ||
| 1393 | - </key> | ||
| 1394 | - <key> | ||
| 1395 | - <name>vehicle_stats</name> | ||
| 1396 | - <field>d_code</field> | ||
| 1397 | - <condition>=</condition> | ||
| 1398 | - <name2/> | ||
| 1399 | - </key> | ||
| 1400 | - <value> | ||
| 1401 | - <name>d_name</name> | ||
| 1402 | - <rename>vehicle_stats_str</rename> | ||
| 1403 | - <default/> | ||
| 1404 | - <type>String</type> | ||
| 1405 | - </value> | ||
| 1406 | - </lookup> | ||
| 1407 | - <cluster_schema/> | ||
| 1408 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1409 | - <xloc>676</xloc> | ||
| 1410 | - <yloc>162</yloc> | ||
| 1411 | - <draw>Y</draw> | ||
| 1412 | - </GUI> | ||
| 1413 | - </step> | ||
| 1414 | - | ||
| 1415 | - <step> | ||
| 1416 | - <name>机动车类型标识</name> | ||
| 1417 | - <type>Constant</type> | ||
| 1418 | - <description/> | ||
| 1419 | - <distribute>Y</distribute> | ||
| 1420 | - <custom_distribution/> | ||
| 1421 | - <copies>1</copies> | ||
| 1422 | - <partitioning> | ||
| 1423 | - <method>none</method> | ||
| 1424 | - <schema_name/> | ||
| 1425 | - </partitioning> | ||
| 1426 | - <fields> | ||
| 1427 | - <field> | ||
| 1428 | - <name>jdcType</name> | ||
| 1429 | - <type>String</type> | ||
| 1430 | - <format/> | ||
| 1431 | - <currency/> | ||
| 1432 | - <decimal/> | ||
| 1433 | - <group/> | ||
| 1434 | - <nullif>jdcType</nullif> | ||
| 1435 | - <length>-1</length> | ||
| 1436 | - <precision>-1</precision> | ||
| 1437 | - <set_empty_string>N</set_empty_string> | ||
| 1438 | - </field> | ||
| 1439 | - </fields> | ||
| 1440 | - <cluster_schema/> | ||
| 1441 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1442 | - <xloc>672</xloc> | ||
| 1443 | - <yloc>68</yloc> | ||
| 1444 | - <draw>Y</draw> | ||
| 1445 | - </GUI> | ||
| 1446 | - </step> | ||
| 1447 | - | ||
| 1448 | - <step> | ||
| 1449 | - <name>营运状态查询</name> | ||
| 1450 | - <type>DBLookup</type> | ||
| 1451 | - <description/> | ||
| 1452 | - <distribute>Y</distribute> | ||
| 1453 | - <custom_distribution/> | ||
| 1454 | - <copies>1</copies> | ||
| 1455 | - <partitioning> | ||
| 1456 | - <method>none</method> | ||
| 1457 | - <schema_name/> | ||
| 1458 | - </partitioning> | ||
| 1459 | - <connection>bus_control_variable</connection> | ||
| 1460 | - <cache>N</cache> | ||
| 1461 | - <cache_load_all>N</cache_load_all> | ||
| 1462 | - <cache_size>0</cache_size> | ||
| 1463 | - <lookup> | ||
| 1464 | - <schema/> | ||
| 1465 | - <table>bsth_c_sys_dictionary</table> | ||
| 1466 | - <orderby/> | ||
| 1467 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 1468 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 1469 | - <key> | ||
| 1470 | - <name>yyztType</name> | ||
| 1471 | - <field>d_group</field> | ||
| 1472 | - <condition>=</condition> | ||
| 1473 | - <name2/> | ||
| 1474 | - </key> | ||
| 1475 | - <key> | ||
| 1476 | - <name>operators_state</name> | ||
| 1477 | - <field>d_code</field> | ||
| 1478 | - <condition>=</condition> | ||
| 1479 | - <name2/> | ||
| 1480 | - </key> | ||
| 1481 | - <value> | ||
| 1482 | - <name>d_name</name> | ||
| 1483 | - <rename>operators_state_str</rename> | ||
| 1484 | - <default/> | ||
| 1485 | - <type>String</type> | ||
| 1486 | - </value> | ||
| 1487 | - </lookup> | ||
| 1488 | - <cluster_schema/> | ||
| 1489 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1490 | - <xloc>558</xloc> | ||
| 1491 | - <yloc>162</yloc> | ||
| 1492 | - <draw>Y</draw> | ||
| 1493 | - </GUI> | ||
| 1494 | - </step> | ||
| 1495 | - | ||
| 1496 | - <step> | ||
| 1497 | - <name>营运状态标识</name> | ||
| 1498 | - <type>Constant</type> | ||
| 1499 | - <description/> | ||
| 1500 | - <distribute>Y</distribute> | ||
| 1501 | - <custom_distribution/> | ||
| 1502 | - <copies>1</copies> | ||
| 1503 | - <partitioning> | ||
| 1504 | - <method>none</method> | ||
| 1505 | - <schema_name/> | ||
| 1506 | - </partitioning> | ||
| 1507 | - <fields> | ||
| 1508 | - <field> | ||
| 1509 | - <name>yyztType</name> | ||
| 1510 | - <type>String</type> | ||
| 1511 | - <format/> | ||
| 1512 | - <currency/> | ||
| 1513 | - <decimal/> | ||
| 1514 | - <group/> | ||
| 1515 | - <nullif>yyztType</nullif> | ||
| 1516 | - <length>-1</length> | ||
| 1517 | - <precision>-1</precision> | ||
| 1518 | - <set_empty_string>N</set_empty_string> | ||
| 1519 | - </field> | ||
| 1520 | - </fields> | ||
| 1521 | - <cluster_schema/> | ||
| 1522 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1523 | - <xloc>555</xloc> | ||
| 1524 | - <yloc>69</yloc> | 396 | + <xloc>280</xloc> |
| 397 | + <yloc>67</yloc> | ||
| 1525 | <draw>Y</draw> | 398 | <draw>Y</draw> |
| 1526 | </GUI> | 399 | </GUI> |
| 1527 | </step> | 400 | </step> |
| @@ -1552,87 +425,6 @@ | @@ -1552,87 +425,6 @@ | ||
| 1552 | </GUI> | 425 | </GUI> |
| 1553 | </step> | 426 | </step> |
| 1554 | 427 | ||
| 1555 | - <step> | ||
| 1556 | - <name>车辆类型查询</name> | ||
| 1557 | - <type>DBLookup</type> | ||
| 1558 | - <description/> | ||
| 1559 | - <distribute>Y</distribute> | ||
| 1560 | - <custom_distribution/> | ||
| 1561 | - <copies>1</copies> | ||
| 1562 | - <partitioning> | ||
| 1563 | - <method>none</method> | ||
| 1564 | - <schema_name/> | ||
| 1565 | - </partitioning> | ||
| 1566 | - <connection>bus_control_variable</connection> | ||
| 1567 | - <cache>N</cache> | ||
| 1568 | - <cache_load_all>N</cache_load_all> | ||
| 1569 | - <cache_size>0</cache_size> | ||
| 1570 | - <lookup> | ||
| 1571 | - <schema/> | ||
| 1572 | - <table>bsth_c_sys_dictionary</table> | ||
| 1573 | - <orderby/> | ||
| 1574 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 1575 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 1576 | - <key> | ||
| 1577 | - <name>carType</name> | ||
| 1578 | - <field>d_group</field> | ||
| 1579 | - <condition>=</condition> | ||
| 1580 | - <name2/> | ||
| 1581 | - </key> | ||
| 1582 | - <key> | ||
| 1583 | - <name>car_type</name> | ||
| 1584 | - <field>d_code</field> | ||
| 1585 | - <condition>=</condition> | ||
| 1586 | - <name2/> | ||
| 1587 | - </key> | ||
| 1588 | - <value> | ||
| 1589 | - <name>d_name</name> | ||
| 1590 | - <rename>car_type_str</rename> | ||
| 1591 | - <default/> | ||
| 1592 | - <type>String</type> | ||
| 1593 | - </value> | ||
| 1594 | - </lookup> | ||
| 1595 | - <cluster_schema/> | ||
| 1596 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1597 | - <xloc>803</xloc> | ||
| 1598 | - <yloc>163</yloc> | ||
| 1599 | - <draw>Y</draw> | ||
| 1600 | - </GUI> | ||
| 1601 | - </step> | ||
| 1602 | - | ||
| 1603 | - <step> | ||
| 1604 | - <name>车辆类型标识</name> | ||
| 1605 | - <type>Constant</type> | ||
| 1606 | - <description/> | ||
| 1607 | - <distribute>Y</distribute> | ||
| 1608 | - <custom_distribution/> | ||
| 1609 | - <copies>1</copies> | ||
| 1610 | - <partitioning> | ||
| 1611 | - <method>none</method> | ||
| 1612 | - <schema_name/> | ||
| 1613 | - </partitioning> | ||
| 1614 | - <fields> | ||
| 1615 | - <field> | ||
| 1616 | - <name>carType</name> | ||
| 1617 | - <type>String</type> | ||
| 1618 | - <format/> | ||
| 1619 | - <currency/> | ||
| 1620 | - <decimal/> | ||
| 1621 | - <group/> | ||
| 1622 | - <nullif>carType</nullif> | ||
| 1623 | - <length>-1</length> | ||
| 1624 | - <precision>-1</precision> | ||
| 1625 | - <set_empty_string>N</set_empty_string> | ||
| 1626 | - </field> | ||
| 1627 | - </fields> | ||
| 1628 | - <cluster_schema/> | ||
| 1629 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1630 | - <xloc>800</xloc> | ||
| 1631 | - <yloc>70</yloc> | ||
| 1632 | - <draw>Y</draw> | ||
| 1633 | - </GUI> | ||
| 1634 | - </step> | ||
| 1635 | - | ||
| 1636 | <step_error_handling> | 428 | <step_error_handling> |
| 1637 | </step_error_handling> | 429 | </step_error_handling> |
| 1638 | <slave-step-copy-partition-distribution> | 430 | <slave-step-copy-partition-distribution> |
src/main/resources/datatools/ktrs/employeesDataInput.ktr
| @@ -84,27 +84,6 @@ | @@ -84,27 +84,6 @@ | ||
| 84 | <is_key_private>N</is_key_private> | 84 | <is_key_private>N</is_key_private> |
| 85 | </info> | 85 | </info> |
| 86 | <notepads> | 86 | <notepads> |
| 87 | - <notepad> | ||
| 88 | - <note>原系统导出的表,有些字段是没有的,
人员编码 暂时没有空着
照片地址 暂时没有空着
线路编号 暂时没有空着
联系电话 暂时没有空着


字典
性别sexType 男性 1
性别sexType 女性 2


工种gzType 公共汽电车驾驶员 1
工种gzType 公共汽电车调度员 2
工种gzType 公共汽电车售票员 3
工种gzType 站员 4
工种gzType 管理员 5
工种gzType 安检员 6
工种gzType 机务 7
工种gzType 引导员 8
工种gzType 乘务员 9
工种gzType 车队长(线长、主 10
工种gzType 公司管理人员 11
工种gzType 警消人员 12
工种gzType 票务人员 13
工种gzType 其他服务人员 14</note> | ||
| 89 | - <xloc>200</xloc> | ||
| 90 | - <yloc>160</yloc> | ||
| 91 | - <width>214</width> | ||
| 92 | - <heigth>426</heigth> | ||
| 93 | - <fontname>YaHei Consolas Hybrid</fontname> | ||
| 94 | - <fontsize>12</fontsize> | ||
| 95 | - <fontbold>N</fontbold> | ||
| 96 | - <fontitalic>N</fontitalic> | ||
| 97 | - <fontcolorred>0</fontcolorred> | ||
| 98 | - <fontcolorgreen>0</fontcolorgreen> | ||
| 99 | - <fontcolorblue>0</fontcolorblue> | ||
| 100 | - <backgroundcolorred>255</backgroundcolorred> | ||
| 101 | - <backgroundcolorgreen>205</backgroundcolorgreen> | ||
| 102 | - <backgroundcolorblue>112</backgroundcolorblue> | ||
| 103 | - <bordercolorred>100</bordercolorred> | ||
| 104 | - <bordercolorgreen>100</bordercolorgreen> | ||
| 105 | - <bordercolorblue>100</bordercolorblue> | ||
| 106 | - <drawshadow>Y</drawshadow> | ||
| 107 | - </notepad> | ||
| 108 | </notepads> | 87 | </notepads> |
| 109 | <connection> | 88 | <connection> |
| 110 | <name>bus_control_variable</name> | 89 | <name>bus_control_variable</name> |
| @@ -268,57 +247,13 @@ | @@ -268,57 +247,13 @@ | ||
| 268 | </attributes> | 247 | </attributes> |
| 269 | </connection> | 248 | </connection> |
| 270 | <order> | 249 | <order> |
| 271 | - <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 272 | - <hop> <from>字段选择</from><to>性别代码</to><enabled>Y</enabled> </hop> | ||
| 273 | <hop> <from>插入/更新bsth_c_personnel</from><to>错误输出</to><enabled>Y</enabled> </hop> | 250 | <hop> <from>插入/更新bsth_c_personnel</from><to>错误输出</to><enabled>Y</enabled> </hop> |
| 274 | - <hop> <from>工种</from><to>插入/更新bsth_c_personnel</to><enabled>Y</enabled> </hop> | ||
| 275 | <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | 251 | <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> |
| 276 | - <hop> <from>性别代码</from><to>公交企业代码查询</to><enabled>Y</enabled> </hop> | ||
| 277 | - <hop> <from>公交企业代码查询</from><to>工种</to><enabled>Y</enabled> </hop> | 252 | + <hop> <from>原始系统导出的Excel输入</from><to>过滤记录</to><enabled>Y</enabled> </hop> |
| 253 | + <hop> <from>过滤记录</from><to>JavaScript代码</to><enabled>Y</enabled> </hop> | ||
| 254 | + <hop> <from>JavaScript代码</from><to>插入/更新bsth_c_personnel</to><enabled>Y</enabled> </hop> | ||
| 278 | </order> | 255 | </order> |
| 279 | <step> | 256 | <step> |
| 280 | - <name>公交企业代码查询</name> | ||
| 281 | - <type>DBLookup</type> | ||
| 282 | - <description/> | ||
| 283 | - <distribute>Y</distribute> | ||
| 284 | - <custom_distribution/> | ||
| 285 | - <copies>1</copies> | ||
| 286 | - <partitioning> | ||
| 287 | - <method>none</method> | ||
| 288 | - <schema_name/> | ||
| 289 | - </partitioning> | ||
| 290 | - <connection>bus_control_variable</connection> | ||
| 291 | - <cache>N</cache> | ||
| 292 | - <cache_load_all>N</cache_load_all> | ||
| 293 | - <cache_size>0</cache_size> | ||
| 294 | - <lookup> | ||
| 295 | - <schema/> | ||
| 296 | - <table>bsth_c_business</table> | ||
| 297 | - <orderby/> | ||
| 298 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 299 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 300 | - <key> | ||
| 301 | - <name>company</name> | ||
| 302 | - <field>business_name</field> | ||
| 303 | - <condition>=</condition> | ||
| 304 | - <name2/> | ||
| 305 | - </key> | ||
| 306 | - <value> | ||
| 307 | - <name>business_code</name> | ||
| 308 | - <rename>companyCode</rename> | ||
| 309 | - <default/> | ||
| 310 | - <type>String</type> | ||
| 311 | - </value> | ||
| 312 | - </lookup> | ||
| 313 | - <cluster_schema/> | ||
| 314 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 315 | - <xloc>544</xloc> | ||
| 316 | - <yloc>59</yloc> | ||
| 317 | - <draw>Y</draw> | ||
| 318 | - </GUI> | ||
| 319 | - </step> | ||
| 320 | - | ||
| 321 | - <step> | ||
| 322 | <name>原始系统导出的Excel输入</name> | 257 | <name>原始系统导出的Excel输入</name> |
| 323 | <type>ExcelInput</type> | 258 | <type>ExcelInput</type> |
| 324 | <description/> | 259 | <description/> |
| @@ -377,18 +312,6 @@ | @@ -377,18 +312,6 @@ | ||
| 377 | <group/> | 312 | <group/> |
| 378 | </field> | 313 | </field> |
| 379 | <field> | 314 | <field> |
| 380 | - <name>性别</name> | ||
| 381 | - <type>String</type> | ||
| 382 | - <length>-1</length> | ||
| 383 | - <precision>-1</precision> | ||
| 384 | - <trim_type>none</trim_type> | ||
| 385 | - <repeat>N</repeat> | ||
| 386 | - <format/> | ||
| 387 | - <currency/> | ||
| 388 | - <decimal/> | ||
| 389 | - <group/> | ||
| 390 | - </field> | ||
| 391 | - <field> | ||
| 392 | <name>所属公司</name> | 315 | <name>所属公司</name> |
| 393 | <type>String</type> | 316 | <type>String</type> |
| 394 | <length>-1</length> | 317 | <length>-1</length> |
| @@ -401,7 +324,7 @@ | @@ -401,7 +324,7 @@ | ||
| 401 | <group/> | 324 | <group/> |
| 402 | </field> | 325 | </field> |
| 403 | <field> | 326 | <field> |
| 404 | - <name>所属分公司</name> | 327 | + <name>所属公司代码</name> |
| 405 | <type>String</type> | 328 | <type>String</type> |
| 406 | <length>-1</length> | 329 | <length>-1</length> |
| 407 | <precision>-1</precision> | 330 | <precision>-1</precision> |
| @@ -413,31 +336,7 @@ | @@ -413,31 +336,7 @@ | ||
| 413 | <group/> | 336 | <group/> |
| 414 | </field> | 337 | </field> |
| 415 | <field> | 338 | <field> |
| 416 | - <name>一卡通号</name> | ||
| 417 | - <type>String</type> | ||
| 418 | - <length>-1</length> | ||
| 419 | - <precision>-1</precision> | ||
| 420 | - <trim_type>none</trim_type> | ||
| 421 | - <repeat>N</repeat> | ||
| 422 | - <format/> | ||
| 423 | - <currency/> | ||
| 424 | - <decimal/> | ||
| 425 | - <group/> | ||
| 426 | - </field> | ||
| 427 | - <field> | ||
| 428 | - <name>运营服务证号</name> | ||
| 429 | - <type>String</type> | ||
| 430 | - <length>-1</length> | ||
| 431 | - <precision>-1</precision> | ||
| 432 | - <trim_type>none</trim_type> | ||
| 433 | - <repeat>N</repeat> | ||
| 434 | - <format/> | ||
| 435 | - <currency/> | ||
| 436 | - <decimal/> | ||
| 437 | - <group/> | ||
| 438 | - </field> | ||
| 439 | - <field> | ||
| 440 | - <name>岗位</name> | 339 | + <name>所属分公司</name> |
| 441 | <type>String</type> | 340 | <type>String</type> |
| 442 | <length>-1</length> | 341 | <length>-1</length> |
| 443 | <precision>-1</precision> | 342 | <precision>-1</precision> |
| @@ -449,7 +348,7 @@ | @@ -449,7 +348,7 @@ | ||
| 449 | <group/> | 348 | <group/> |
| 450 | </field> | 349 | </field> |
| 451 | <field> | 350 | <field> |
| 452 | - <name>备注</name> | 351 | + <name>所属分公司代码</name> |
| 453 | <type>String</type> | 352 | <type>String</type> |
| 454 | <length>-1</length> | 353 | <length>-1</length> |
| 455 | <precision>-1</precision> | 354 | <precision>-1</precision> |
| @@ -495,174 +394,6 @@ | @@ -495,174 +394,6 @@ | ||
| 495 | </step> | 394 | </step> |
| 496 | 395 | ||
| 497 | <step> | 396 | <step> |
| 498 | - <name>字段选择</name> | ||
| 499 | - <type>SelectValues</type> | ||
| 500 | - <description/> | ||
| 501 | - <distribute>Y</distribute> | ||
| 502 | - <custom_distribution/> | ||
| 503 | - <copies>1</copies> | ||
| 504 | - <partitioning> | ||
| 505 | - <method>none</method> | ||
| 506 | - <schema_name/> | ||
| 507 | - </partitioning> | ||
| 508 | - <fields> <field> <name>姓名</name> | ||
| 509 | - <rename>personnelName</rename> | ||
| 510 | - <length>-2</length> | ||
| 511 | - <precision>-2</precision> | ||
| 512 | - </field> <field> <name>工号</name> | ||
| 513 | - <rename>jobCode</rename> | ||
| 514 | - <length>-2</length> | ||
| 515 | - <precision>-2</precision> | ||
| 516 | - </field> <field> <name>性别</name> | ||
| 517 | - <rename>personnelType</rename> | ||
| 518 | - <length>-2</length> | ||
| 519 | - <precision>-2</precision> | ||
| 520 | - </field> <field> <name>所属公司</name> | ||
| 521 | - <rename>company</rename> | ||
| 522 | - <length>-2</length> | ||
| 523 | - <precision>-2</precision> | ||
| 524 | - </field> <field> <name>所属分公司</name> | ||
| 525 | - <rename>brancheCompany</rename> | ||
| 526 | - <length>-2</length> | ||
| 527 | - <precision>-2</precision> | ||
| 528 | - </field> <field> <name>一卡通号</name> | ||
| 529 | - <rename>icCardCode</rename> | ||
| 530 | - <length>-2</length> | ||
| 531 | - <precision>-2</precision> | ||
| 532 | - </field> <field> <name>运营服务证号</name> | ||
| 533 | - <rename>papersCode</rename> | ||
| 534 | - <length>-2</length> | ||
| 535 | - <precision>-2</precision> | ||
| 536 | - </field> <field> <name>岗位</name> | ||
| 537 | - <rename>posts</rename> | ||
| 538 | - <length>-2</length> | ||
| 539 | - <precision>-2</precision> | ||
| 540 | - </field> <field> <name>备注</name> | ||
| 541 | - <rename>descriptions</rename> | ||
| 542 | - <length>-2</length> | ||
| 543 | - <precision>-2</precision> | ||
| 544 | - </field> <select_unspecified>N</select_unspecified> | ||
| 545 | - </fields> <cluster_schema/> | ||
| 546 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 547 | - <xloc>286</xloc> | ||
| 548 | - <yloc>58</yloc> | ||
| 549 | - <draw>Y</draw> | ||
| 550 | - </GUI> | ||
| 551 | - </step> | ||
| 552 | - | ||
| 553 | - <step> | ||
| 554 | - <name>工种</name> | ||
| 555 | - <type>ValueMapper</type> | ||
| 556 | - <description/> | ||
| 557 | - <distribute>Y</distribute> | ||
| 558 | - <custom_distribution/> | ||
| 559 | - <copies>1</copies> | ||
| 560 | - <partitioning> | ||
| 561 | - <method>none</method> | ||
| 562 | - <schema_name/> | ||
| 563 | - </partitioning> | ||
| 564 | - <field_to_use>posts</field_to_use> | ||
| 565 | - <target_field/> | ||
| 566 | - <non_match_default/> | ||
| 567 | - <fields> | ||
| 568 | - <field> | ||
| 569 | - <source_value>公共汽电车驾驶员</source_value> | ||
| 570 | - <target_value>1</target_value> | ||
| 571 | - </field> | ||
| 572 | - <field> | ||
| 573 | - <source_value>公共汽电车调度员</source_value> | ||
| 574 | - <target_value>2</target_value> | ||
| 575 | - </field> | ||
| 576 | - <field> | ||
| 577 | - <source_value>公共汽电车售票员</source_value> | ||
| 578 | - <target_value>3</target_value> | ||
| 579 | - </field> | ||
| 580 | - <field> | ||
| 581 | - <source_value>站员</source_value> | ||
| 582 | - <target_value>4</target_value> | ||
| 583 | - </field> | ||
| 584 | - <field> | ||
| 585 | - <source_value>管理员</source_value> | ||
| 586 | - <target_value>5</target_value> | ||
| 587 | - </field> | ||
| 588 | - <field> | ||
| 589 | - <source_value>安检员</source_value> | ||
| 590 | - <target_value>6</target_value> | ||
| 591 | - </field> | ||
| 592 | - <field> | ||
| 593 | - <source_value>机务</source_value> | ||
| 594 | - <target_value>7</target_value> | ||
| 595 | - </field> | ||
| 596 | - <field> | ||
| 597 | - <source_value>引导员</source_value> | ||
| 598 | - <target_value>8</target_value> | ||
| 599 | - </field> | ||
| 600 | - <field> | ||
| 601 | - <source_value>乘务员</source_value> | ||
| 602 | - <target_value>9</target_value> | ||
| 603 | - </field> | ||
| 604 | - <field> | ||
| 605 | - <source_value>车队长(线长、主</source_value> | ||
| 606 | - <target_value>10</target_value> | ||
| 607 | - </field> | ||
| 608 | - <field> | ||
| 609 | - <source_value>公司管理人员</source_value> | ||
| 610 | - <target_value>11</target_value> | ||
| 611 | - </field> | ||
| 612 | - <field> | ||
| 613 | - <source_value>警消人员</source_value> | ||
| 614 | - <target_value>12</target_value> | ||
| 615 | - </field> | ||
| 616 | - <field> | ||
| 617 | - <source_value>票务人员</source_value> | ||
| 618 | - <target_value>13</target_value> | ||
| 619 | - </field> | ||
| 620 | - <field> | ||
| 621 | - <source_value>其他服务人员</source_value> | ||
| 622 | - <target_value>14</target_value> | ||
| 623 | - </field> | ||
| 624 | - </fields> | ||
| 625 | - <cluster_schema/> | ||
| 626 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 627 | - <xloc>543</xloc> | ||
| 628 | - <yloc>152</yloc> | ||
| 629 | - <draw>Y</draw> | ||
| 630 | - </GUI> | ||
| 631 | - </step> | ||
| 632 | - | ||
| 633 | - <step> | ||
| 634 | - <name>性别代码</name> | ||
| 635 | - <type>ValueMapper</type> | ||
| 636 | - <description/> | ||
| 637 | - <distribute>Y</distribute> | ||
| 638 | - <custom_distribution/> | ||
| 639 | - <copies>1</copies> | ||
| 640 | - <partitioning> | ||
| 641 | - <method>none</method> | ||
| 642 | - <schema_name/> | ||
| 643 | - </partitioning> | ||
| 644 | - <field_to_use>personnelType</field_to_use> | ||
| 645 | - <target_field>personnelCode</target_field> | ||
| 646 | - <non_match_default/> | ||
| 647 | - <fields> | ||
| 648 | - <field> | ||
| 649 | - <source_value>男性</source_value> | ||
| 650 | - <target_value>1</target_value> | ||
| 651 | - </field> | ||
| 652 | - <field> | ||
| 653 | - <source_value>女性</source_value> | ||
| 654 | - <target_value>2</target_value> | ||
| 655 | - </field> | ||
| 656 | - </fields> | ||
| 657 | - <cluster_schema/> | ||
| 658 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 659 | - <xloc>413</xloc> | ||
| 660 | - <yloc>58</yloc> | ||
| 661 | - <draw>Y</draw> | ||
| 662 | - </GUI> | ||
| 663 | - </step> | ||
| 664 | - | ||
| 665 | - <step> | ||
| 666 | <name>插入/更新bsth_c_personnel</name> | 397 | <name>插入/更新bsth_c_personnel</name> |
| 667 | <type>InsertUpdate</type> | 398 | <type>InsertUpdate</type> |
| 668 | <description/> | 399 | <description/> |
| @@ -680,122 +411,57 @@ | @@ -680,122 +411,57 @@ | ||
| 680 | <schema/> | 411 | <schema/> |
| 681 | <table>bsth_c_personnel</table> | 412 | <table>bsth_c_personnel</table> |
| 682 | <key> | 413 | <key> |
| 683 | - <name>companyCode</name> | 414 | + <name>所属公司代码</name> |
| 684 | <field>company_code</field> | 415 | <field>company_code</field> |
| 685 | <condition>=</condition> | 416 | <condition>=</condition> |
| 686 | <name2/> | 417 | <name2/> |
| 687 | </key> | 418 | </key> |
| 688 | <key> | 419 | <key> |
| 689 | - <name>jobCode</name> | 420 | + <name>gh_calcu</name> |
| 690 | <field>job_code</field> | 421 | <field>job_code</field> |
| 691 | <condition>=</condition> | 422 | <condition>=</condition> |
| 692 | <name2/> | 423 | <name2/> |
| 693 | </key> | 424 | </key> |
| 694 | <value> | 425 | <value> |
| 695 | <name>personnel_name</name> | 426 | <name>personnel_name</name> |
| 696 | - <rename>personnelName</rename> | ||
| 697 | - <update>Y</update> | ||
| 698 | - </value> | ||
| 699 | - <value> | ||
| 700 | - <name>job_code</name> | ||
| 701 | - <rename>jobCode</rename> | ||
| 702 | - <update>Y</update> | ||
| 703 | - </value> | ||
| 704 | - <value> | ||
| 705 | - <name>personnel_type</name> | ||
| 706 | - <rename>personnelCode</rename> | 427 | + <rename>姓名</rename> |
| 707 | <update>Y</update> | 428 | <update>Y</update> |
| 708 | </value> | 429 | </value> |
| 709 | <value> | 430 | <value> |
| 710 | <name>company</name> | 431 | <name>company</name> |
| 711 | - <rename>company</rename> | ||
| 712 | - <update>Y</update> | ||
| 713 | - </value> | ||
| 714 | - <value> | ||
| 715 | - <name>branche_company</name> | ||
| 716 | - <rename>brancheCompany</rename> | ||
| 717 | - <update>Y</update> | ||
| 718 | - </value> | ||
| 719 | - <value> | ||
| 720 | - <name>ic_card_code</name> | ||
| 721 | - <rename>icCardCode</rename> | 432 | + <rename>所属公司</rename> |
| 722 | <update>Y</update> | 433 | <update>Y</update> |
| 723 | </value> | 434 | </value> |
| 724 | <value> | 435 | <value> |
| 725 | - <name>papers_code</name> | ||
| 726 | - <rename>papersCode</rename> | 436 | + <name>company_code</name> |
| 437 | + <rename>所属公司代码</rename> | ||
| 727 | <update>Y</update> | 438 | <update>Y</update> |
| 728 | </value> | 439 | </value> |
| 729 | <value> | 440 | <value> |
| 730 | - <name>posts</name> | ||
| 731 | - <rename>posts</rename> | 441 | + <name>branche_company</name> |
| 442 | + <rename>所属分公司</rename> | ||
| 732 | <update>Y</update> | 443 | <update>Y</update> |
| 733 | </value> | 444 | </value> |
| 734 | <value> | 445 | <value> |
| 735 | - <name>descriptions</name> | ||
| 736 | - <rename>descriptions</rename> | 446 | + <name>branche_company_code</name> |
| 447 | + <rename>所属分公司代码</rename> | ||
| 737 | <update>Y</update> | 448 | <update>Y</update> |
| 738 | </value> | 449 | </value> |
| 739 | <value> | 450 | <value> |
| 740 | - <name>company_code</name> | ||
| 741 | - <rename>companyCode</rename> | 451 | + <name>job_code</name> |
| 452 | + <rename>gh_calcu</rename> | ||
| 742 | <update>Y</update> | 453 | <update>Y</update> |
| 743 | </value> | 454 | </value> |
| 744 | </lookup> | 455 | </lookup> |
| 745 | <cluster_schema/> | 456 | <cluster_schema/> |
| 746 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | 457 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 747 | - <xloc>713</xloc> | 458 | + <xloc>576</xloc> |
| 748 | <yloc>56</yloc> | 459 | <yloc>56</yloc> |
| 749 | <draw>Y</draw> | 460 | <draw>Y</draw> |
| 750 | </GUI> | 461 | </GUI> |
| 751 | </step> | 462 | </step> |
| 752 | 463 | ||
| 753 | <step> | 464 | <step> |
| 754 | - <name>获取变量</name> | ||
| 755 | - <type>GetVariable</type> | ||
| 756 | - <description/> | ||
| 757 | - <distribute>Y</distribute> | ||
| 758 | - <custom_distribution/> | ||
| 759 | - <copies>1</copies> | ||
| 760 | - <partitioning> | ||
| 761 | - <method>none</method> | ||
| 762 | - <schema_name/> | ||
| 763 | - </partitioning> | ||
| 764 | - <fields> | ||
| 765 | - <field> | ||
| 766 | - <name>filepath_</name> | ||
| 767 | - <variable>${filepath}</variable> | ||
| 768 | - <type>String</type> | ||
| 769 | - <format/> | ||
| 770 | - <currency/> | ||
| 771 | - <decimal/> | ||
| 772 | - <group/> | ||
| 773 | - <length>-1</length> | ||
| 774 | - <precision>-1</precision> | ||
| 775 | - <trim_type>none</trim_type> | ||
| 776 | - </field> | ||
| 777 | - <field> | ||
| 778 | - <name>erroroutputdir_</name> | ||
| 779 | - <variable>${erroroutputdir}</variable> | ||
| 780 | - <type>String</type> | ||
| 781 | - <format/> | ||
| 782 | - <currency/> | ||
| 783 | - <decimal/> | ||
| 784 | - <group/> | ||
| 785 | - <length>-1</length> | ||
| 786 | - <precision>-1</precision> | ||
| 787 | - <trim_type>none</trim_type> | ||
| 788 | - </field> | ||
| 789 | - </fields> | ||
| 790 | - <cluster_schema/> | ||
| 791 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 792 | - <xloc>90</xloc> | ||
| 793 | - <yloc>148</yloc> | ||
| 794 | - <draw>Y</draw> | ||
| 795 | - </GUI> | ||
| 796 | - </step> | ||
| 797 | - | ||
| 798 | - <step> | ||
| 799 | <name>错误输出</name> | 465 | <name>错误输出</name> |
| 800 | <type>ExcelOutput</type> | 466 | <type>ExcelOutput</type> |
| 801 | <description/> | 467 | <description/> |
| @@ -837,52 +503,37 @@ | @@ -837,52 +503,37 @@ | ||
| 837 | </template> | 503 | </template> |
| 838 | <fields> | 504 | <fields> |
| 839 | <field> | 505 | <field> |
| 840 | - <name>personnelName</name> | ||
| 841 | - <type>String</type> | ||
| 842 | - <format/> | ||
| 843 | - </field> | ||
| 844 | - <field> | ||
| 845 | - <name>jobCode</name> | ||
| 846 | - <type>String</type> | ||
| 847 | - <format/> | ||
| 848 | - </field> | ||
| 849 | - <field> | ||
| 850 | - <name>personnelType</name> | ||
| 851 | - <type>String</type> | ||
| 852 | - <format/> | ||
| 853 | - </field> | ||
| 854 | - <field> | ||
| 855 | - <name>company</name> | 506 | + <name>姓名</name> |
| 856 | <type>String</type> | 507 | <type>String</type> |
| 857 | <format/> | 508 | <format/> |
| 858 | </field> | 509 | </field> |
| 859 | <field> | 510 | <field> |
| 860 | - <name>brancheCompany</name> | 511 | + <name>工号</name> |
| 861 | <type>String</type> | 512 | <type>String</type> |
| 862 | <format/> | 513 | <format/> |
| 863 | </field> | 514 | </field> |
| 864 | <field> | 515 | <field> |
| 865 | - <name>icCardCode</name> | 516 | + <name>所属公司</name> |
| 866 | <type>String</type> | 517 | <type>String</type> |
| 867 | <format/> | 518 | <format/> |
| 868 | </field> | 519 | </field> |
| 869 | <field> | 520 | <field> |
| 870 | - <name>papersCode</name> | 521 | + <name>所属公司代码</name> |
| 871 | <type>String</type> | 522 | <type>String</type> |
| 872 | <format/> | 523 | <format/> |
| 873 | </field> | 524 | </field> |
| 874 | <field> | 525 | <field> |
| 875 | - <name>posts</name> | 526 | + <name>所属分公司</name> |
| 876 | <type>String</type> | 527 | <type>String</type> |
| 877 | <format/> | 528 | <format/> |
| 878 | </field> | 529 | </field> |
| 879 | <field> | 530 | <field> |
| 880 | - <name>descriptions</name> | 531 | + <name>所属分公司代码</name> |
| 881 | <type>String</type> | 532 | <type>String</type> |
| 882 | <format/> | 533 | <format/> |
| 883 | </field> | 534 | </field> |
| 884 | <field> | 535 | <field> |
| 885 | - <name>companyCode</name> | 536 | + <name>gh_calcu</name> |
| 886 | <type>String</type> | 537 | <type>String</type> |
| 887 | <format/> | 538 | <format/> |
| 888 | </field> | 539 | </field> |
| @@ -926,12 +577,128 @@ | @@ -926,12 +577,128 @@ | ||
| 926 | </custom> | 577 | </custom> |
| 927 | <cluster_schema/> | 578 | <cluster_schema/> |
| 928 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | 579 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 929 | - <xloc>715</xloc> | 580 | + <xloc>578</xloc> |
| 930 | <yloc>223</yloc> | 581 | <yloc>223</yloc> |
| 931 | <draw>Y</draw> | 582 | <draw>Y</draw> |
| 932 | </GUI> | 583 | </GUI> |
| 933 | </step> | 584 | </step> |
| 934 | 585 | ||
| 586 | + <step> | ||
| 587 | + <name>获取变量</name> | ||
| 588 | + <type>GetVariable</type> | ||
| 589 | + <description/> | ||
| 590 | + <distribute>Y</distribute> | ||
| 591 | + <custom_distribution/> | ||
| 592 | + <copies>1</copies> | ||
| 593 | + <partitioning> | ||
| 594 | + <method>none</method> | ||
| 595 | + <schema_name/> | ||
| 596 | + </partitioning> | ||
| 597 | + <fields> | ||
| 598 | + <field> | ||
| 599 | + <name>filepath_</name> | ||
| 600 | + <variable>${filepath}</variable> | ||
| 601 | + <type>String</type> | ||
| 602 | + <format/> | ||
| 603 | + <currency/> | ||
| 604 | + <decimal/> | ||
| 605 | + <group/> | ||
| 606 | + <length>-1</length> | ||
| 607 | + <precision>-1</precision> | ||
| 608 | + <trim_type>none</trim_type> | ||
| 609 | + </field> | ||
| 610 | + <field> | ||
| 611 | + <name>erroroutputdir_</name> | ||
| 612 | + <variable>${erroroutputdir}</variable> | ||
| 613 | + <type>String</type> | ||
| 614 | + <format/> | ||
| 615 | + <currency/> | ||
| 616 | + <decimal/> | ||
| 617 | + <group/> | ||
| 618 | + <length>-1</length> | ||
| 619 | + <precision>-1</precision> | ||
| 620 | + <trim_type>none</trim_type> | ||
| 621 | + </field> | ||
| 622 | + </fields> | ||
| 623 | + <cluster_schema/> | ||
| 624 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 625 | + <xloc>90</xloc> | ||
| 626 | + <yloc>148</yloc> | ||
| 627 | + <draw>Y</draw> | ||
| 628 | + </GUI> | ||
| 629 | + </step> | ||
| 630 | + | ||
| 631 | + <step> | ||
| 632 | + <name>过滤记录</name> | ||
| 633 | + <type>FilterRows</type> | ||
| 634 | + <description/> | ||
| 635 | + <distribute>Y</distribute> | ||
| 636 | + <custom_distribution/> | ||
| 637 | + <copies>1</copies> | ||
| 638 | + <partitioning> | ||
| 639 | + <method>none</method> | ||
| 640 | + <schema_name/> | ||
| 641 | + </partitioning> | ||
| 642 | +<send_true_to/> | ||
| 643 | +<send_false_to/> | ||
| 644 | + <compare> | ||
| 645 | +<condition> | ||
| 646 | + <negated>N</negated> | ||
| 647 | + <conditions> | ||
| 648 | + <condition> | ||
| 649 | + <negated>N</negated> | ||
| 650 | + <leftvalue>工号</leftvalue> | ||
| 651 | + <function>IS NOT NULL</function> | ||
| 652 | + <rightvalue/> | ||
| 653 | + </condition> | ||
| 654 | + <condition> | ||
| 655 | + <negated>N</negated> | ||
| 656 | + <operator>AND</operator> | ||
| 657 | + <leftvalue>所属公司代码</leftvalue> | ||
| 658 | + <function>IS NOT NULL</function> | ||
| 659 | + <rightvalue/> | ||
| 660 | + </condition> | ||
| 661 | + </conditions> | ||
| 662 | + </condition> | ||
| 663 | + </compare> | ||
| 664 | + <cluster_schema/> | ||
| 665 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 666 | + <xloc>358</xloc> | ||
| 667 | + <yloc>57</yloc> | ||
| 668 | + <draw>Y</draw> | ||
| 669 | + </GUI> | ||
| 670 | + </step> | ||
| 671 | + | ||
| 672 | + <step> | ||
| 673 | + <name>JavaScript代码</name> | ||
| 674 | + <type>ScriptValueMod</type> | ||
| 675 | + <description/> | ||
| 676 | + <distribute>Y</distribute> | ||
| 677 | + <custom_distribution/> | ||
| 678 | + <copies>1</copies> | ||
| 679 | + <partitioning> | ||
| 680 | + <method>none</method> | ||
| 681 | + <schema_name/> | ||
| 682 | + </partitioning> | ||
| 683 | + <compatible>N</compatible> | ||
| 684 | + <optimizationLevel>9</optimizationLevel> | ||
| 685 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | ||
| 686 | + <jsScript_name>Script 1</jsScript_name> | ||
| 687 | + <jsScript_script>//Script here

var gh_calcu = 所属公司代码 + "-" + 工号;</jsScript_script> | ||
| 688 | + </jsScript> </jsScripts> <fields> <field> <name>gh_calcu</name> | ||
| 689 | + <rename>gh_calcu</rename> | ||
| 690 | + <type>String</type> | ||
| 691 | + <length>-1</length> | ||
| 692 | + <precision>-1</precision> | ||
| 693 | + <replace>N</replace> | ||
| 694 | + </field> </fields> <cluster_schema/> | ||
| 695 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 696 | + <xloc>362</xloc> | ||
| 697 | + <yloc>190</yloc> | ||
| 698 | + <draw>Y</draw> | ||
| 699 | + </GUI> | ||
| 700 | + </step> | ||
| 701 | + | ||
| 935 | <step_error_handling> | 702 | <step_error_handling> |
| 936 | <error> | 703 | <error> |
| 937 | <source_step>插入/更新bsth_c_personnel</source_step> | 704 | <source_step>插入/更新bsth_c_personnel</source_step> |
src/main/resources/datatools/ktrs/employeesDataOutput.ktr
| @@ -242,12 +242,8 @@ | @@ -242,12 +242,8 @@ | ||
| 242 | </attributes> | 242 | </attributes> |
| 243 | </connection> | 243 | </connection> |
| 244 | <order> | 244 | <order> |
| 245 | - <hop> <from>表输入</from><to>性别标识</to><enabled>Y</enabled> </hop> | ||
| 246 | - <hop> <from>性别标识</from><to>性别标识查询</to><enabled>Y</enabled> </hop> | ||
| 247 | - <hop> <from>性别标识查询</from><to>工种标识</to><enabled>Y</enabled> </hop> | ||
| 248 | - <hop> <from>工种标识</from><to>工种标识查询</to><enabled>Y</enabled> </hop> | ||
| 249 | - <hop> <from>工种标识查询</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 250 | <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> | 245 | <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> |
| 246 | + <hop> <from>表输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 251 | </order> | 247 | </order> |
| 252 | <step> | 248 | <step> |
| 253 | <name>Excel输出</name> | 249 | <name>Excel输出</name> |
| @@ -301,37 +297,22 @@ | @@ -301,37 +297,22 @@ | ||
| 301 | <format/> | 297 | <format/> |
| 302 | </field> | 298 | </field> |
| 303 | <field> | 299 | <field> |
| 304 | - <name>性别</name> | ||
| 305 | - <type>String</type> | ||
| 306 | - <format/> | ||
| 307 | - </field> | ||
| 308 | - <field> | ||
| 309 | <name>所属公司</name> | 300 | <name>所属公司</name> |
| 310 | <type>String</type> | 301 | <type>String</type> |
| 311 | <format/> | 302 | <format/> |
| 312 | </field> | 303 | </field> |
| 313 | <field> | 304 | <field> |
| 314 | - <name>所属分公司</name> | ||
| 315 | - <type>String</type> | ||
| 316 | - <format/> | ||
| 317 | - </field> | ||
| 318 | - <field> | ||
| 319 | - <name>一卡通号</name> | ||
| 320 | - <type>String</type> | ||
| 321 | - <format/> | ||
| 322 | - </field> | ||
| 323 | - <field> | ||
| 324 | - <name>运营服务证号</name> | 305 | + <name>所属公司代码</name> |
| 325 | <type>String</type> | 306 | <type>String</type> |
| 326 | <format/> | 307 | <format/> |
| 327 | </field> | 308 | </field> |
| 328 | <field> | 309 | <field> |
| 329 | - <name>岗位</name> | 310 | + <name>所属分公司</name> |
| 330 | <type>String</type> | 311 | <type>String</type> |
| 331 | <format/> | 312 | <format/> |
| 332 | </field> | 313 | </field> |
| 333 | <field> | 314 | <field> |
| 334 | - <name>备注</name> | 315 | + <name>所属分公司代码</name> |
| 335 | <type>String</type> | 316 | <type>String</type> |
| 336 | <format/> | 317 | <format/> |
| 337 | </field> | 318 | </field> |
| @@ -355,8 +336,8 @@ | @@ -355,8 +336,8 @@ | ||
| 355 | </custom> | 336 | </custom> |
| 356 | <cluster_schema/> | 337 | <cluster_schema/> |
| 357 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | 338 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 358 | - <xloc>695</xloc> | ||
| 359 | - <yloc>180</yloc> | 339 | + <xloc>346</xloc> |
| 340 | + <yloc>66</yloc> | ||
| 360 | <draw>Y</draw> | 341 | <draw>Y</draw> |
| 361 | </GUI> | 342 | </GUI> |
| 362 | </step> | 343 | </step> |
| @@ -380,201 +361,27 @@ | @@ -380,201 +361,27 @@ | ||
| 380 | <rename>工号</rename> | 361 | <rename>工号</rename> |
| 381 | <length>-2</length> | 362 | <length>-2</length> |
| 382 | <precision>-2</precision> | 363 | <precision>-2</precision> |
| 383 | - </field> <field> <name>personnel_type_str</name> | ||
| 384 | - <rename>性别</rename> | ||
| 385 | - <length>-2</length> | ||
| 386 | - <precision>-2</precision> | ||
| 387 | </field> <field> <name>company</name> | 364 | </field> <field> <name>company</name> |
| 388 | <rename>所属公司</rename> | 365 | <rename>所属公司</rename> |
| 389 | <length>-2</length> | 366 | <length>-2</length> |
| 390 | <precision>-2</precision> | 367 | <precision>-2</precision> |
| 391 | - </field> <field> <name>branche_company</name> | ||
| 392 | - <rename>所属分公司</rename> | 368 | + </field> <field> <name>company_code</name> |
| 369 | + <rename>所属公司代码</rename> | ||
| 393 | <length>-2</length> | 370 | <length>-2</length> |
| 394 | <precision>-2</precision> | 371 | <precision>-2</precision> |
| 395 | - </field> <field> <name>ic_card_code</name> | ||
| 396 | - <rename>一卡通号</rename> | ||
| 397 | - <length>-2</length> | ||
| 398 | - <precision>-2</precision> | ||
| 399 | - </field> <field> <name>papers_code</name> | ||
| 400 | - <rename>运营服务证号</rename> | ||
| 401 | - <length>-2</length> | ||
| 402 | - <precision>-2</precision> | ||
| 403 | - </field> <field> <name>posts_str</name> | ||
| 404 | - <rename>岗位</rename> | 372 | + </field> <field> <name>branche_company</name> |
| 373 | + <rename>所属分公司</rename> | ||
| 405 | <length>-2</length> | 374 | <length>-2</length> |
| 406 | <precision>-2</precision> | 375 | <precision>-2</precision> |
| 407 | - </field> <field> <name>descriptions</name> | ||
| 408 | - <rename>备注</rename> | 376 | + </field> <field> <name>branche_company_code</name> |
| 377 | + <rename>所属分公司代码</rename> | ||
| 409 | <length>-2</length> | 378 | <length>-2</length> |
| 410 | <precision>-2</precision> | 379 | <precision>-2</precision> |
| 411 | </field> <select_unspecified>N</select_unspecified> | 380 | </field> <select_unspecified>N</select_unspecified> |
| 412 | </fields> <cluster_schema/> | 381 | </fields> <cluster_schema/> |
| 413 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | 382 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 414 | - <xloc>631</xloc> | ||
| 415 | - <yloc>76</yloc> | ||
| 416 | - <draw>Y</draw> | ||
| 417 | - </GUI> | ||
| 418 | - </step> | ||
| 419 | - | ||
| 420 | - <step> | ||
| 421 | - <name>工种标识</name> | ||
| 422 | - <type>Constant</type> | ||
| 423 | - <description/> | ||
| 424 | - <distribute>Y</distribute> | ||
| 425 | - <custom_distribution/> | ||
| 426 | - <copies>1</copies> | ||
| 427 | - <partitioning> | ||
| 428 | - <method>none</method> | ||
| 429 | - <schema_name/> | ||
| 430 | - </partitioning> | ||
| 431 | - <fields> | ||
| 432 | - <field> | ||
| 433 | - <name>gzType</name> | ||
| 434 | - <type>String</type> | ||
| 435 | - <format/> | ||
| 436 | - <currency/> | ||
| 437 | - <decimal/> | ||
| 438 | - <group/> | ||
| 439 | - <nullif>gzType</nullif> | ||
| 440 | - <length>-1</length> | ||
| 441 | - <precision>-1</precision> | ||
| 442 | - <set_empty_string>N</set_empty_string> | ||
| 443 | - </field> | ||
| 444 | - </fields> | ||
| 445 | - <cluster_schema/> | ||
| 446 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 447 | - <xloc>418</xloc> | ||
| 448 | - <yloc>73</yloc> | ||
| 449 | - <draw>Y</draw> | ||
| 450 | - </GUI> | ||
| 451 | - </step> | ||
| 452 | - | ||
| 453 | - <step> | ||
| 454 | - <name>工种标识查询</name> | ||
| 455 | - <type>DBLookup</type> | ||
| 456 | - <description/> | ||
| 457 | - <distribute>Y</distribute> | ||
| 458 | - <custom_distribution/> | ||
| 459 | - <copies>1</copies> | ||
| 460 | - <partitioning> | ||
| 461 | - <method>none</method> | ||
| 462 | - <schema_name/> | ||
| 463 | - </partitioning> | ||
| 464 | - <connection>bus_control_variable</connection> | ||
| 465 | - <cache>N</cache> | ||
| 466 | - <cache_load_all>N</cache_load_all> | ||
| 467 | - <cache_size>0</cache_size> | ||
| 468 | - <lookup> | ||
| 469 | - <schema/> | ||
| 470 | - <table>bsth_c_sys_dictionary</table> | ||
| 471 | - <orderby/> | ||
| 472 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 473 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 474 | - <key> | ||
| 475 | - <name>gzType</name> | ||
| 476 | - <field>d_group</field> | ||
| 477 | - <condition>=</condition> | ||
| 478 | - <name2/> | ||
| 479 | - </key> | ||
| 480 | - <key> | ||
| 481 | - <name>posts</name> | ||
| 482 | - <field>d_code</field> | ||
| 483 | - <condition>=</condition> | ||
| 484 | - <name2/> | ||
| 485 | - </key> | ||
| 486 | - <value> | ||
| 487 | - <name>d_name</name> | ||
| 488 | - <rename>posts_str</rename> | ||
| 489 | - <default/> | ||
| 490 | - <type>String</type> | ||
| 491 | - </value> | ||
| 492 | - </lookup> | ||
| 493 | - <cluster_schema/> | ||
| 494 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 495 | - <xloc>509</xloc> | ||
| 496 | - <yloc>75</yloc> | ||
| 497 | - <draw>Y</draw> | ||
| 498 | - </GUI> | ||
| 499 | - </step> | ||
| 500 | - | ||
| 501 | - <step> | ||
| 502 | - <name>性别标识</name> | ||
| 503 | - <type>Constant</type> | ||
| 504 | - <description/> | ||
| 505 | - <distribute>Y</distribute> | ||
| 506 | - <custom_distribution/> | ||
| 507 | - <copies>1</copies> | ||
| 508 | - <partitioning> | ||
| 509 | - <method>none</method> | ||
| 510 | - <schema_name/> | ||
| 511 | - </partitioning> | ||
| 512 | - <fields> | ||
| 513 | - <field> | ||
| 514 | - <name>sexType</name> | ||
| 515 | - <type>String</type> | ||
| 516 | - <format/> | ||
| 517 | - <currency/> | ||
| 518 | - <decimal/> | ||
| 519 | - <group/> | ||
| 520 | - <nullif>sexType</nullif> | ||
| 521 | - <length>-1</length> | ||
| 522 | - <precision>-1</precision> | ||
| 523 | - <set_empty_string>N</set_empty_string> | ||
| 524 | - </field> | ||
| 525 | - </fields> | ||
| 526 | - <cluster_schema/> | ||
| 527 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 528 | - <xloc>220</xloc> | ||
| 529 | - <yloc>69</yloc> | ||
| 530 | - <draw>Y</draw> | ||
| 531 | - </GUI> | ||
| 532 | - </step> | ||
| 533 | - | ||
| 534 | - <step> | ||
| 535 | - <name>性别标识查询</name> | ||
| 536 | - <type>DBLookup</type> | ||
| 537 | - <description/> | ||
| 538 | - <distribute>Y</distribute> | ||
| 539 | - <custom_distribution/> | ||
| 540 | - <copies>1</copies> | ||
| 541 | - <partitioning> | ||
| 542 | - <method>none</method> | ||
| 543 | - <schema_name/> | ||
| 544 | - </partitioning> | ||
| 545 | - <connection>bus_control_variable</connection> | ||
| 546 | - <cache>N</cache> | ||
| 547 | - <cache_load_all>N</cache_load_all> | ||
| 548 | - <cache_size>0</cache_size> | ||
| 549 | - <lookup> | ||
| 550 | - <schema/> | ||
| 551 | - <table>bsth_c_sys_dictionary</table> | ||
| 552 | - <orderby/> | ||
| 553 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 554 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 555 | - <key> | ||
| 556 | - <name>sexType</name> | ||
| 557 | - <field>d_group</field> | ||
| 558 | - <condition>=</condition> | ||
| 559 | - <name2/> | ||
| 560 | - </key> | ||
| 561 | - <key> | ||
| 562 | - <name>personnel_type</name> | ||
| 563 | - <field>d_code</field> | ||
| 564 | - <condition>=</condition> | ||
| 565 | - <name2/> | ||
| 566 | - </key> | ||
| 567 | - <value> | ||
| 568 | - <name>d_name</name> | ||
| 569 | - <rename>personnel_type_str</rename> | ||
| 570 | - <default/> | ||
| 571 | - <type>String</type> | ||
| 572 | - </value> | ||
| 573 | - </lookup> | ||
| 574 | - <cluster_schema/> | ||
| 575 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 576 | - <xloc>316</xloc> | ||
| 577 | - <yloc>71</yloc> | 383 | + <xloc>221</xloc> |
| 384 | + <yloc>66</yloc> | ||
| 578 | <draw>Y</draw> | 385 | <draw>Y</draw> |
| 579 | </GUI> | 386 | </GUI> |
| 580 | </step> | 387 | </step> |
src/main/resources/datatools/ktrs/legecy/carsDataInput.ktr
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<transformation> | ||
| 3 | + <info> | ||
| 4 | + <name>车辆信息导入</name> | ||
| 5 | + <description>车辆信息导入</description> | ||
| 6 | + <extended_description>车辆基础信息</extended_description> | ||
| 7 | + <trans_version/> | ||
| 8 | + <trans_type>Normal</trans_type> | ||
| 9 | + <trans_status>0</trans_status> | ||
| 10 | + <directory>/</directory> | ||
| 11 | + <parameters> | ||
| 12 | + <parameter> | ||
| 13 | + <name>erroroutputdir</name> | ||
| 14 | + <default_value/> | ||
| 15 | + <description>ktr step配置的错误输出目录</description> | ||
| 16 | + </parameter> | ||
| 17 | + <parameter> | ||
| 18 | + <name>filepath</name> | ||
| 19 | + <default_value/> | ||
| 20 | + <description>待处理导入的excel文件</description> | ||
| 21 | + </parameter> | ||
| 22 | + </parameters> | ||
| 23 | + <log> | ||
| 24 | +<trans-log-table><connection/> | ||
| 25 | +<schema/> | ||
| 26 | +<table/> | ||
| 27 | +<size_limit_lines/> | ||
| 28 | +<interval/> | ||
| 29 | +<timeout_days/> | ||
| 30 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | ||
| 31 | +<perf-log-table><connection/> | ||
| 32 | +<schema/> | ||
| 33 | +<table/> | ||
| 34 | +<interval/> | ||
| 35 | +<timeout_days/> | ||
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | ||
| 37 | +<channel-log-table><connection/> | ||
| 38 | +<schema/> | ||
| 39 | +<table/> | ||
| 40 | +<timeout_days/> | ||
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | ||
| 42 | +<step-log-table><connection/> | ||
| 43 | +<schema/> | ||
| 44 | +<table/> | ||
| 45 | +<timeout_days/> | ||
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | ||
| 47 | +<metrics-log-table><connection/> | ||
| 48 | +<schema/> | ||
| 49 | +<table/> | ||
| 50 | +<timeout_days/> | ||
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | ||
| 52 | + </log> | ||
| 53 | + <maxdate> | ||
| 54 | + <connection/> | ||
| 55 | + <table/> | ||
| 56 | + <field/> | ||
| 57 | + <offset>0.0</offset> | ||
| 58 | + <maxdiff>0.0</maxdiff> | ||
| 59 | + </maxdate> | ||
| 60 | + <size_rowset>10000</size_rowset> | ||
| 61 | + <sleep_time_empty>50</sleep_time_empty> | ||
| 62 | + <sleep_time_full>50</sleep_time_full> | ||
| 63 | + <unique_connections>N</unique_connections> | ||
| 64 | + <feedback_shown>Y</feedback_shown> | ||
| 65 | + <feedback_size>50000</feedback_size> | ||
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | ||
| 67 | + <shared_objects_file/> | ||
| 68 | + <capture_step_performance>N</capture_step_performance> | ||
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | ||
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | ||
| 71 | + <dependencies> | ||
| 72 | + </dependencies> | ||
| 73 | + <partitionschemas> | ||
| 74 | + </partitionschemas> | ||
| 75 | + <slaveservers> | ||
| 76 | + </slaveservers> | ||
| 77 | + <clusterschemas> | ||
| 78 | + </clusterschemas> | ||
| 79 | + <created_user>-</created_user> | ||
| 80 | + <created_date>2016/06/23 17:44:46.781</created_date> | ||
| 81 | + <modified_user>-</modified_user> | ||
| 82 | + <modified_date>2016/06/23 17:44:46.781</modified_date> | ||
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 84 | + <is_key_private>N</is_key_private> | ||
| 85 | + </info> | ||
| 86 | + <notepads> | ||
| 87 | + <notepad> | ||
| 88 | + <note>原系统的导出表,有些数据是没有的,有些数据也有问题,如下
报废日期去掉
车辆编码,暂时用1代替
是否电车 没有
车辆序号 没有
是否切换 没有
线路名称(这里不做关联,只是登记的时候使用) 咩有

字典
是与否truefalseType 是 1
是与否truefalseType 否 0


供应商名称snames 巴士拓华 1
供应商名称snames 博康 2

营运状态yyztType 营运 1
营运状态yyztType 停运 2
营运状态yyztType 挂失 3
营运状态yyztType 迁出(过户) 4
营运状态yyztType 迁出(转籍) 5
营运状态yyztType 报废 6
营运状态yyztType 歇业 7
营运状态yyztType 注销 8
营运状态yyztType 测试 9
营运状态yyztType 其他 10

机动车类型jdcType 非机动车 1
机动车类型jdcType 机动一队 2
机动车类型jdcType 机动二队 3
机动车类型jdcType 机动三队 4
机动车类型jdcType 备车 5
机动车类型jdcType 抢修车 6

车辆类型carType 营运车 1
车辆类型carType 包车 2
车辆类型carType 学校班车 3
车辆类型carType 公司班车 4
车辆类型carType 待报废车 5
车辆类型carType 备车 6
车辆类型carType 测试设备 7



</note> | ||
| 89 | + <xloc>45</xloc> | ||
| 90 | + <yloc>254</yloc> | ||
| 91 | + <width>346</width> | ||
| 92 | + <heigth>730</heigth> | ||
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | ||
| 94 | + <fontsize>12</fontsize> | ||
| 95 | + <fontbold>N</fontbold> | ||
| 96 | + <fontitalic>N</fontitalic> | ||
| 97 | + <fontcolorred>0</fontcolorred> | ||
| 98 | + <fontcolorgreen>0</fontcolorgreen> | ||
| 99 | + <fontcolorblue>0</fontcolorblue> | ||
| 100 | + <backgroundcolorred>255</backgroundcolorred> | ||
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | ||
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | ||
| 103 | + <bordercolorred>100</bordercolorred> | ||
| 104 | + <bordercolorgreen>100</bordercolorgreen> | ||
| 105 | + <bordercolorblue>100</bordercolorblue> | ||
| 106 | + <drawshadow>Y</drawshadow> | ||
| 107 | + </notepad> | ||
| 108 | + </notepads> | ||
| 109 | + <connection> | ||
| 110 | + <name>bus_control_variable</name> | ||
| 111 | + <server>${v_db_ip}</server> | ||
| 112 | + <type>MYSQL</type> | ||
| 113 | + <access>Native</access> | ||
| 114 | + <database>${v_db_dname}</database> | ||
| 115 | + <port>3306</port> | ||
| 116 | + <username>${v_db_uname}</username> | ||
| 117 | + <password>${v_db_pwd}</password> | ||
| 118 | + <servername/> | ||
| 119 | + <data_tablespace/> | ||
| 120 | + <index_tablespace/> | ||
| 121 | + <attributes> | ||
| 122 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | ||
| 123 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 124 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 125 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 126 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 127 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 128 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 129 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 130 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 131 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 132 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 133 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 134 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 135 | + </attributes> | ||
| 136 | + </connection> | ||
| 137 | + <connection> | ||
| 138 | + <name>bus_control_公司_201</name> | ||
| 139 | + <server>localhost</server> | ||
| 140 | + <type>MYSQL</type> | ||
| 141 | + <access>Native</access> | ||
| 142 | + <database>control</database> | ||
| 143 | + <port>3306</port> | ||
| 144 | + <username>root</username> | ||
| 145 | + <password>Encrypted </password> | ||
| 146 | + <servername/> | ||
| 147 | + <data_tablespace/> | ||
| 148 | + <index_tablespace/> | ||
| 149 | + <attributes> | ||
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 151 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 153 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 154 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 155 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 156 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 157 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 158 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 159 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 160 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 161 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 162 | + </attributes> | ||
| 163 | + </connection> | ||
| 164 | + <connection> | ||
| 165 | + <name>bus_control_本机</name> | ||
| 166 | + <server>localhost</server> | ||
| 167 | + <type>MYSQL</type> | ||
| 168 | + <access>Native</access> | ||
| 169 | + <database>control</database> | ||
| 170 | + <port>3306</port> | ||
| 171 | + <username>root</username> | ||
| 172 | + <password>Encrypted </password> | ||
| 173 | + <servername/> | ||
| 174 | + <data_tablespace/> | ||
| 175 | + <index_tablespace/> | ||
| 176 | + <attributes> | ||
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 178 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 180 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 181 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 182 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 183 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 184 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 185 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 186 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 187 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 188 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 189 | + </attributes> | ||
| 190 | + </connection> | ||
| 191 | + <connection> | ||
| 192 | + <name>xlab_mysql_youle</name> | ||
| 193 | + <server>101.231.124.8</server> | ||
| 194 | + <type>MYSQL</type> | ||
| 195 | + <access>Native</access> | ||
| 196 | + <database>xlab_youle</database> | ||
| 197 | + <port>45687</port> | ||
| 198 | + <username>xlab-youle</username> | ||
| 199 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | ||
| 200 | + <servername/> | ||
| 201 | + <data_tablespace/> | ||
| 202 | + <index_tablespace/> | ||
| 203 | + <attributes> | ||
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 205 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 207 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 208 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 209 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | ||
| 210 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 211 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 212 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 213 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 214 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 215 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 216 | + </attributes> | ||
| 217 | + </connection> | ||
| 218 | + <connection> | ||
| 219 | + <name>xlab_mysql_youle(本机)</name> | ||
| 220 | + <server>localhost</server> | ||
| 221 | + <type>MYSQL</type> | ||
| 222 | + <access>Native</access> | ||
| 223 | + <database>xlab_youle</database> | ||
| 224 | + <port>3306</port> | ||
| 225 | + <username>root</username> | ||
| 226 | + <password>Encrypted </password> | ||
| 227 | + <servername/> | ||
| 228 | + <data_tablespace/> | ||
| 229 | + <index_tablespace/> | ||
| 230 | + <attributes> | ||
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 232 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 240 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 241 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 242 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 243 | + </attributes> | ||
| 244 | + </connection> | ||
| 245 | + <connection> | ||
| 246 | + <name>xlab_youle</name> | ||
| 247 | + <server/> | ||
| 248 | + <type>MYSQL</type> | ||
| 249 | + <access>JNDI</access> | ||
| 250 | + <database>xlab_youle</database> | ||
| 251 | + <port>1521</port> | ||
| 252 | + <username/> | ||
| 253 | + <password>Encrypted </password> | ||
| 254 | + <servername/> | ||
| 255 | + <data_tablespace/> | ||
| 256 | + <index_tablespace/> | ||
| 257 | + <attributes> | ||
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 259 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 260 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 261 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 262 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 263 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 264 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 265 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 266 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 267 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 268 | + </attributes> | ||
| 269 | + </connection> | ||
| 270 | + <order> | ||
| 271 | + <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 272 | + <hop> <from>字段选择</from><to>是否空调车</to><enabled>Y</enabled> </hop> | ||
| 273 | + <hop> <from>是否有LED服务屏</from><to>是否有TV视频</to><enabled>Y</enabled> </hop> | ||
| 274 | + <hop> <from>是否有TV视频</from><to>是否的变成数字型</to><enabled>Y</enabled> </hop> | ||
| 275 | + <hop> <from>是否空调车</from><to>有无人售票</to><enabled>Y</enabled> </hop> | ||
| 276 | + <hop> <from>有无人售票</from><to>是否有LED服务屏</to><enabled>Y</enabled> </hop> | ||
| 277 | + <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | ||
| 278 | + <hop> <from>供应商名称</from><to>营运状态</to><enabled>Y</enabled> </hop> | ||
| 279 | + <hop> <from>插入/更新bsth_c_cars 2</from><to>错误输出 2</to><enabled>Y</enabled> </hop> | ||
| 280 | + <hop> <from>机动车类型</from><to>车辆类型</to><enabled>Y</enabled> </hop> | ||
| 281 | + <hop> <from>营运状态</from><to>机动车类型</to><enabled>Y</enabled> </hop> | ||
| 282 | + <hop> <from>车辆类型</from><to>车辆编码</to><enabled>Y</enabled> </hop> | ||
| 283 | + <hop> <from>车辆编码</from><to>插入/更新bsth_c_cars 2</to><enabled>Y</enabled> </hop> | ||
| 284 | + <hop> <from>是否的变成数字型</from><to>公交企业代码查询</to><enabled>Y</enabled> </hop> | ||
| 285 | + <hop> <from>公交企业代码查询</from><to>供应商名称</to><enabled>Y</enabled> </hop> | ||
| 286 | + <hop> <from>是否的变成数字型</from><to>错误输出 2 2</to><enabled>Y</enabled> </hop> | ||
| 287 | + </order> | ||
| 288 | + <step> | ||
| 289 | + <name>供应商名称</name> | ||
| 290 | + <type>ValueMapper</type> | ||
| 291 | + <description/> | ||
| 292 | + <distribute>Y</distribute> | ||
| 293 | + <custom_distribution/> | ||
| 294 | + <copies>1</copies> | ||
| 295 | + <partitioning> | ||
| 296 | + <method>none</method> | ||
| 297 | + <schema_name/> | ||
| 298 | + </partitioning> | ||
| 299 | + <field_to_use>supplierName</field_to_use> | ||
| 300 | + <target_field/> | ||
| 301 | + <non_match_default/> | ||
| 302 | + <fields> | ||
| 303 | + <field> | ||
| 304 | + <source_value>巴士拓华</source_value> | ||
| 305 | + <target_value>1</target_value> | ||
| 306 | + </field> | ||
| 307 | + <field> | ||
| 308 | + <source_value>博康</source_value> | ||
| 309 | + <target_value>2</target_value> | ||
| 310 | + </field> | ||
| 311 | + </fields> | ||
| 312 | + <cluster_schema/> | ||
| 313 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 314 | + <xloc>709</xloc> | ||
| 315 | + <yloc>172</yloc> | ||
| 316 | + <draw>Y</draw> | ||
| 317 | + </GUI> | ||
| 318 | + </step> | ||
| 319 | + | ||
| 320 | + <step> | ||
| 321 | + <name>公交企业代码查询</name> | ||
| 322 | + <type>DBLookup</type> | ||
| 323 | + <description/> | ||
| 324 | + <distribute>Y</distribute> | ||
| 325 | + <custom_distribution/> | ||
| 326 | + <copies>1</copies> | ||
| 327 | + <partitioning> | ||
| 328 | + <method>none</method> | ||
| 329 | + <schema_name/> | ||
| 330 | + </partitioning> | ||
| 331 | + <connection>bus_control_variable</connection> | ||
| 332 | + <cache>N</cache> | ||
| 333 | + <cache_load_all>N</cache_load_all> | ||
| 334 | + <cache_size>0</cache_size> | ||
| 335 | + <lookup> | ||
| 336 | + <schema/> | ||
| 337 | + <table>bsth_c_business</table> | ||
| 338 | + <orderby/> | ||
| 339 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 340 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 341 | + <key> | ||
| 342 | + <name>company</name> | ||
| 343 | + <field>business_name</field> | ||
| 344 | + <condition>=</condition> | ||
| 345 | + <name2/> | ||
| 346 | + </key> | ||
| 347 | + <value> | ||
| 348 | + <name>business_code</name> | ||
| 349 | + <rename>businessCode</rename> | ||
| 350 | + <default/> | ||
| 351 | + <type>String</type> | ||
| 352 | + </value> | ||
| 353 | + </lookup> | ||
| 354 | + <cluster_schema/> | ||
| 355 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 356 | + <xloc>839</xloc> | ||
| 357 | + <yloc>169</yloc> | ||
| 358 | + <draw>Y</draw> | ||
| 359 | + </GUI> | ||
| 360 | + </step> | ||
| 361 | + | ||
| 362 | + <step> | ||
| 363 | + <name>原始系统导出的Excel输入</name> | ||
| 364 | + <type>ExcelInput</type> | ||
| 365 | + <description/> | ||
| 366 | + <distribute>Y</distribute> | ||
| 367 | + <custom_distribution/> | ||
| 368 | + <copies>1</copies> | ||
| 369 | + <partitioning> | ||
| 370 | + <method>none</method> | ||
| 371 | + <schema_name/> | ||
| 372 | + </partitioning> | ||
| 373 | + <header>Y</header> | ||
| 374 | + <noempty>Y</noempty> | ||
| 375 | + <stoponempty>N</stoponempty> | ||
| 376 | + <filefield/> | ||
| 377 | + <sheetfield/> | ||
| 378 | + <sheetrownumfield/> | ||
| 379 | + <rownumfield/> | ||
| 380 | + <sheetfield/> | ||
| 381 | + <filefield/> | ||
| 382 | + <limit>0</limit> | ||
| 383 | + <encoding/> | ||
| 384 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 385 | + <accept_filenames>Y</accept_filenames> | ||
| 386 | + <accept_field>filepath_</accept_field> | ||
| 387 | + <accept_stepname>获取变量</accept_stepname> | ||
| 388 | + <file> | ||
| 389 | + <name/> | ||
| 390 | + <filemask/> | ||
| 391 | + <exclude_filemask/> | ||
| 392 | + <file_required>N</file_required> | ||
| 393 | + <include_subfolders>N</include_subfolders> | ||
| 394 | + </file> | ||
| 395 | + <fields> | ||
| 396 | + <field> | ||
| 397 | + <name>车牌号</name> | ||
| 398 | + <type>String</type> | ||
| 399 | + <length>-1</length> | ||
| 400 | + <precision>-1</precision> | ||
| 401 | + <trim_type>none</trim_type> | ||
| 402 | + <repeat>N</repeat> | ||
| 403 | + <format/> | ||
| 404 | + <currency/> | ||
| 405 | + <decimal/> | ||
| 406 | + <group/> | ||
| 407 | + </field> | ||
| 408 | + <field> | ||
| 409 | + <name>内部编码</name> | ||
| 410 | + <type>String</type> | ||
| 411 | + <length>-1</length> | ||
| 412 | + <precision>-1</precision> | ||
| 413 | + <trim_type>none</trim_type> | ||
| 414 | + <repeat>N</repeat> | ||
| 415 | + <format/> | ||
| 416 | + <currency/> | ||
| 417 | + <decimal/> | ||
| 418 | + <group/> | ||
| 419 | + </field> | ||
| 420 | + <field> | ||
| 421 | + <name>车辆编码</name> | ||
| 422 | + <type>String</type> | ||
| 423 | + <length>-1</length> | ||
| 424 | + <precision>-1</precision> | ||
| 425 | + <trim_type>none</trim_type> | ||
| 426 | + <repeat>N</repeat> | ||
| 427 | + <format/> | ||
| 428 | + <currency/> | ||
| 429 | + <decimal/> | ||
| 430 | + <group/> | ||
| 431 | + </field> | ||
| 432 | + <field> | ||
| 433 | + <name>车型类别</name> | ||
| 434 | + <type>String</type> | ||
| 435 | + <length>-1</length> | ||
| 436 | + <precision>-1</precision> | ||
| 437 | + <trim_type>none</trim_type> | ||
| 438 | + <repeat>N</repeat> | ||
| 439 | + <format/> | ||
| 440 | + <currency/> | ||
| 441 | + <decimal/> | ||
| 442 | + <group/> | ||
| 443 | + </field> | ||
| 444 | + <field> | ||
| 445 | + <name>座位数</name> | ||
| 446 | + <type>String</type> | ||
| 447 | + <length>-1</length> | ||
| 448 | + <precision>-1</precision> | ||
| 449 | + <trim_type>none</trim_type> | ||
| 450 | + <repeat>N</repeat> | ||
| 451 | + <format/> | ||
| 452 | + <currency/> | ||
| 453 | + <decimal/> | ||
| 454 | + <group/> | ||
| 455 | + </field> | ||
| 456 | + <field> | ||
| 457 | + <name>载客标准</name> | ||
| 458 | + <type>String</type> | ||
| 459 | + <length>-1</length> | ||
| 460 | + <precision>-1</precision> | ||
| 461 | + <trim_type>none</trim_type> | ||
| 462 | + <repeat>N</repeat> | ||
| 463 | + <format/> | ||
| 464 | + <currency/> | ||
| 465 | + <decimal/> | ||
| 466 | + <group/> | ||
| 467 | + </field> | ||
| 468 | + <field> | ||
| 469 | + <name>技术速度</name> | ||
| 470 | + <type>String</type> | ||
| 471 | + <length>-1</length> | ||
| 472 | + <precision>-1</precision> | ||
| 473 | + <trim_type>none</trim_type> | ||
| 474 | + <repeat>N</repeat> | ||
| 475 | + <format/> | ||
| 476 | + <currency/> | ||
| 477 | + <decimal/> | ||
| 478 | + <group/> | ||
| 479 | + </field> | ||
| 480 | + <field> | ||
| 481 | + <name>是否空调</name> | ||
| 482 | + <type>String</type> | ||
| 483 | + <length>-1</length> | ||
| 484 | + <precision>-1</precision> | ||
| 485 | + <trim_type>none</trim_type> | ||
| 486 | + <repeat>N</repeat> | ||
| 487 | + <format/> | ||
| 488 | + <currency/> | ||
| 489 | + <decimal/> | ||
| 490 | + <group/> | ||
| 491 | + </field> | ||
| 492 | + <field> | ||
| 493 | + <name>标准油耗(开空调)</name> | ||
| 494 | + <type>String</type> | ||
| 495 | + <length>-1</length> | ||
| 496 | + <precision>-1</precision> | ||
| 497 | + <trim_type>none</trim_type> | ||
| 498 | + <repeat>N</repeat> | ||
| 499 | + <format/> | ||
| 500 | + <currency/> | ||
| 501 | + <decimal/> | ||
| 502 | + <group/> | ||
| 503 | + </field> | ||
| 504 | + <field> | ||
| 505 | + <name>标准油耗(关空调)</name> | ||
| 506 | + <type>String</type> | ||
| 507 | + <length>-1</length> | ||
| 508 | + <precision>-1</precision> | ||
| 509 | + <trim_type>none</trim_type> | ||
| 510 | + <repeat>N</repeat> | ||
| 511 | + <format/> | ||
| 512 | + <currency/> | ||
| 513 | + <decimal/> | ||
| 514 | + <group/> | ||
| 515 | + </field> | ||
| 516 | + <field> | ||
| 517 | + <name>有无人售票</name> | ||
| 518 | + <type>String</type> | ||
| 519 | + <length>-1</length> | ||
| 520 | + <precision>-1</precision> | ||
| 521 | + <trim_type>none</trim_type> | ||
| 522 | + <repeat>N</repeat> | ||
| 523 | + <format/> | ||
| 524 | + <currency/> | ||
| 525 | + <decimal/> | ||
| 526 | + <group/> | ||
| 527 | + </field> | ||
| 528 | + <field> | ||
| 529 | + <name>是否有TV视频</name> | ||
| 530 | + <type>String</type> | ||
| 531 | + <length>-1</length> | ||
| 532 | + <precision>-1</precision> | ||
| 533 | + <trim_type>none</trim_type> | ||
| 534 | + <repeat>N</repeat> | ||
| 535 | + <format/> | ||
| 536 | + <currency/> | ||
| 537 | + <decimal/> | ||
| 538 | + <group/> | ||
| 539 | + </field> | ||
| 540 | + <field> | ||
| 541 | + <name>是否有LED服务屏</name> | ||
| 542 | + <type>String</type> | ||
| 543 | + <length>-1</length> | ||
| 544 | + <precision>-1</precision> | ||
| 545 | + <trim_type>none</trim_type> | ||
| 546 | + <repeat>N</repeat> | ||
| 547 | + <format/> | ||
| 548 | + <currency/> | ||
| 549 | + <decimal/> | ||
| 550 | + <group/> | ||
| 551 | + </field> | ||
| 552 | + <field> | ||
| 553 | + <name>运营状态</name> | ||
| 554 | + <type>String</type> | ||
| 555 | + <length>-1</length> | ||
| 556 | + <precision>-1</precision> | ||
| 557 | + <trim_type>none</trim_type> | ||
| 558 | + <repeat>N</repeat> | ||
| 559 | + <format/> | ||
| 560 | + <currency/> | ||
| 561 | + <decimal/> | ||
| 562 | + <group/> | ||
| 563 | + </field> | ||
| 564 | + <field> | ||
| 565 | + <name>启用日期</name> | ||
| 566 | + <type>String</type> | ||
| 567 | + <length>-1</length> | ||
| 568 | + <precision>-1</precision> | ||
| 569 | + <trim_type>none</trim_type> | ||
| 570 | + <repeat>N</repeat> | ||
| 571 | + <format/> | ||
| 572 | + <currency/> | ||
| 573 | + <decimal/> | ||
| 574 | + <group/> | ||
| 575 | + </field> | ||
| 576 | + <field> | ||
| 577 | + <name>取消日期</name> | ||
| 578 | + <type>String</type> | ||
| 579 | + <length>-1</length> | ||
| 580 | + <precision>-1</precision> | ||
| 581 | + <trim_type>none</trim_type> | ||
| 582 | + <repeat>N</repeat> | ||
| 583 | + <format/> | ||
| 584 | + <currency/> | ||
| 585 | + <decimal/> | ||
| 586 | + <group/> | ||
| 587 | + </field> | ||
| 588 | + <field> | ||
| 589 | + <name>报废号</name> | ||
| 590 | + <type>String</type> | ||
| 591 | + <length>-1</length> | ||
| 592 | + <precision>-1</precision> | ||
| 593 | + <trim_type>none</trim_type> | ||
| 594 | + <repeat>N</repeat> | ||
| 595 | + <format/> | ||
| 596 | + <currency/> | ||
| 597 | + <decimal/> | ||
| 598 | + <group/> | ||
| 599 | + </field> | ||
| 600 | + <field> | ||
| 601 | + <name>报废日期</name> | ||
| 602 | + <type>String</type> | ||
| 603 | + <length>-1</length> | ||
| 604 | + <precision>-1</precision> | ||
| 605 | + <trim_type>none</trim_type> | ||
| 606 | + <repeat>N</repeat> | ||
| 607 | + <format/> | ||
| 608 | + <currency/> | ||
| 609 | + <decimal/> | ||
| 610 | + <group/> | ||
| 611 | + </field> | ||
| 612 | + <field> | ||
| 613 | + <name>备注</name> | ||
| 614 | + <type>String</type> | ||
| 615 | + <length>-1</length> | ||
| 616 | + <precision>-1</precision> | ||
| 617 | + <trim_type>none</trim_type> | ||
| 618 | + <repeat>N</repeat> | ||
| 619 | + <format/> | ||
| 620 | + <currency/> | ||
| 621 | + <decimal/> | ||
| 622 | + <group/> | ||
| 623 | + </field> | ||
| 624 | + <field> | ||
| 625 | + <name>设备编号</name> | ||
| 626 | + <type>String</type> | ||
| 627 | + <length>-1</length> | ||
| 628 | + <precision>-1</precision> | ||
| 629 | + <trim_type>none</trim_type> | ||
| 630 | + <repeat>N</repeat> | ||
| 631 | + <format/> | ||
| 632 | + <currency/> | ||
| 633 | + <decimal/> | ||
| 634 | + <group/> | ||
| 635 | + </field> | ||
| 636 | + <field> | ||
| 637 | + <name>厂牌型号</name> | ||
| 638 | + <type>String</type> | ||
| 639 | + <length>-1</length> | ||
| 640 | + <precision>-1</precision> | ||
| 641 | + <trim_type>none</trim_type> | ||
| 642 | + <repeat>N</repeat> | ||
| 643 | + <format/> | ||
| 644 | + <currency/> | ||
| 645 | + <decimal/> | ||
| 646 | + <group/> | ||
| 647 | + </field> | ||
| 648 | + <field> | ||
| 649 | + <name>厂牌型号2</name> | ||
| 650 | + <type>String</type> | ||
| 651 | + <length>-1</length> | ||
| 652 | + <precision>-1</precision> | ||
| 653 | + <trim_type>none</trim_type> | ||
| 654 | + <repeat>N</repeat> | ||
| 655 | + <format/> | ||
| 656 | + <currency/> | ||
| 657 | + <decimal/> | ||
| 658 | + <group/> | ||
| 659 | + </field> | ||
| 660 | + <field> | ||
| 661 | + <name>车辆等级标准</name> | ||
| 662 | + <type>String</type> | ||
| 663 | + <length>-1</length> | ||
| 664 | + <precision>-1</precision> | ||
| 665 | + <trim_type>none</trim_type> | ||
| 666 | + <repeat>N</repeat> | ||
| 667 | + <format/> | ||
| 668 | + <currency/> | ||
| 669 | + <decimal/> | ||
| 670 | + <group/> | ||
| 671 | + </field> | ||
| 672 | + <field> | ||
| 673 | + <name>出厂排放标准</name> | ||
| 674 | + <type>String</type> | ||
| 675 | + <length>-1</length> | ||
| 676 | + <precision>-1</precision> | ||
| 677 | + <trim_type>none</trim_type> | ||
| 678 | + <repeat>N</repeat> | ||
| 679 | + <format/> | ||
| 680 | + <currency/> | ||
| 681 | + <decimal/> | ||
| 682 | + <group/> | ||
| 683 | + </field> | ||
| 684 | + <field> | ||
| 685 | + <name>发动机号码1</name> | ||
| 686 | + <type>String</type> | ||
| 687 | + <length>-1</length> | ||
| 688 | + <precision>-1</precision> | ||
| 689 | + <trim_type>none</trim_type> | ||
| 690 | + <repeat>N</repeat> | ||
| 691 | + <format/> | ||
| 692 | + <currency/> | ||
| 693 | + <decimal/> | ||
| 694 | + <group/> | ||
| 695 | + </field> | ||
| 696 | + <field> | ||
| 697 | + <name>发动机号码2</name> | ||
| 698 | + <type>String</type> | ||
| 699 | + <length>-1</length> | ||
| 700 | + <precision>-1</precision> | ||
| 701 | + <trim_type>none</trim_type> | ||
| 702 | + <repeat>N</repeat> | ||
| 703 | + <format/> | ||
| 704 | + <currency/> | ||
| 705 | + <decimal/> | ||
| 706 | + <group/> | ||
| 707 | + </field> | ||
| 708 | + <field> | ||
| 709 | + <name>车架号码1</name> | ||
| 710 | + <type>String</type> | ||
| 711 | + <length>-1</length> | ||
| 712 | + <precision>-1</precision> | ||
| 713 | + <trim_type>none</trim_type> | ||
| 714 | + <repeat>N</repeat> | ||
| 715 | + <format/> | ||
| 716 | + <currency/> | ||
| 717 | + <decimal/> | ||
| 718 | + <group/> | ||
| 719 | + </field> | ||
| 720 | + <field> | ||
| 721 | + <name>车架号码2</name> | ||
| 722 | + <type>String</type> | ||
| 723 | + <length>-1</length> | ||
| 724 | + <precision>-1</precision> | ||
| 725 | + <trim_type>none</trim_type> | ||
| 726 | + <repeat>N</repeat> | ||
| 727 | + <format/> | ||
| 728 | + <currency/> | ||
| 729 | + <decimal/> | ||
| 730 | + <group/> | ||
| 731 | + </field> | ||
| 732 | + <field> | ||
| 733 | + <name>车辆类型</name> | ||
| 734 | + <type>String</type> | ||
| 735 | + <length>-1</length> | ||
| 736 | + <precision>-1</precision> | ||
| 737 | + <trim_type>none</trim_type> | ||
| 738 | + <repeat>N</repeat> | ||
| 739 | + <format/> | ||
| 740 | + <currency/> | ||
| 741 | + <decimal/> | ||
| 742 | + <group/> | ||
| 743 | + </field> | ||
| 744 | + <field> | ||
| 745 | + <name>所属公司</name> | ||
| 746 | + <type>String</type> | ||
| 747 | + <length>-1</length> | ||
| 748 | + <precision>-1</precision> | ||
| 749 | + <trim_type>none</trim_type> | ||
| 750 | + <repeat>N</repeat> | ||
| 751 | + <format/> | ||
| 752 | + <currency/> | ||
| 753 | + <decimal/> | ||
| 754 | + <group/> | ||
| 755 | + </field> | ||
| 756 | + <field> | ||
| 757 | + <name>修改日期</name> | ||
| 758 | + <type>String</type> | ||
| 759 | + <length>-1</length> | ||
| 760 | + <precision>-1</precision> | ||
| 761 | + <trim_type>none</trim_type> | ||
| 762 | + <repeat>N</repeat> | ||
| 763 | + <format/> | ||
| 764 | + <currency/> | ||
| 765 | + <decimal/> | ||
| 766 | + <group/> | ||
| 767 | + </field> | ||
| 768 | + <field> | ||
| 769 | + <name>是否机动车</name> | ||
| 770 | + <type>String</type> | ||
| 771 | + <length>-1</length> | ||
| 772 | + <precision>-1</precision> | ||
| 773 | + <trim_type>none</trim_type> | ||
| 774 | + <repeat>N</repeat> | ||
| 775 | + <format/> | ||
| 776 | + <currency/> | ||
| 777 | + <decimal/> | ||
| 778 | + <group/> | ||
| 779 | + </field> | ||
| 780 | + <field> | ||
| 781 | + <name>视频编号</name> | ||
| 782 | + <type>String</type> | ||
| 783 | + <length>-1</length> | ||
| 784 | + <precision>-1</precision> | ||
| 785 | + <trim_type>none</trim_type> | ||
| 786 | + <repeat>N</repeat> | ||
| 787 | + <format/> | ||
| 788 | + <currency/> | ||
| 789 | + <decimal/> | ||
| 790 | + <group/> | ||
| 791 | + </field> | ||
| 792 | + <field> | ||
| 793 | + <name>设备供应厂商</name> | ||
| 794 | + <type>String</type> | ||
| 795 | + <length>-1</length> | ||
| 796 | + <precision>-1</precision> | ||
| 797 | + <trim_type>none</trim_type> | ||
| 798 | + <repeat>N</repeat> | ||
| 799 | + <format/> | ||
| 800 | + <currency/> | ||
| 801 | + <decimal/> | ||
| 802 | + <group/> | ||
| 803 | + </field> | ||
| 804 | + <field> | ||
| 805 | + <name>分公司</name> | ||
| 806 | + <type>String</type> | ||
| 807 | + <length>-1</length> | ||
| 808 | + <precision>-1</precision> | ||
| 809 | + <trim_type>none</trim_type> | ||
| 810 | + <repeat>N</repeat> | ||
| 811 | + <format/> | ||
| 812 | + <currency/> | ||
| 813 | + <decimal/> | ||
| 814 | + <group/> | ||
| 815 | + </field> | ||
| 816 | + </fields> | ||
| 817 | + <sheets> | ||
| 818 | + <sheet> | ||
| 819 | + <name>工作表1</name> | ||
| 820 | + <startrow>0</startrow> | ||
| 821 | + <startcol>0</startcol> | ||
| 822 | + </sheet> | ||
| 823 | + </sheets> | ||
| 824 | + <strict_types>N</strict_types> | ||
| 825 | + <error_ignored>N</error_ignored> | ||
| 826 | + <error_line_skipped>N</error_line_skipped> | ||
| 827 | + <bad_line_files_destination_directory/> | ||
| 828 | + <bad_line_files_extension>warning</bad_line_files_extension> | ||
| 829 | + <error_line_files_destination_directory/> | ||
| 830 | + <error_line_files_extension>error</error_line_files_extension> | ||
| 831 | + <line_number_files_destination_directory/> | ||
| 832 | + <line_number_files_extension>line</line_number_files_extension> | ||
| 833 | + <shortFileFieldName/> | ||
| 834 | + <pathFieldName/> | ||
| 835 | + <hiddenFieldName/> | ||
| 836 | + <lastModificationTimeFieldName/> | ||
| 837 | + <uriNameFieldName/> | ||
| 838 | + <rootUriNameFieldName/> | ||
| 839 | + <extensionFieldName/> | ||
| 840 | + <sizeFieldName/> | ||
| 841 | + <spreadsheet_type>JXL</spreadsheet_type> | ||
| 842 | + <cluster_schema/> | ||
| 843 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 844 | + <xloc>131</xloc> | ||
| 845 | + <yloc>58</yloc> | ||
| 846 | + <draw>Y</draw> | ||
| 847 | + </GUI> | ||
| 848 | + </step> | ||
| 849 | + | ||
| 850 | + <step> | ||
| 851 | + <name>字段选择</name> | ||
| 852 | + <type>SelectValues</type> | ||
| 853 | + <description/> | ||
| 854 | + <distribute>Y</distribute> | ||
| 855 | + <custom_distribution/> | ||
| 856 | + <copies>1</copies> | ||
| 857 | + <partitioning> | ||
| 858 | + <method>none</method> | ||
| 859 | + <schema_name/> | ||
| 860 | + </partitioning> | ||
| 861 | + <fields> <field> <name>内部编码</name> | ||
| 862 | + <rename>insideCode</rename> | ||
| 863 | + <length>-2</length> | ||
| 864 | + <precision>-2</precision> | ||
| 865 | + </field> <field> <name>车辆编码</name> | ||
| 866 | + <rename>carCode</rename> | ||
| 867 | + <length>-2</length> | ||
| 868 | + <precision>-2</precision> | ||
| 869 | + </field> <field> <name>所属公司</name> | ||
| 870 | + <rename>company</rename> | ||
| 871 | + <length>-2</length> | ||
| 872 | + <precision>-2</precision> | ||
| 873 | + </field> <field> <name>分公司</name> | ||
| 874 | + <rename>brancheCompany</rename> | ||
| 875 | + <length>-2</length> | ||
| 876 | + <precision>-2</precision> | ||
| 877 | + </field> <field> <name>车牌号</name> | ||
| 878 | + <rename>carPlate</rename> | ||
| 879 | + <length>-2</length> | ||
| 880 | + <precision>-2</precision> | ||
| 881 | + </field> <field> <name>设备供应厂商</name> | ||
| 882 | + <rename>supplierName</rename> | ||
| 883 | + <length>-2</length> | ||
| 884 | + <precision>-2</precision> | ||
| 885 | + </field> <field> <name>设备编号</name> | ||
| 886 | + <rename>equipmentCode</rename> | ||
| 887 | + <length>-2</length> | ||
| 888 | + <precision>-2</precision> | ||
| 889 | + </field> <field> <name>车型类别</name> | ||
| 890 | + <rename>carClass</rename> | ||
| 891 | + <length>-2</length> | ||
| 892 | + <precision>-2</precision> | ||
| 893 | + </field> <field> <name>技术速度</name> | ||
| 894 | + <rename>speed</rename> | ||
| 895 | + <length>-2</length> | ||
| 896 | + <precision>-2</precision> | ||
| 897 | + </field> <field> <name>座位数</name> | ||
| 898 | + <rename>carSeatnNumber</rename> | ||
| 899 | + <length>-2</length> | ||
| 900 | + <precision>-2</precision> | ||
| 901 | + </field> <field> <name>载客标准</name> | ||
| 902 | + <rename>carStandard</rename> | ||
| 903 | + <length>-2</length> | ||
| 904 | + <precision>-2</precision> | ||
| 905 | + </field> <field> <name>标准油耗(开空调)</name> | ||
| 906 | + <rename>kburnStandard</rename> | ||
| 907 | + <length>-2</length> | ||
| 908 | + <precision>-2</precision> | ||
| 909 | + </field> <field> <name>标准油耗(关空调)</name> | ||
| 910 | + <rename>gburnStandard</rename> | ||
| 911 | + <length>-2</length> | ||
| 912 | + <precision>-2</precision> | ||
| 913 | + </field> <field> <name>报废号</name> | ||
| 914 | + <rename>scrapCode</rename> | ||
| 915 | + <length>-2</length> | ||
| 916 | + <precision>-2</precision> | ||
| 917 | + </field> <field> <name>厂牌型号</name> | ||
| 918 | + <rename>makeCodeOne</rename> | ||
| 919 | + <length>-2</length> | ||
| 920 | + <precision>-2</precision> | ||
| 921 | + </field> <field> <name>厂牌型号2</name> | ||
| 922 | + <rename>makeCodeTwo</rename> | ||
| 923 | + <length>-2</length> | ||
| 924 | + <precision>-2</precision> | ||
| 925 | + </field> <field> <name>车辆等级标准</name> | ||
| 926 | + <rename>carGride</rename> | ||
| 927 | + <length>-2</length> | ||
| 928 | + <precision>-2</precision> | ||
| 929 | + </field> <field> <name>出厂排放标准</name> | ||
| 930 | + <rename>emissionsStandard</rename> | ||
| 931 | + <length>-2</length> | ||
| 932 | + <precision>-2</precision> | ||
| 933 | + </field> <field> <name>发动机号码1</name> | ||
| 934 | + <rename>engineCodeOne</rename> | ||
| 935 | + <length>-2</length> | ||
| 936 | + <precision>-2</precision> | ||
| 937 | + </field> <field> <name>发动机号码2</name> | ||
| 938 | + <rename>engineCodeTwo</rename> | ||
| 939 | + <length>-2</length> | ||
| 940 | + <precision>-2</precision> | ||
| 941 | + </field> <field> <name>车架号码1</name> | ||
| 942 | + <rename>carNumberOne</rename> | ||
| 943 | + <length>-2</length> | ||
| 944 | + <precision>-2</precision> | ||
| 945 | + </field> <field> <name>车架号码2</name> | ||
| 946 | + <rename>carNumberTwo</rename> | ||
| 947 | + <length>-2</length> | ||
| 948 | + <precision>-2</precision> | ||
| 949 | + </field> <field> <name>启用日期</name> | ||
| 950 | + <rename>openDate</rename> | ||
| 951 | + <length>-2</length> | ||
| 952 | + <precision>-2</precision> | ||
| 953 | + </field> <field> <name>取消日期</name> | ||
| 954 | + <rename>closeDate</rename> | ||
| 955 | + <length>-2</length> | ||
| 956 | + <precision>-2</precision> | ||
| 957 | + </field> <field> <name>是否空调</name> | ||
| 958 | + <rename>hvacCar</rename> | ||
| 959 | + <length>-2</length> | ||
| 960 | + <precision>-2</precision> | ||
| 961 | + </field> <field> <name>有无人售票</name> | ||
| 962 | + <rename>ticketType</rename> | ||
| 963 | + <length>-2</length> | ||
| 964 | + <precision>-2</precision> | ||
| 965 | + </field> <field> <name>是否有LED服务屏</name> | ||
| 966 | + <rename>ledScreen</rename> | ||
| 967 | + <length>-2</length> | ||
| 968 | + <precision>-2</precision> | ||
| 969 | + </field> <field> <name>是否有TV视频</name> | ||
| 970 | + <rename>tvVideoType</rename> | ||
| 971 | + <length>-2</length> | ||
| 972 | + <precision>-2</precision> | ||
| 973 | + </field> <field> <name>车辆类型</name> | ||
| 974 | + <rename>carType</rename> | ||
| 975 | + <length>-2</length> | ||
| 976 | + <precision>-2</precision> | ||
| 977 | + </field> <field> <name>是否机动车</name> | ||
| 978 | + <rename>vehicleStats</rename> | ||
| 979 | + <length>-2</length> | ||
| 980 | + <precision>-2</precision> | ||
| 981 | + </field> <field> <name>运营状态</name> | ||
| 982 | + <rename>operatorsState</rename> | ||
| 983 | + <length>-2</length> | ||
| 984 | + <precision>-2</precision> | ||
| 985 | + </field> <field> <name>备注</name> | ||
| 986 | + <rename>descriptions</rename> | ||
| 987 | + <length>-2</length> | ||
| 988 | + <precision>-2</precision> | ||
| 989 | + </field> <field> <name>视频编号</name> | ||
| 990 | + <rename>videoCode</rename> | ||
| 991 | + <length>-2</length> | ||
| 992 | + <precision>-2</precision> | ||
| 993 | + </field> <select_unspecified>Y</select_unspecified> | ||
| 994 | + </fields> <cluster_schema/> | ||
| 995 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 996 | + <xloc>279</xloc> | ||
| 997 | + <yloc>59</yloc> | ||
| 998 | + <draw>Y</draw> | ||
| 999 | + </GUI> | ||
| 1000 | + </step> | ||
| 1001 | + | ||
| 1002 | + <step> | ||
| 1003 | + <name>插入/更新bsth_c_cars 2</name> | ||
| 1004 | + <type>InsertUpdate</type> | ||
| 1005 | + <description/> | ||
| 1006 | + <distribute>Y</distribute> | ||
| 1007 | + <custom_distribution/> | ||
| 1008 | + <copies>1</copies> | ||
| 1009 | + <partitioning> | ||
| 1010 | + <method>none</method> | ||
| 1011 | + <schema_name/> | ||
| 1012 | + </partitioning> | ||
| 1013 | + <connection>bus_control_variable</connection> | ||
| 1014 | + <commit>1000</commit> | ||
| 1015 | + <update_bypassed>N</update_bypassed> | ||
| 1016 | + <lookup> | ||
| 1017 | + <schema/> | ||
| 1018 | + <table>bsth_c_cars</table> | ||
| 1019 | + <key> | ||
| 1020 | + <name>businessCode</name> | ||
| 1021 | + <field>business_code</field> | ||
| 1022 | + <condition>=</condition> | ||
| 1023 | + <name2/> | ||
| 1024 | + </key> | ||
| 1025 | + <key> | ||
| 1026 | + <name>insideCode</name> | ||
| 1027 | + <field>inside_code</field> | ||
| 1028 | + <condition>=</condition> | ||
| 1029 | + <name2/> | ||
| 1030 | + </key> | ||
| 1031 | + <value> | ||
| 1032 | + <name>inside_code</name> | ||
| 1033 | + <rename>insideCode</rename> | ||
| 1034 | + <update>Y</update> | ||
| 1035 | + </value> | ||
| 1036 | + <value> | ||
| 1037 | + <name>company</name> | ||
| 1038 | + <rename>company</rename> | ||
| 1039 | + <update>Y</update> | ||
| 1040 | + </value> | ||
| 1041 | + <value> | ||
| 1042 | + <name>branche_company</name> | ||
| 1043 | + <rename>brancheCompany</rename> | ||
| 1044 | + <update>Y</update> | ||
| 1045 | + </value> | ||
| 1046 | + <value> | ||
| 1047 | + <name>car_plate</name> | ||
| 1048 | + <rename>carPlate</rename> | ||
| 1049 | + <update>Y</update> | ||
| 1050 | + </value> | ||
| 1051 | + <value> | ||
| 1052 | + <name>supplier_name</name> | ||
| 1053 | + <rename>supplierName</rename> | ||
| 1054 | + <update>Y</update> | ||
| 1055 | + </value> | ||
| 1056 | + <value> | ||
| 1057 | + <name>equipment_code</name> | ||
| 1058 | + <rename>equipmentCode</rename> | ||
| 1059 | + <update>Y</update> | ||
| 1060 | + </value> | ||
| 1061 | + <value> | ||
| 1062 | + <name>car_class</name> | ||
| 1063 | + <rename>carClass</rename> | ||
| 1064 | + <update>Y</update> | ||
| 1065 | + </value> | ||
| 1066 | + <value> | ||
| 1067 | + <name>speed</name> | ||
| 1068 | + <rename>speed</rename> | ||
| 1069 | + <update>Y</update> | ||
| 1070 | + </value> | ||
| 1071 | + <value> | ||
| 1072 | + <name>car_seatn_number</name> | ||
| 1073 | + <rename>carSeatnNumber</rename> | ||
| 1074 | + <update>Y</update> | ||
| 1075 | + </value> | ||
| 1076 | + <value> | ||
| 1077 | + <name>car_standard</name> | ||
| 1078 | + <rename>carStandard</rename> | ||
| 1079 | + <update>Y</update> | ||
| 1080 | + </value> | ||
| 1081 | + <value> | ||
| 1082 | + <name>car_code</name> | ||
| 1083 | + <rename>carCode</rename> | ||
| 1084 | + <update>Y</update> | ||
| 1085 | + </value> | ||
| 1086 | + <value> | ||
| 1087 | + <name>kburn_standard</name> | ||
| 1088 | + <rename>kburnStandard</rename> | ||
| 1089 | + <update>Y</update> | ||
| 1090 | + </value> | ||
| 1091 | + <value> | ||
| 1092 | + <name>gburn_standard</name> | ||
| 1093 | + <rename>gburnStandard</rename> | ||
| 1094 | + <update>Y</update> | ||
| 1095 | + </value> | ||
| 1096 | + <value> | ||
| 1097 | + <name>scrap_code</name> | ||
| 1098 | + <rename>scrapCode</rename> | ||
| 1099 | + <update>Y</update> | ||
| 1100 | + </value> | ||
| 1101 | + <value> | ||
| 1102 | + <name>make_code_one</name> | ||
| 1103 | + <rename>makeCodeOne</rename> | ||
| 1104 | + <update>Y</update> | ||
| 1105 | + </value> | ||
| 1106 | + <value> | ||
| 1107 | + <name>make_code_two</name> | ||
| 1108 | + <rename>makeCodeTwo</rename> | ||
| 1109 | + <update>Y</update> | ||
| 1110 | + </value> | ||
| 1111 | + <value> | ||
| 1112 | + <name>car_gride</name> | ||
| 1113 | + <rename>carGride</rename> | ||
| 1114 | + <update>Y</update> | ||
| 1115 | + </value> | ||
| 1116 | + <value> | ||
| 1117 | + <name>emissions_standard</name> | ||
| 1118 | + <rename>emissionsStandard</rename> | ||
| 1119 | + <update>Y</update> | ||
| 1120 | + </value> | ||
| 1121 | + <value> | ||
| 1122 | + <name>engine_code_one</name> | ||
| 1123 | + <rename>engineCodeOne</rename> | ||
| 1124 | + <update>Y</update> | ||
| 1125 | + </value> | ||
| 1126 | + <value> | ||
| 1127 | + <name>engine_code_two</name> | ||
| 1128 | + <rename>engineCodeTwo</rename> | ||
| 1129 | + <update>Y</update> | ||
| 1130 | + </value> | ||
| 1131 | + <value> | ||
| 1132 | + <name>car_number_one</name> | ||
| 1133 | + <rename>carNumberOne</rename> | ||
| 1134 | + <update>Y</update> | ||
| 1135 | + </value> | ||
| 1136 | + <value> | ||
| 1137 | + <name>car_number_two</name> | ||
| 1138 | + <rename>carNumberTwo</rename> | ||
| 1139 | + <update>Y</update> | ||
| 1140 | + </value> | ||
| 1141 | + <value> | ||
| 1142 | + <name>open_date</name> | ||
| 1143 | + <rename>openDate</rename> | ||
| 1144 | + <update>Y</update> | ||
| 1145 | + </value> | ||
| 1146 | + <value> | ||
| 1147 | + <name>close_date</name> | ||
| 1148 | + <rename>closeDate</rename> | ||
| 1149 | + <update>Y</update> | ||
| 1150 | + </value> | ||
| 1151 | + <value> | ||
| 1152 | + <name>hvac_car</name> | ||
| 1153 | + <rename>hvacCar</rename> | ||
| 1154 | + <update>Y</update> | ||
| 1155 | + </value> | ||
| 1156 | + <value> | ||
| 1157 | + <name>ticket_type</name> | ||
| 1158 | + <rename>ticketType</rename> | ||
| 1159 | + <update>Y</update> | ||
| 1160 | + </value> | ||
| 1161 | + <value> | ||
| 1162 | + <name>led_screen</name> | ||
| 1163 | + <rename>ledScreen</rename> | ||
| 1164 | + <update>Y</update> | ||
| 1165 | + </value> | ||
| 1166 | + <value> | ||
| 1167 | + <name>tv_video_type</name> | ||
| 1168 | + <rename>tvVideoType</rename> | ||
| 1169 | + <update>Y</update> | ||
| 1170 | + </value> | ||
| 1171 | + <value> | ||
| 1172 | + <name>car_type</name> | ||
| 1173 | + <rename>carType</rename> | ||
| 1174 | + <update>Y</update> | ||
| 1175 | + </value> | ||
| 1176 | + <value> | ||
| 1177 | + <name>vehicle_stats</name> | ||
| 1178 | + <rename>vehicleStats</rename> | ||
| 1179 | + <update>Y</update> | ||
| 1180 | + </value> | ||
| 1181 | + <value> | ||
| 1182 | + <name>operators_state</name> | ||
| 1183 | + <rename>operatorsState</rename> | ||
| 1184 | + <update>Y</update> | ||
| 1185 | + </value> | ||
| 1186 | + <value> | ||
| 1187 | + <name>descriptions</name> | ||
| 1188 | + <rename>descriptions</rename> | ||
| 1189 | + <update>Y</update> | ||
| 1190 | + </value> | ||
| 1191 | + <value> | ||
| 1192 | + <name>video_code</name> | ||
| 1193 | + <rename>videoCode</rename> | ||
| 1194 | + <update>Y</update> | ||
| 1195 | + </value> | ||
| 1196 | + <value> | ||
| 1197 | + <name>business_code</name> | ||
| 1198 | + <rename>businessCode</rename> | ||
| 1199 | + <update>Y</update> | ||
| 1200 | + </value> | ||
| 1201 | + </lookup> | ||
| 1202 | + <cluster_schema/> | ||
| 1203 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1204 | + <xloc>821</xloc> | ||
| 1205 | + <yloc>362</yloc> | ||
| 1206 | + <draw>Y</draw> | ||
| 1207 | + </GUI> | ||
| 1208 | + </step> | ||
| 1209 | + | ||
| 1210 | + <step> | ||
| 1211 | + <name>是否有LED服务屏</name> | ||
| 1212 | + <type>ValueMapper</type> | ||
| 1213 | + <description/> | ||
| 1214 | + <distribute>Y</distribute> | ||
| 1215 | + <custom_distribution/> | ||
| 1216 | + <copies>1</copies> | ||
| 1217 | + <partitioning> | ||
| 1218 | + <method>none</method> | ||
| 1219 | + <schema_name/> | ||
| 1220 | + </partitioning> | ||
| 1221 | + <field_to_use>ledScreen</field_to_use> | ||
| 1222 | + <target_field/> | ||
| 1223 | + <non_match_default/> | ||
| 1224 | + <fields> | ||
| 1225 | + <field> | ||
| 1226 | + <source_value>是</source_value> | ||
| 1227 | + <target_value>1</target_value> | ||
| 1228 | + </field> | ||
| 1229 | + <field> | ||
| 1230 | + <source_value>否</source_value> | ||
| 1231 | + <target_value>0</target_value> | ||
| 1232 | + </field> | ||
| 1233 | + </fields> | ||
| 1234 | + <cluster_schema/> | ||
| 1235 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1236 | + <xloc>590</xloc> | ||
| 1237 | + <yloc>61</yloc> | ||
| 1238 | + <draw>Y</draw> | ||
| 1239 | + </GUI> | ||
| 1240 | + </step> | ||
| 1241 | + | ||
| 1242 | + <step> | ||
| 1243 | + <name>是否有TV视频</name> | ||
| 1244 | + <type>ValueMapper</type> | ||
| 1245 | + <description/> | ||
| 1246 | + <distribute>Y</distribute> | ||
| 1247 | + <custom_distribution/> | ||
| 1248 | + <copies>1</copies> | ||
| 1249 | + <partitioning> | ||
| 1250 | + <method>none</method> | ||
| 1251 | + <schema_name/> | ||
| 1252 | + </partitioning> | ||
| 1253 | + <field_to_use>tvVideoType</field_to_use> | ||
| 1254 | + <target_field/> | ||
| 1255 | + <non_match_default/> | ||
| 1256 | + <fields> | ||
| 1257 | + <field> | ||
| 1258 | + <source_value>是</source_value> | ||
| 1259 | + <target_value>1</target_value> | ||
| 1260 | + </field> | ||
| 1261 | + <field> | ||
| 1262 | + <source_value>否</source_value> | ||
| 1263 | + <target_value>0</target_value> | ||
| 1264 | + </field> | ||
| 1265 | + </fields> | ||
| 1266 | + <cluster_schema/> | ||
| 1267 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1268 | + <xloc>706</xloc> | ||
| 1269 | + <yloc>61</yloc> | ||
| 1270 | + <draw>Y</draw> | ||
| 1271 | + </GUI> | ||
| 1272 | + </step> | ||
| 1273 | + | ||
| 1274 | + <step> | ||
| 1275 | + <name>是否的变成数字型</name> | ||
| 1276 | + <type>SelectValues</type> | ||
| 1277 | + <description/> | ||
| 1278 | + <distribute>Y</distribute> | ||
| 1279 | + <custom_distribution/> | ||
| 1280 | + <copies>1</copies> | ||
| 1281 | + <partitioning> | ||
| 1282 | + <method>none</method> | ||
| 1283 | + <schema_name/> | ||
| 1284 | + </partitioning> | ||
| 1285 | + <fields> <select_unspecified>N</select_unspecified> | ||
| 1286 | + <meta> <name>hvacCar</name> | ||
| 1287 | + <rename>hvacCar</rename> | ||
| 1288 | + <type>Integer</type> | ||
| 1289 | + <length>1</length> | ||
| 1290 | + <precision>-2</precision> | ||
| 1291 | + <conversion_mask/> | ||
| 1292 | + <date_format_lenient>false</date_format_lenient> | ||
| 1293 | + <date_format_locale/> | ||
| 1294 | + <date_format_timezone/> | ||
| 1295 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1296 | + <encoding/> | ||
| 1297 | + <decimal_symbol/> | ||
| 1298 | + <grouping_symbol/> | ||
| 1299 | + <currency_symbol/> | ||
| 1300 | + <storage_type/> | ||
| 1301 | + </meta> <meta> <name>ticketType</name> | ||
| 1302 | + <rename>ticketType</rename> | ||
| 1303 | + <type>Integer</type> | ||
| 1304 | + <length>1</length> | ||
| 1305 | + <precision>-2</precision> | ||
| 1306 | + <conversion_mask/> | ||
| 1307 | + <date_format_lenient>false</date_format_lenient> | ||
| 1308 | + <date_format_locale/> | ||
| 1309 | + <date_format_timezone/> | ||
| 1310 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1311 | + <encoding/> | ||
| 1312 | + <decimal_symbol/> | ||
| 1313 | + <grouping_symbol/> | ||
| 1314 | + <currency_symbol/> | ||
| 1315 | + <storage_type/> | ||
| 1316 | + </meta> <meta> <name>ledScreen</name> | ||
| 1317 | + <rename>ledScreen</rename> | ||
| 1318 | + <type>Integer</type> | ||
| 1319 | + <length>1</length> | ||
| 1320 | + <precision>-2</precision> | ||
| 1321 | + <conversion_mask/> | ||
| 1322 | + <date_format_lenient>false</date_format_lenient> | ||
| 1323 | + <date_format_locale/> | ||
| 1324 | + <date_format_timezone/> | ||
| 1325 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1326 | + <encoding/> | ||
| 1327 | + <decimal_symbol/> | ||
| 1328 | + <grouping_symbol/> | ||
| 1329 | + <currency_symbol/> | ||
| 1330 | + <storage_type/> | ||
| 1331 | + </meta> <meta> <name>tvVideoType</name> | ||
| 1332 | + <rename>tvVideoType</rename> | ||
| 1333 | + <type>Integer</type> | ||
| 1334 | + <length>1</length> | ||
| 1335 | + <precision>-2</precision> | ||
| 1336 | + <conversion_mask/> | ||
| 1337 | + <date_format_lenient>false</date_format_lenient> | ||
| 1338 | + <date_format_locale/> | ||
| 1339 | + <date_format_timezone/> | ||
| 1340 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1341 | + <encoding/> | ||
| 1342 | + <decimal_symbol/> | ||
| 1343 | + <grouping_symbol/> | ||
| 1344 | + <currency_symbol/> | ||
| 1345 | + <storage_type/> | ||
| 1346 | + </meta> </fields> <cluster_schema/> | ||
| 1347 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1348 | + <xloc>839</xloc> | ||
| 1349 | + <yloc>61</yloc> | ||
| 1350 | + <draw>Y</draw> | ||
| 1351 | + </GUI> | ||
| 1352 | + </step> | ||
| 1353 | + | ||
| 1354 | + <step> | ||
| 1355 | + <name>是否空调车</name> | ||
| 1356 | + <type>ValueMapper</type> | ||
| 1357 | + <description/> | ||
| 1358 | + <distribute>Y</distribute> | ||
| 1359 | + <custom_distribution/> | ||
| 1360 | + <copies>1</copies> | ||
| 1361 | + <partitioning> | ||
| 1362 | + <method>none</method> | ||
| 1363 | + <schema_name/> | ||
| 1364 | + </partitioning> | ||
| 1365 | + <field_to_use>hvacCar</field_to_use> | ||
| 1366 | + <target_field/> | ||
| 1367 | + <non_match_default/> | ||
| 1368 | + <fields> | ||
| 1369 | + <field> | ||
| 1370 | + <source_value>是</source_value> | ||
| 1371 | + <target_value>1</target_value> | ||
| 1372 | + </field> | ||
| 1373 | + <field> | ||
| 1374 | + <source_value>否</source_value> | ||
| 1375 | + <target_value>0</target_value> | ||
| 1376 | + </field> | ||
| 1377 | + </fields> | ||
| 1378 | + <cluster_schema/> | ||
| 1379 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1380 | + <xloc>388</xloc> | ||
| 1381 | + <yloc>61</yloc> | ||
| 1382 | + <draw>Y</draw> | ||
| 1383 | + </GUI> | ||
| 1384 | + </step> | ||
| 1385 | + | ||
| 1386 | + <step> | ||
| 1387 | + <name>有无人售票</name> | ||
| 1388 | + <type>ValueMapper</type> | ||
| 1389 | + <description/> | ||
| 1390 | + <distribute>Y</distribute> | ||
| 1391 | + <custom_distribution/> | ||
| 1392 | + <copies>1</copies> | ||
| 1393 | + <partitioning> | ||
| 1394 | + <method>none</method> | ||
| 1395 | + <schema_name/> | ||
| 1396 | + </partitioning> | ||
| 1397 | + <field_to_use>ticketType</field_to_use> | ||
| 1398 | + <target_field/> | ||
| 1399 | + <non_match_default/> | ||
| 1400 | + <fields> | ||
| 1401 | + <field> | ||
| 1402 | + <source_value>是</source_value> | ||
| 1403 | + <target_value>1</target_value> | ||
| 1404 | + </field> | ||
| 1405 | + <field> | ||
| 1406 | + <source_value>否</source_value> | ||
| 1407 | + <target_value>0</target_value> | ||
| 1408 | + </field> | ||
| 1409 | + </fields> | ||
| 1410 | + <cluster_schema/> | ||
| 1411 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1412 | + <xloc>485</xloc> | ||
| 1413 | + <yloc>61</yloc> | ||
| 1414 | + <draw>Y</draw> | ||
| 1415 | + </GUI> | ||
| 1416 | + </step> | ||
| 1417 | + | ||
| 1418 | + <step> | ||
| 1419 | + <name>机动车类型</name> | ||
| 1420 | + <type>ValueMapper</type> | ||
| 1421 | + <description/> | ||
| 1422 | + <distribute>Y</distribute> | ||
| 1423 | + <custom_distribution/> | ||
| 1424 | + <copies>1</copies> | ||
| 1425 | + <partitioning> | ||
| 1426 | + <method>none</method> | ||
| 1427 | + <schema_name/> | ||
| 1428 | + </partitioning> | ||
| 1429 | + <field_to_use>vehicleStats</field_to_use> | ||
| 1430 | + <target_field/> | ||
| 1431 | + <non_match_default/> | ||
| 1432 | + <fields> | ||
| 1433 | + <field> | ||
| 1434 | + <source_value>非机动车</source_value> | ||
| 1435 | + <target_value>1</target_value> | ||
| 1436 | + </field> | ||
| 1437 | + <field> | ||
| 1438 | + <source_value>机动一队</source_value> | ||
| 1439 | + <target_value>2</target_value> | ||
| 1440 | + </field> | ||
| 1441 | + <field> | ||
| 1442 | + <source_value>机动二队</source_value> | ||
| 1443 | + <target_value>3</target_value> | ||
| 1444 | + </field> | ||
| 1445 | + <field> | ||
| 1446 | + <source_value>机动三队</source_value> | ||
| 1447 | + <target_value>4</target_value> | ||
| 1448 | + </field> | ||
| 1449 | + <field> | ||
| 1450 | + <source_value>备车</source_value> | ||
| 1451 | + <target_value>5</target_value> | ||
| 1452 | + </field> | ||
| 1453 | + <field> | ||
| 1454 | + <source_value>抢修车</source_value> | ||
| 1455 | + <target_value>6</target_value> | ||
| 1456 | + </field> | ||
| 1457 | + </fields> | ||
| 1458 | + <cluster_schema/> | ||
| 1459 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1460 | + <xloc>519</xloc> | ||
| 1461 | + <yloc>174</yloc> | ||
| 1462 | + <draw>Y</draw> | ||
| 1463 | + </GUI> | ||
| 1464 | + </step> | ||
| 1465 | + | ||
| 1466 | + <step> | ||
| 1467 | + <name>获取变量</name> | ||
| 1468 | + <type>GetVariable</type> | ||
| 1469 | + <description/> | ||
| 1470 | + <distribute>Y</distribute> | ||
| 1471 | + <custom_distribution/> | ||
| 1472 | + <copies>1</copies> | ||
| 1473 | + <partitioning> | ||
| 1474 | + <method>none</method> | ||
| 1475 | + <schema_name/> | ||
| 1476 | + </partitioning> | ||
| 1477 | + <fields> | ||
| 1478 | + <field> | ||
| 1479 | + <name>filepath_</name> | ||
| 1480 | + <variable>${filepath}</variable> | ||
| 1481 | + <type>String</type> | ||
| 1482 | + <format/> | ||
| 1483 | + <currency/> | ||
| 1484 | + <decimal/> | ||
| 1485 | + <group/> | ||
| 1486 | + <length>-1</length> | ||
| 1487 | + <precision>-1</precision> | ||
| 1488 | + <trim_type>none</trim_type> | ||
| 1489 | + </field> | ||
| 1490 | + <field> | ||
| 1491 | + <name>erroroutputdir_</name> | ||
| 1492 | + <variable>${erroroutputdir}</variable> | ||
| 1493 | + <type>String</type> | ||
| 1494 | + <format/> | ||
| 1495 | + <currency/> | ||
| 1496 | + <decimal/> | ||
| 1497 | + <group/> | ||
| 1498 | + <length>-1</length> | ||
| 1499 | + <precision>-1</precision> | ||
| 1500 | + <trim_type>none</trim_type> | ||
| 1501 | + </field> | ||
| 1502 | + </fields> | ||
| 1503 | + <cluster_schema/> | ||
| 1504 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1505 | + <xloc>134</xloc> | ||
| 1506 | + <yloc>183</yloc> | ||
| 1507 | + <draw>Y</draw> | ||
| 1508 | + </GUI> | ||
| 1509 | + </step> | ||
| 1510 | + | ||
| 1511 | + <step> | ||
| 1512 | + <name>营运状态</name> | ||
| 1513 | + <type>ValueMapper</type> | ||
| 1514 | + <description/> | ||
| 1515 | + <distribute>Y</distribute> | ||
| 1516 | + <custom_distribution/> | ||
| 1517 | + <copies>1</copies> | ||
| 1518 | + <partitioning> | ||
| 1519 | + <method>none</method> | ||
| 1520 | + <schema_name/> | ||
| 1521 | + </partitioning> | ||
| 1522 | + <field_to_use>operatorsState</field_to_use> | ||
| 1523 | + <target_field/> | ||
| 1524 | + <non_match_default/> | ||
| 1525 | + <fields> | ||
| 1526 | + <field> | ||
| 1527 | + <source_value>营运</source_value> | ||
| 1528 | + <target_value>1</target_value> | ||
| 1529 | + </field> | ||
| 1530 | + <field> | ||
| 1531 | + <source_value>停运</source_value> | ||
| 1532 | + <target_value>2</target_value> | ||
| 1533 | + </field> | ||
| 1534 | + <field> | ||
| 1535 | + <source_value>挂失</source_value> | ||
| 1536 | + <target_value>3</target_value> | ||
| 1537 | + </field> | ||
| 1538 | + <field> | ||
| 1539 | + <source_value>迁出(过户)</source_value> | ||
| 1540 | + <target_value>4</target_value> | ||
| 1541 | + </field> | ||
| 1542 | + <field> | ||
| 1543 | + <source_value>迁出(转籍)</source_value> | ||
| 1544 | + <target_value>5</target_value> | ||
| 1545 | + </field> | ||
| 1546 | + <field> | ||
| 1547 | + <source_value>报废</source_value> | ||
| 1548 | + <target_value>6</target_value> | ||
| 1549 | + </field> | ||
| 1550 | + <field> | ||
| 1551 | + <source_value>歇业</source_value> | ||
| 1552 | + <target_value>7</target_value> | ||
| 1553 | + </field> | ||
| 1554 | + <field> | ||
| 1555 | + <source_value>注销</source_value> | ||
| 1556 | + <target_value>8</target_value> | ||
| 1557 | + </field> | ||
| 1558 | + <field> | ||
| 1559 | + <source_value>测试</source_value> | ||
| 1560 | + <target_value>9</target_value> | ||
| 1561 | + </field> | ||
| 1562 | + <field> | ||
| 1563 | + <source_value>其他</source_value> | ||
| 1564 | + <target_value>10</target_value> | ||
| 1565 | + </field> | ||
| 1566 | + </fields> | ||
| 1567 | + <cluster_schema/> | ||
| 1568 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1569 | + <xloc>615</xloc> | ||
| 1570 | + <yloc>173</yloc> | ||
| 1571 | + <draw>Y</draw> | ||
| 1572 | + </GUI> | ||
| 1573 | + </step> | ||
| 1574 | + | ||
| 1575 | + <step> | ||
| 1576 | + <name>车辆类型</name> | ||
| 1577 | + <type>ValueMapper</type> | ||
| 1578 | + <description/> | ||
| 1579 | + <distribute>Y</distribute> | ||
| 1580 | + <custom_distribution/> | ||
| 1581 | + <copies>1</copies> | ||
| 1582 | + <partitioning> | ||
| 1583 | + <method>none</method> | ||
| 1584 | + <schema_name/> | ||
| 1585 | + </partitioning> | ||
| 1586 | + <field_to_use>carType</field_to_use> | ||
| 1587 | + <target_field/> | ||
| 1588 | + <non_match_default/> | ||
| 1589 | + <fields> | ||
| 1590 | + <field> | ||
| 1591 | + <source_value>营运车</source_value> | ||
| 1592 | + <target_value>1</target_value> | ||
| 1593 | + </field> | ||
| 1594 | + <field> | ||
| 1595 | + <source_value>包车</source_value> | ||
| 1596 | + <target_value>2</target_value> | ||
| 1597 | + </field> | ||
| 1598 | + <field> | ||
| 1599 | + <source_value>学校班车</source_value> | ||
| 1600 | + <target_value>3</target_value> | ||
| 1601 | + </field> | ||
| 1602 | + <field> | ||
| 1603 | + <source_value>公司班车</source_value> | ||
| 1604 | + <target_value>4</target_value> | ||
| 1605 | + </field> | ||
| 1606 | + <field> | ||
| 1607 | + <source_value>待报废车</source_value> | ||
| 1608 | + <target_value>5</target_value> | ||
| 1609 | + </field> | ||
| 1610 | + <field> | ||
| 1611 | + <source_value>备车</source_value> | ||
| 1612 | + <target_value>6</target_value> | ||
| 1613 | + </field> | ||
| 1614 | + <field> | ||
| 1615 | + <source_value>测试设备</source_value> | ||
| 1616 | + <target_value>7</target_value> | ||
| 1617 | + </field> | ||
| 1618 | + </fields> | ||
| 1619 | + <cluster_schema/> | ||
| 1620 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1621 | + <xloc>521</xloc> | ||
| 1622 | + <yloc>275</yloc> | ||
| 1623 | + <draw>Y</draw> | ||
| 1624 | + </GUI> | ||
| 1625 | + </step> | ||
| 1626 | + | ||
| 1627 | + <step> | ||
| 1628 | + <name>车辆编码</name> | ||
| 1629 | + <type>Constant</type> | ||
| 1630 | + <description/> | ||
| 1631 | + <distribute>Y</distribute> | ||
| 1632 | + <custom_distribution/> | ||
| 1633 | + <copies>1</copies> | ||
| 1634 | + <partitioning> | ||
| 1635 | + <method>none</method> | ||
| 1636 | + <schema_name/> | ||
| 1637 | + </partitioning> | ||
| 1638 | + <fields> | ||
| 1639 | + <field> | ||
| 1640 | + <name>carCode</name> | ||
| 1641 | + <type>String</type> | ||
| 1642 | + <format/> | ||
| 1643 | + <currency/> | ||
| 1644 | + <decimal/> | ||
| 1645 | + <group/> | ||
| 1646 | + <nullif>1</nullif> | ||
| 1647 | + <length>-1</length> | ||
| 1648 | + <precision>-1</precision> | ||
| 1649 | + <set_empty_string>N</set_empty_string> | ||
| 1650 | + </field> | ||
| 1651 | + </fields> | ||
| 1652 | + <cluster_schema/> | ||
| 1653 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1654 | + <xloc>820</xloc> | ||
| 1655 | + <yloc>272</yloc> | ||
| 1656 | + <draw>Y</draw> | ||
| 1657 | + </GUI> | ||
| 1658 | + </step> | ||
| 1659 | + | ||
| 1660 | + <step> | ||
| 1661 | + <name>错误输出 2</name> | ||
| 1662 | + <type>ExcelOutput</type> | ||
| 1663 | + <description/> | ||
| 1664 | + <distribute>Y</distribute> | ||
| 1665 | + <custom_distribution/> | ||
| 1666 | + <copies>1</copies> | ||
| 1667 | + <partitioning> | ||
| 1668 | + <method>none</method> | ||
| 1669 | + <schema_name/> | ||
| 1670 | + </partitioning> | ||
| 1671 | + <header>Y</header> | ||
| 1672 | + <footer>N</footer> | ||
| 1673 | + <encoding/> | ||
| 1674 | + <append>N</append> | ||
| 1675 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 1676 | + <file> | ||
| 1677 | + <name>${erroroutputdir}/车辆基础信息_错误</name> | ||
| 1678 | + <extention>xls</extention> | ||
| 1679 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 1680 | + <create_parent_folder>N</create_parent_folder> | ||
| 1681 | + <split>N</split> | ||
| 1682 | + <add_date>N</add_date> | ||
| 1683 | + <add_time>N</add_time> | ||
| 1684 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 1685 | + <date_time_format/> | ||
| 1686 | + <sheetname>Sheet1</sheetname> | ||
| 1687 | + <autosizecolums>N</autosizecolums> | ||
| 1688 | + <nullisblank>N</nullisblank> | ||
| 1689 | + <protect_sheet>N</protect_sheet> | ||
| 1690 | + <password>Encrypted </password> | ||
| 1691 | + <splitevery>0</splitevery> | ||
| 1692 | + <usetempfiles>N</usetempfiles> | ||
| 1693 | + <tempdirectory/> | ||
| 1694 | + </file> | ||
| 1695 | + <template> | ||
| 1696 | + <enabled>N</enabled> | ||
| 1697 | + <append>N</append> | ||
| 1698 | + <filename>template.xls</filename> | ||
| 1699 | + </template> | ||
| 1700 | + <fields> | ||
| 1701 | + <field> | ||
| 1702 | + <name>insideCode</name> | ||
| 1703 | + <type>String</type> | ||
| 1704 | + <format/> | ||
| 1705 | + </field> | ||
| 1706 | + <field> | ||
| 1707 | + <name>company</name> | ||
| 1708 | + <type>String</type> | ||
| 1709 | + <format/> | ||
| 1710 | + </field> | ||
| 1711 | + <field> | ||
| 1712 | + <name>brancheCompany</name> | ||
| 1713 | + <type>String</type> | ||
| 1714 | + <format/> | ||
| 1715 | + </field> | ||
| 1716 | + <field> | ||
| 1717 | + <name>carPlate</name> | ||
| 1718 | + <type>String</type> | ||
| 1719 | + <format/> | ||
| 1720 | + </field> | ||
| 1721 | + <field> | ||
| 1722 | + <name>supplierName</name> | ||
| 1723 | + <type>String</type> | ||
| 1724 | + <format/> | ||
| 1725 | + </field> | ||
| 1726 | + <field> | ||
| 1727 | + <name>equipmentCode</name> | ||
| 1728 | + <type>String</type> | ||
| 1729 | + <format/> | ||
| 1730 | + </field> | ||
| 1731 | + <field> | ||
| 1732 | + <name>carClass</name> | ||
| 1733 | + <type>String</type> | ||
| 1734 | + <format/> | ||
| 1735 | + </field> | ||
| 1736 | + <field> | ||
| 1737 | + <name>speed</name> | ||
| 1738 | + <type>String</type> | ||
| 1739 | + <format/> | ||
| 1740 | + </field> | ||
| 1741 | + <field> | ||
| 1742 | + <name>carSeatnNumber</name> | ||
| 1743 | + <type>String</type> | ||
| 1744 | + <format/> | ||
| 1745 | + </field> | ||
| 1746 | + <field> | ||
| 1747 | + <name>carStandard</name> | ||
| 1748 | + <type>String</type> | ||
| 1749 | + <format/> | ||
| 1750 | + </field> | ||
| 1751 | + <field> | ||
| 1752 | + <name>kburnStandard</name> | ||
| 1753 | + <type>String</type> | ||
| 1754 | + <format/> | ||
| 1755 | + </field> | ||
| 1756 | + <field> | ||
| 1757 | + <name>gburnStandard</name> | ||
| 1758 | + <type>String</type> | ||
| 1759 | + <format/> | ||
| 1760 | + </field> | ||
| 1761 | + <field> | ||
| 1762 | + <name>scrapCode</name> | ||
| 1763 | + <type>String</type> | ||
| 1764 | + <format/> | ||
| 1765 | + </field> | ||
| 1766 | + <field> | ||
| 1767 | + <name>makeCodeOne</name> | ||
| 1768 | + <type>String</type> | ||
| 1769 | + <format/> | ||
| 1770 | + </field> | ||
| 1771 | + <field> | ||
| 1772 | + <name>makeCodeTwo</name> | ||
| 1773 | + <type>String</type> | ||
| 1774 | + <format/> | ||
| 1775 | + </field> | ||
| 1776 | + <field> | ||
| 1777 | + <name>carGride</name> | ||
| 1778 | + <type>String</type> | ||
| 1779 | + <format/> | ||
| 1780 | + </field> | ||
| 1781 | + <field> | ||
| 1782 | + <name>emissionsStandard</name> | ||
| 1783 | + <type>String</type> | ||
| 1784 | + <format/> | ||
| 1785 | + </field> | ||
| 1786 | + <field> | ||
| 1787 | + <name>engineCodeOne</name> | ||
| 1788 | + <type>String</type> | ||
| 1789 | + <format/> | ||
| 1790 | + </field> | ||
| 1791 | + <field> | ||
| 1792 | + <name>engineCodeTwo</name> | ||
| 1793 | + <type>String</type> | ||
| 1794 | + <format/> | ||
| 1795 | + </field> | ||
| 1796 | + <field> | ||
| 1797 | + <name>carNumberOne</name> | ||
| 1798 | + <type>String</type> | ||
| 1799 | + <format/> | ||
| 1800 | + </field> | ||
| 1801 | + <field> | ||
| 1802 | + <name>carNumberTwo</name> | ||
| 1803 | + <type>String</type> | ||
| 1804 | + <format/> | ||
| 1805 | + </field> | ||
| 1806 | + <field> | ||
| 1807 | + <name>openDate</name> | ||
| 1808 | + <type>String</type> | ||
| 1809 | + <format/> | ||
| 1810 | + </field> | ||
| 1811 | + <field> | ||
| 1812 | + <name>closeDate</name> | ||
| 1813 | + <type>String</type> | ||
| 1814 | + <format/> | ||
| 1815 | + </field> | ||
| 1816 | + <field> | ||
| 1817 | + <name>hvacCar</name> | ||
| 1818 | + <type>Integer</type> | ||
| 1819 | + <format/> | ||
| 1820 | + </field> | ||
| 1821 | + <field> | ||
| 1822 | + <name>ticketType</name> | ||
| 1823 | + <type>Integer</type> | ||
| 1824 | + <format/> | ||
| 1825 | + </field> | ||
| 1826 | + <field> | ||
| 1827 | + <name>ledScreen</name> | ||
| 1828 | + <type>Integer</type> | ||
| 1829 | + <format/> | ||
| 1830 | + </field> | ||
| 1831 | + <field> | ||
| 1832 | + <name>tvVideoType</name> | ||
| 1833 | + <type>Integer</type> | ||
| 1834 | + <format/> | ||
| 1835 | + </field> | ||
| 1836 | + <field> | ||
| 1837 | + <name>carType</name> | ||
| 1838 | + <type>String</type> | ||
| 1839 | + <format/> | ||
| 1840 | + </field> | ||
| 1841 | + <field> | ||
| 1842 | + <name>vehicleStats</name> | ||
| 1843 | + <type>String</type> | ||
| 1844 | + <format/> | ||
| 1845 | + </field> | ||
| 1846 | + <field> | ||
| 1847 | + <name>operatorsState</name> | ||
| 1848 | + <type>String</type> | ||
| 1849 | + <format/> | ||
| 1850 | + </field> | ||
| 1851 | + <field> | ||
| 1852 | + <name>descriptions</name> | ||
| 1853 | + <type>String</type> | ||
| 1854 | + <format/> | ||
| 1855 | + </field> | ||
| 1856 | + <field> | ||
| 1857 | + <name>videoCode</name> | ||
| 1858 | + <type>String</type> | ||
| 1859 | + <format/> | ||
| 1860 | + </field> | ||
| 1861 | + <field> | ||
| 1862 | + <name>businessCode</name> | ||
| 1863 | + <type>String</type> | ||
| 1864 | + <format/> | ||
| 1865 | + </field> | ||
| 1866 | + <field> | ||
| 1867 | + <name>carCode</name> | ||
| 1868 | + <type>String</type> | ||
| 1869 | + <format/> | ||
| 1870 | + </field> | ||
| 1871 | + <field> | ||
| 1872 | + <name>error_count</name> | ||
| 1873 | + <type>Integer</type> | ||
| 1874 | + <format/> | ||
| 1875 | + </field> | ||
| 1876 | + <field> | ||
| 1877 | + <name>error_desc</name> | ||
| 1878 | + <type>String</type> | ||
| 1879 | + <format/> | ||
| 1880 | + </field> | ||
| 1881 | + <field> | ||
| 1882 | + <name>error_column1</name> | ||
| 1883 | + <type>String</type> | ||
| 1884 | + <format/> | ||
| 1885 | + </field> | ||
| 1886 | + <field> | ||
| 1887 | + <name>error_column2</name> | ||
| 1888 | + <type>String</type> | ||
| 1889 | + <format/> | ||
| 1890 | + </field> | ||
| 1891 | + </fields> | ||
| 1892 | + <custom> | ||
| 1893 | + <header_font_name>arial</header_font_name> | ||
| 1894 | + <header_font_size>10</header_font_size> | ||
| 1895 | + <header_font_bold>N</header_font_bold> | ||
| 1896 | + <header_font_italic>N</header_font_italic> | ||
| 1897 | + <header_font_underline>no</header_font_underline> | ||
| 1898 | + <header_font_orientation>horizontal</header_font_orientation> | ||
| 1899 | + <header_font_color>black</header_font_color> | ||
| 1900 | + <header_background_color>none</header_background_color> | ||
| 1901 | + <header_row_height>255</header_row_height> | ||
| 1902 | + <header_alignment>left</header_alignment> | ||
| 1903 | + <header_image/> | ||
| 1904 | + <row_font_name>arial</row_font_name> | ||
| 1905 | + <row_font_size>10</row_font_size> | ||
| 1906 | + <row_font_color>black</row_font_color> | ||
| 1907 | + <row_background_color>none</row_background_color> | ||
| 1908 | + </custom> | ||
| 1909 | + <cluster_schema/> | ||
| 1910 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1911 | + <xloc>633</xloc> | ||
| 1912 | + <yloc>364</yloc> | ||
| 1913 | + <draw>Y</draw> | ||
| 1914 | + </GUI> | ||
| 1915 | + </step> | ||
| 1916 | + | ||
| 1917 | + <step> | ||
| 1918 | + <name>错误输出 2 2</name> | ||
| 1919 | + <type>ExcelOutput</type> | ||
| 1920 | + <description/> | ||
| 1921 | + <distribute>Y</distribute> | ||
| 1922 | + <custom_distribution/> | ||
| 1923 | + <copies>1</copies> | ||
| 1924 | + <partitioning> | ||
| 1925 | + <method>none</method> | ||
| 1926 | + <schema_name/> | ||
| 1927 | + </partitioning> | ||
| 1928 | + <header>Y</header> | ||
| 1929 | + <footer>N</footer> | ||
| 1930 | + <encoding/> | ||
| 1931 | + <append>N</append> | ||
| 1932 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 1933 | + <file> | ||
| 1934 | + <name>${erroroutputdir}/车辆基础信息_错误2</name> | ||
| 1935 | + <extention>xls</extention> | ||
| 1936 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 1937 | + <create_parent_folder>N</create_parent_folder> | ||
| 1938 | + <split>N</split> | ||
| 1939 | + <add_date>N</add_date> | ||
| 1940 | + <add_time>N</add_time> | ||
| 1941 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 1942 | + <date_time_format/> | ||
| 1943 | + <sheetname>Sheet1</sheetname> | ||
| 1944 | + <autosizecolums>N</autosizecolums> | ||
| 1945 | + <nullisblank>N</nullisblank> | ||
| 1946 | + <protect_sheet>N</protect_sheet> | ||
| 1947 | + <password>Encrypted </password> | ||
| 1948 | + <splitevery>0</splitevery> | ||
| 1949 | + <usetempfiles>N</usetempfiles> | ||
| 1950 | + <tempdirectory/> | ||
| 1951 | + </file> | ||
| 1952 | + <template> | ||
| 1953 | + <enabled>N</enabled> | ||
| 1954 | + <append>N</append> | ||
| 1955 | + <filename>template.xls</filename> | ||
| 1956 | + </template> | ||
| 1957 | + <fields> | ||
| 1958 | + <field> | ||
| 1959 | + <name>insideCode</name> | ||
| 1960 | + <type>String</type> | ||
| 1961 | + <format/> | ||
| 1962 | + </field> | ||
| 1963 | + <field> | ||
| 1964 | + <name>carCode</name> | ||
| 1965 | + <type>String</type> | ||
| 1966 | + <format/> | ||
| 1967 | + </field> | ||
| 1968 | + <field> | ||
| 1969 | + <name>company</name> | ||
| 1970 | + <type>String</type> | ||
| 1971 | + <format/> | ||
| 1972 | + </field> | ||
| 1973 | + <field> | ||
| 1974 | + <name>brancheCompany</name> | ||
| 1975 | + <type>String</type> | ||
| 1976 | + <format/> | ||
| 1977 | + </field> | ||
| 1978 | + <field> | ||
| 1979 | + <name>carPlate</name> | ||
| 1980 | + <type>String</type> | ||
| 1981 | + <format/> | ||
| 1982 | + </field> | ||
| 1983 | + <field> | ||
| 1984 | + <name>supplierName</name> | ||
| 1985 | + <type>String</type> | ||
| 1986 | + <format/> | ||
| 1987 | + </field> | ||
| 1988 | + <field> | ||
| 1989 | + <name>equipmentCode</name> | ||
| 1990 | + <type>String</type> | ||
| 1991 | + <format/> | ||
| 1992 | + </field> | ||
| 1993 | + <field> | ||
| 1994 | + <name>carClass</name> | ||
| 1995 | + <type>String</type> | ||
| 1996 | + <format/> | ||
| 1997 | + </field> | ||
| 1998 | + <field> | ||
| 1999 | + <name>speed</name> | ||
| 2000 | + <type>String</type> | ||
| 2001 | + <format/> | ||
| 2002 | + </field> | ||
| 2003 | + <field> | ||
| 2004 | + <name>carSeatnNumber</name> | ||
| 2005 | + <type>String</type> | ||
| 2006 | + <format/> | ||
| 2007 | + </field> | ||
| 2008 | + <field> | ||
| 2009 | + <name>carStandard</name> | ||
| 2010 | + <type>String</type> | ||
| 2011 | + <format/> | ||
| 2012 | + </field> | ||
| 2013 | + <field> | ||
| 2014 | + <name>kburnStandard</name> | ||
| 2015 | + <type>String</type> | ||
| 2016 | + <format/> | ||
| 2017 | + </field> | ||
| 2018 | + <field> | ||
| 2019 | + <name>gburnStandard</name> | ||
| 2020 | + <type>String</type> | ||
| 2021 | + <format/> | ||
| 2022 | + </field> | ||
| 2023 | + <field> | ||
| 2024 | + <name>scrapCode</name> | ||
| 2025 | + <type>String</type> | ||
| 2026 | + <format/> | ||
| 2027 | + </field> | ||
| 2028 | + <field> | ||
| 2029 | + <name>makeCodeOne</name> | ||
| 2030 | + <type>String</type> | ||
| 2031 | + <format/> | ||
| 2032 | + </field> | ||
| 2033 | + <field> | ||
| 2034 | + <name>makeCodeTwo</name> | ||
| 2035 | + <type>String</type> | ||
| 2036 | + <format/> | ||
| 2037 | + </field> | ||
| 2038 | + <field> | ||
| 2039 | + <name>carGride</name> | ||
| 2040 | + <type>String</type> | ||
| 2041 | + <format/> | ||
| 2042 | + </field> | ||
| 2043 | + <field> | ||
| 2044 | + <name>emissionsStandard</name> | ||
| 2045 | + <type>String</type> | ||
| 2046 | + <format/> | ||
| 2047 | + </field> | ||
| 2048 | + <field> | ||
| 2049 | + <name>engineCodeOne</name> | ||
| 2050 | + <type>String</type> | ||
| 2051 | + <format/> | ||
| 2052 | + </field> | ||
| 2053 | + <field> | ||
| 2054 | + <name>engineCodeTwo</name> | ||
| 2055 | + <type>String</type> | ||
| 2056 | + <format/> | ||
| 2057 | + </field> | ||
| 2058 | + <field> | ||
| 2059 | + <name>carNumberOne</name> | ||
| 2060 | + <type>String</type> | ||
| 2061 | + <format/> | ||
| 2062 | + </field> | ||
| 2063 | + <field> | ||
| 2064 | + <name>carNumberTwo</name> | ||
| 2065 | + <type>String</type> | ||
| 2066 | + <format/> | ||
| 2067 | + </field> | ||
| 2068 | + <field> | ||
| 2069 | + <name>openDate</name> | ||
| 2070 | + <type>String</type> | ||
| 2071 | + <format/> | ||
| 2072 | + </field> | ||
| 2073 | + <field> | ||
| 2074 | + <name>closeDate</name> | ||
| 2075 | + <type>String</type> | ||
| 2076 | + <format/> | ||
| 2077 | + </field> | ||
| 2078 | + <field> | ||
| 2079 | + <name>hvacCar</name> | ||
| 2080 | + <type>String</type> | ||
| 2081 | + <format/> | ||
| 2082 | + </field> | ||
| 2083 | + <field> | ||
| 2084 | + <name>ticketType</name> | ||
| 2085 | + <type>String</type> | ||
| 2086 | + <format/> | ||
| 2087 | + </field> | ||
| 2088 | + <field> | ||
| 2089 | + <name>ledScreen</name> | ||
| 2090 | + <type>String</type> | ||
| 2091 | + <format/> | ||
| 2092 | + </field> | ||
| 2093 | + <field> | ||
| 2094 | + <name>tvVideoType</name> | ||
| 2095 | + <type>String</type> | ||
| 2096 | + <format/> | ||
| 2097 | + </field> | ||
| 2098 | + <field> | ||
| 2099 | + <name>carType</name> | ||
| 2100 | + <type>String</type> | ||
| 2101 | + <format/> | ||
| 2102 | + </field> | ||
| 2103 | + <field> | ||
| 2104 | + <name>vehicleStats</name> | ||
| 2105 | + <type>String</type> | ||
| 2106 | + <format/> | ||
| 2107 | + </field> | ||
| 2108 | + <field> | ||
| 2109 | + <name>operatorsState</name> | ||
| 2110 | + <type>String</type> | ||
| 2111 | + <format/> | ||
| 2112 | + </field> | ||
| 2113 | + <field> | ||
| 2114 | + <name>descriptions</name> | ||
| 2115 | + <type>String</type> | ||
| 2116 | + <format/> | ||
| 2117 | + </field> | ||
| 2118 | + <field> | ||
| 2119 | + <name>videoCode</name> | ||
| 2120 | + <type>String</type> | ||
| 2121 | + <format/> | ||
| 2122 | + </field> | ||
| 2123 | + <field> | ||
| 2124 | + <name>修改日期</name> | ||
| 2125 | + <type>String</type> | ||
| 2126 | + <format/> | ||
| 2127 | + </field> | ||
| 2128 | + <field> | ||
| 2129 | + <name>报废日期</name> | ||
| 2130 | + <type>String</type> | ||
| 2131 | + <format/> | ||
| 2132 | + </field> | ||
| 2133 | + <field> | ||
| 2134 | + <name>error_count</name> | ||
| 2135 | + <type>Integer</type> | ||
| 2136 | + <format/> | ||
| 2137 | + </field> | ||
| 2138 | + <field> | ||
| 2139 | + <name>error_desc</name> | ||
| 2140 | + <type>String</type> | ||
| 2141 | + <format/> | ||
| 2142 | + </field> | ||
| 2143 | + <field> | ||
| 2144 | + <name>error_column1</name> | ||
| 2145 | + <type>String</type> | ||
| 2146 | + <format/> | ||
| 2147 | + </field> | ||
| 2148 | + <field> | ||
| 2149 | + <name>error_column2</name> | ||
| 2150 | + <type>String</type> | ||
| 2151 | + <format/> | ||
| 2152 | + </field> | ||
| 2153 | + </fields> | ||
| 2154 | + <custom> | ||
| 2155 | + <header_font_name>arial</header_font_name> | ||
| 2156 | + <header_font_size>10</header_font_size> | ||
| 2157 | + <header_font_bold>N</header_font_bold> | ||
| 2158 | + <header_font_italic>N</header_font_italic> | ||
| 2159 | + <header_font_underline>no</header_font_underline> | ||
| 2160 | + <header_font_orientation>horizontal</header_font_orientation> | ||
| 2161 | + <header_font_color>black</header_font_color> | ||
| 2162 | + <header_background_color>none</header_background_color> | ||
| 2163 | + <header_row_height>255</header_row_height> | ||
| 2164 | + <header_alignment>left</header_alignment> | ||
| 2165 | + <header_image/> | ||
| 2166 | + <row_font_name>arial</row_font_name> | ||
| 2167 | + <row_font_size>10</row_font_size> | ||
| 2168 | + <row_font_color>black</row_font_color> | ||
| 2169 | + <row_background_color>none</row_background_color> | ||
| 2170 | + </custom> | ||
| 2171 | + <cluster_schema/> | ||
| 2172 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 2173 | + <xloc>971</xloc> | ||
| 2174 | + <yloc>63</yloc> | ||
| 2175 | + <draw>Y</draw> | ||
| 2176 | + </GUI> | ||
| 2177 | + </step> | ||
| 2178 | + | ||
| 2179 | + <step_error_handling> | ||
| 2180 | + <error> | ||
| 2181 | + <source_step>插入/更新bsth_c_cars 2</source_step> | ||
| 2182 | + <target_step>错误输出 2</target_step> | ||
| 2183 | + <is_enabled>Y</is_enabled> | ||
| 2184 | + <nr_valuename>error_count</nr_valuename> | ||
| 2185 | + <descriptions_valuename>error_desc</descriptions_valuename> | ||
| 2186 | + <fields_valuename>error_column1</fields_valuename> | ||
| 2187 | + <codes_valuename>error_column2</codes_valuename> | ||
| 2188 | + <max_errors/> | ||
| 2189 | + <max_pct_errors/> | ||
| 2190 | + <min_pct_rows/> | ||
| 2191 | + </error> | ||
| 2192 | + <error> | ||
| 2193 | + <source_step>是否的变成数字型</source_step> | ||
| 2194 | + <target_step>错误输出 2 2</target_step> | ||
| 2195 | + <is_enabled>Y</is_enabled> | ||
| 2196 | + <nr_valuename>error_count</nr_valuename> | ||
| 2197 | + <descriptions_valuename>error_desc</descriptions_valuename> | ||
| 2198 | + <fields_valuename>error_column1</fields_valuename> | ||
| 2199 | + <codes_valuename>error_column2</codes_valuename> | ||
| 2200 | + <max_errors/> | ||
| 2201 | + <max_pct_errors/> | ||
| 2202 | + <min_pct_rows/> | ||
| 2203 | + </error> | ||
| 2204 | + </step_error_handling> | ||
| 2205 | + <slave-step-copy-partition-distribution> | ||
| 2206 | +</slave-step-copy-partition-distribution> | ||
| 2207 | + <slave_transformation>N</slave_transformation> | ||
| 2208 | + | ||
| 2209 | +</transformation> |
src/main/resources/datatools/ktrs/legecy/carsDataOutput.ktr
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<transformation> | ||
| 3 | + <info> | ||
| 4 | + <name>车辆信息导出</name> | ||
| 5 | + <description>车辆信息导出</description> | ||
| 6 | + <extended_description>车辆基础信息</extended_description> | ||
| 7 | + <trans_version/> | ||
| 8 | + <trans_type>Normal</trans_type> | ||
| 9 | + <trans_status>0</trans_status> | ||
| 10 | + <directory>/</directory> | ||
| 11 | + <parameters> | ||
| 12 | + <parameter> | ||
| 13 | + <name>filepath</name> | ||
| 14 | + <default_value/> | ||
| 15 | + <description>excel文件路径</description> | ||
| 16 | + </parameter> | ||
| 17 | + </parameters> | ||
| 18 | + <log> | ||
| 19 | +<trans-log-table><connection/> | ||
| 20 | +<schema/> | ||
| 21 | +<table/> | ||
| 22 | +<size_limit_lines/> | ||
| 23 | +<interval/> | ||
| 24 | +<timeout_days/> | ||
| 25 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | ||
| 26 | +<perf-log-table><connection/> | ||
| 27 | +<schema/> | ||
| 28 | +<table/> | ||
| 29 | +<interval/> | ||
| 30 | +<timeout_days/> | ||
| 31 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | ||
| 32 | +<channel-log-table><connection/> | ||
| 33 | +<schema/> | ||
| 34 | +<table/> | ||
| 35 | +<timeout_days/> | ||
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | ||
| 37 | +<step-log-table><connection/> | ||
| 38 | +<schema/> | ||
| 39 | +<table/> | ||
| 40 | +<timeout_days/> | ||
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | ||
| 42 | +<metrics-log-table><connection/> | ||
| 43 | +<schema/> | ||
| 44 | +<table/> | ||
| 45 | +<timeout_days/> | ||
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | ||
| 47 | + </log> | ||
| 48 | + <maxdate> | ||
| 49 | + <connection/> | ||
| 50 | + <table/> | ||
| 51 | + <field/> | ||
| 52 | + <offset>0.0</offset> | ||
| 53 | + <maxdiff>0.0</maxdiff> | ||
| 54 | + </maxdate> | ||
| 55 | + <size_rowset>10000</size_rowset> | ||
| 56 | + <sleep_time_empty>50</sleep_time_empty> | ||
| 57 | + <sleep_time_full>50</sleep_time_full> | ||
| 58 | + <unique_connections>N</unique_connections> | ||
| 59 | + <feedback_shown>Y</feedback_shown> | ||
| 60 | + <feedback_size>50000</feedback_size> | ||
| 61 | + <using_thread_priorities>Y</using_thread_priorities> | ||
| 62 | + <shared_objects_file/> | ||
| 63 | + <capture_step_performance>N</capture_step_performance> | ||
| 64 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | ||
| 65 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | ||
| 66 | + <dependencies> | ||
| 67 | + </dependencies> | ||
| 68 | + <partitionschemas> | ||
| 69 | + </partitionschemas> | ||
| 70 | + <slaveservers> | ||
| 71 | + </slaveservers> | ||
| 72 | + <clusterschemas> | ||
| 73 | + </clusterschemas> | ||
| 74 | + <created_user>-</created_user> | ||
| 75 | + <created_date>2016/08/05 16:42:22.753</created_date> | ||
| 76 | + <modified_user>-</modified_user> | ||
| 77 | + <modified_date>2016/08/05 16:42:22.753</modified_date> | ||
| 78 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 79 | + <is_key_private>N</is_key_private> | ||
| 80 | + </info> | ||
| 81 | + <notepads> | ||
| 82 | + </notepads> | ||
| 83 | + <connection> | ||
| 84 | + <name>bus_control_variable</name> | ||
| 85 | + <server>${v_db_ip}</server> | ||
| 86 | + <type>MYSQL</type> | ||
| 87 | + <access>Native</access> | ||
| 88 | + <database>${v_db_dname}</database> | ||
| 89 | + <port>3306</port> | ||
| 90 | + <username>${v_db_uname}</username> | ||
| 91 | + <password>${v_db_pwd}</password> | ||
| 92 | + <servername/> | ||
| 93 | + <data_tablespace/> | ||
| 94 | + <index_tablespace/> | ||
| 95 | + <attributes> | ||
| 96 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | ||
| 97 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 98 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 99 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 100 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 101 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 102 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 103 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 104 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 105 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 106 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 107 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 108 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 109 | + </attributes> | ||
| 110 | + </connection> | ||
| 111 | + <connection> | ||
| 112 | + <name>bus_control_公司_201</name> | ||
| 113 | + <server>localhost</server> | ||
| 114 | + <type>MYSQL</type> | ||
| 115 | + <access>Native</access> | ||
| 116 | + <database>control</database> | ||
| 117 | + <port>3306</port> | ||
| 118 | + <username>root</username> | ||
| 119 | + <password>Encrypted </password> | ||
| 120 | + <servername/> | ||
| 121 | + <data_tablespace/> | ||
| 122 | + <index_tablespace/> | ||
| 123 | + <attributes> | ||
| 124 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 125 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 126 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 127 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 128 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 129 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 130 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 131 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 132 | + <attribute><code>STREAM_RESULTS</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_本机</name> | ||
| 140 | + <server>localhost</server> | ||
| 141 | + <type>MYSQL</type> | ||
| 142 | + <access>Native</access> | ||
| 143 | + <database>control</database> | ||
| 144 | + <port>3306</port> | ||
| 145 | + <username>root</username> | ||
| 146 | + <password>Encrypted </password> | ||
| 147 | + <servername/> | ||
| 148 | + <data_tablespace/> | ||
| 149 | + <index_tablespace/> | ||
| 150 | + <attributes> | ||
| 151 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 152 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 153 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 154 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 155 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 156 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 157 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 158 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 159 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 160 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 161 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 162 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 163 | + </attributes> | ||
| 164 | + </connection> | ||
| 165 | + <connection> | ||
| 166 | + <name>xlab_mysql_youle</name> | ||
| 167 | + <server>101.231.124.8</server> | ||
| 168 | + <type>MYSQL</type> | ||
| 169 | + <access>Native</access> | ||
| 170 | + <database>xlab_youle</database> | ||
| 171 | + <port>45687</port> | ||
| 172 | + <username>xlab-youle</username> | ||
| 173 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | ||
| 174 | + <servername/> | ||
| 175 | + <data_tablespace/> | ||
| 176 | + <index_tablespace/> | ||
| 177 | + <attributes> | ||
| 178 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 179 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 180 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 181 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 182 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 183 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | ||
| 184 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 185 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 186 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 187 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 188 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 189 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 190 | + </attributes> | ||
| 191 | + </connection> | ||
| 192 | + <connection> | ||
| 193 | + <name>xlab_mysql_youle(本机)</name> | ||
| 194 | + <server>localhost</server> | ||
| 195 | + <type>MYSQL</type> | ||
| 196 | + <access>Native</access> | ||
| 197 | + <database>xlab_youle</database> | ||
| 198 | + <port>3306</port> | ||
| 199 | + <username>root</username> | ||
| 200 | + <password>Encrypted </password> | ||
| 201 | + <servername/> | ||
| 202 | + <data_tablespace/> | ||
| 203 | + <index_tablespace/> | ||
| 204 | + <attributes> | ||
| 205 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 206 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 207 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 208 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 209 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 210 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 211 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 212 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 213 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 214 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 215 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 216 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 217 | + </attributes> | ||
| 218 | + </connection> | ||
| 219 | + <connection> | ||
| 220 | + <name>xlab_youle</name> | ||
| 221 | + <server/> | ||
| 222 | + <type>MYSQL</type> | ||
| 223 | + <access>JNDI</access> | ||
| 224 | + <database>xlab_youle</database> | ||
| 225 | + <port>1521</port> | ||
| 226 | + <username/> | ||
| 227 | + <password>Encrypted </password> | ||
| 228 | + <servername/> | ||
| 229 | + <data_tablespace/> | ||
| 230 | + <index_tablespace/> | ||
| 231 | + <attributes> | ||
| 232 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 234 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 235 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 236 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 237 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 238 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 239 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>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 | + <order> | ||
| 245 | + <hop> <from>是否有LED服务屏</from><to>是否有TV视频</to><enabled>Y</enabled> </hop> | ||
| 246 | + <hop> <from>是否空调车</from><to>有无人售票</to><enabled>Y</enabled> </hop> | ||
| 247 | + <hop> <from>有无人售票</from><to>是否有LED服务屏</to><enabled>Y</enabled> </hop> | ||
| 248 | + <hop> <from>表输入</from><to>是否空调车</to><enabled>Y</enabled> </hop> | ||
| 249 | + <hop> <from>是否有TV视频</from><to>供应商名称</to><enabled>Y</enabled> </hop> | ||
| 250 | + <hop> <from>供应商名称</from><to>营运状态标识</to><enabled>Y</enabled> </hop> | ||
| 251 | + <hop> <from>营运状态标识</from><to>营运状态查询</to><enabled>Y</enabled> </hop> | ||
| 252 | + <hop> <from>营运状态查询</from><to>机动车类型标识</to><enabled>Y</enabled> </hop> | ||
| 253 | + <hop> <from>机动车类型标识</from><to>机动车类型查询</to><enabled>Y</enabled> </hop> | ||
| 254 | + <hop> <from>机动车类型查询</from><to>车辆类型标识</to><enabled>Y</enabled> </hop> | ||
| 255 | + <hop> <from>车辆类型标识</from><to>车辆类型查询</to><enabled>Y</enabled> </hop> | ||
| 256 | + <hop> <from>车辆类型查询</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 257 | + <hop> <from>字段选择</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | ||
| 258 | + <hop> <from>字段选择 2</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 259 | + </order> | ||
| 260 | + <step> | ||
| 261 | + <name>Excel输出</name> | ||
| 262 | + <type>ExcelOutput</type> | ||
| 263 | + <description/> | ||
| 264 | + <distribute>Y</distribute> | ||
| 265 | + <custom_distribution/> | ||
| 266 | + <copies>1</copies> | ||
| 267 | + <partitioning> | ||
| 268 | + <method>none</method> | ||
| 269 | + <schema_name/> | ||
| 270 | + </partitioning> | ||
| 271 | + <header>Y</header> | ||
| 272 | + <footer>N</footer> | ||
| 273 | + <encoding/> | ||
| 274 | + <append>N</append> | ||
| 275 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 276 | + <file> | ||
| 277 | + <name>${filepath}</name> | ||
| 278 | + <extention/> | ||
| 279 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 280 | + <create_parent_folder>N</create_parent_folder> | ||
| 281 | + <split>N</split> | ||
| 282 | + <add_date>N</add_date> | ||
| 283 | + <add_time>N</add_time> | ||
| 284 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 285 | + <date_time_format>yyyyMMddHHmmss</date_time_format> | ||
| 286 | + <sheetname>工作表1</sheetname> | ||
| 287 | + <autosizecolums>N</autosizecolums> | ||
| 288 | + <nullisblank>N</nullisblank> | ||
| 289 | + <protect_sheet>N</protect_sheet> | ||
| 290 | + <password>Encrypted </password> | ||
| 291 | + <splitevery>0</splitevery> | ||
| 292 | + <usetempfiles>N</usetempfiles> | ||
| 293 | + <tempdirectory/> | ||
| 294 | + </file> | ||
| 295 | + <template> | ||
| 296 | + <enabled>N</enabled> | ||
| 297 | + <append>N</append> | ||
| 298 | + <filename>template.xls</filename> | ||
| 299 | + </template> | ||
| 300 | + <fields> | ||
| 301 | + <field> | ||
| 302 | + <name>车牌号</name> | ||
| 303 | + <type>String</type> | ||
| 304 | + <format/> | ||
| 305 | + </field> | ||
| 306 | + <field> | ||
| 307 | + <name>内部编码</name> | ||
| 308 | + <type>String</type> | ||
| 309 | + <format/> | ||
| 310 | + </field> | ||
| 311 | + <field> | ||
| 312 | + <name>车辆编码</name> | ||
| 313 | + <type>String</type> | ||
| 314 | + <format/> | ||
| 315 | + </field> | ||
| 316 | + <field> | ||
| 317 | + <name>车型类别</name> | ||
| 318 | + <type>String</type> | ||
| 319 | + <format/> | ||
| 320 | + </field> | ||
| 321 | + <field> | ||
| 322 | + <name>座位数</name> | ||
| 323 | + <type>String</type> | ||
| 324 | + <format/> | ||
| 325 | + </field> | ||
| 326 | + <field> | ||
| 327 | + <name>载客标准</name> | ||
| 328 | + <type>String</type> | ||
| 329 | + <format/> | ||
| 330 | + </field> | ||
| 331 | + <field> | ||
| 332 | + <name>技术速度</name> | ||
| 333 | + <type>String</type> | ||
| 334 | + <format/> | ||
| 335 | + </field> | ||
| 336 | + <field> | ||
| 337 | + <name>是否空调</name> | ||
| 338 | + <type>String</type> | ||
| 339 | + <format/> | ||
| 340 | + </field> | ||
| 341 | + <field> | ||
| 342 | + <name>标准油耗(开空调)</name> | ||
| 343 | + <type>String</type> | ||
| 344 | + <format/> | ||
| 345 | + </field> | ||
| 346 | + <field> | ||
| 347 | + <name>标准油耗(关空调)</name> | ||
| 348 | + <type>String</type> | ||
| 349 | + <format/> | ||
| 350 | + </field> | ||
| 351 | + <field> | ||
| 352 | + <name>有无人售票</name> | ||
| 353 | + <type>String</type> | ||
| 354 | + <format/> | ||
| 355 | + </field> | ||
| 356 | + <field> | ||
| 357 | + <name>是否有TV视频</name> | ||
| 358 | + <type>String</type> | ||
| 359 | + <format/> | ||
| 360 | + </field> | ||
| 361 | + <field> | ||
| 362 | + <name>是否有LED服务屏</name> | ||
| 363 | + <type>String</type> | ||
| 364 | + <format/> | ||
| 365 | + </field> | ||
| 366 | + <field> | ||
| 367 | + <name>运营状态</name> | ||
| 368 | + <type>String</type> | ||
| 369 | + <format/> | ||
| 370 | + </field> | ||
| 371 | + <field> | ||
| 372 | + <name>启用日期</name> | ||
| 373 | + <type>String</type> | ||
| 374 | + <format/> | ||
| 375 | + </field> | ||
| 376 | + <field> | ||
| 377 | + <name>取消日期</name> | ||
| 378 | + <type>String</type> | ||
| 379 | + <format/> | ||
| 380 | + </field> | ||
| 381 | + <field> | ||
| 382 | + <name>报废号</name> | ||
| 383 | + <type>String</type> | ||
| 384 | + <format/> | ||
| 385 | + </field> | ||
| 386 | + <field> | ||
| 387 | + <name>报废日期</name> | ||
| 388 | + <type>String</type> | ||
| 389 | + <format/> | ||
| 390 | + </field> | ||
| 391 | + <field> | ||
| 392 | + <name>备注</name> | ||
| 393 | + <type>String</type> | ||
| 394 | + <format/> | ||
| 395 | + </field> | ||
| 396 | + <field> | ||
| 397 | + <name>设备编号</name> | ||
| 398 | + <type>String</type> | ||
| 399 | + <format/> | ||
| 400 | + </field> | ||
| 401 | + <field> | ||
| 402 | + <name>厂牌型号</name> | ||
| 403 | + <type>String</type> | ||
| 404 | + <format/> | ||
| 405 | + </field> | ||
| 406 | + <field> | ||
| 407 | + <name>厂牌型号2</name> | ||
| 408 | + <type>String</type> | ||
| 409 | + <format/> | ||
| 410 | + </field> | ||
| 411 | + <field> | ||
| 412 | + <name>车辆等级标准</name> | ||
| 413 | + <type>String</type> | ||
| 414 | + <format/> | ||
| 415 | + </field> | ||
| 416 | + <field> | ||
| 417 | + <name>出厂排放标准</name> | ||
| 418 | + <type>String</type> | ||
| 419 | + <format/> | ||
| 420 | + </field> | ||
| 421 | + <field> | ||
| 422 | + <name>发动机号码1</name> | ||
| 423 | + <type>String</type> | ||
| 424 | + <format/> | ||
| 425 | + </field> | ||
| 426 | + <field> | ||
| 427 | + <name>发动机号码2</name> | ||
| 428 | + <type>String</type> | ||
| 429 | + <format/> | ||
| 430 | + </field> | ||
| 431 | + <field> | ||
| 432 | + <name>车架号码1</name> | ||
| 433 | + <type>String</type> | ||
| 434 | + <format/> | ||
| 435 | + </field> | ||
| 436 | + <field> | ||
| 437 | + <name>车架号码2</name> | ||
| 438 | + <type>String</type> | ||
| 439 | + <format/> | ||
| 440 | + </field> | ||
| 441 | + <field> | ||
| 442 | + <name>车辆类型</name> | ||
| 443 | + <type>String</type> | ||
| 444 | + <format/> | ||
| 445 | + </field> | ||
| 446 | + <field> | ||
| 447 | + <name>所属公司</name> | ||
| 448 | + <type>String</type> | ||
| 449 | + <format/> | ||
| 450 | + </field> | ||
| 451 | + <field> | ||
| 452 | + <name>修改日期</name> | ||
| 453 | + <type>String</type> | ||
| 454 | + <format/> | ||
| 455 | + </field> | ||
| 456 | + <field> | ||
| 457 | + <name>是否机动车</name> | ||
| 458 | + <type>String</type> | ||
| 459 | + <format/> | ||
| 460 | + </field> | ||
| 461 | + <field> | ||
| 462 | + <name>视频编号</name> | ||
| 463 | + <type>String</type> | ||
| 464 | + <format/> | ||
| 465 | + </field> | ||
| 466 | + <field> | ||
| 467 | + <name>设备供应厂商</name> | ||
| 468 | + <type>String</type> | ||
| 469 | + <format/> | ||
| 470 | + </field> | ||
| 471 | + <field> | ||
| 472 | + <name>分公司</name> | ||
| 473 | + <type>String</type> | ||
| 474 | + <format/> | ||
| 475 | + </field> | ||
| 476 | + </fields> | ||
| 477 | + <custom> | ||
| 478 | + <header_font_name>arial</header_font_name> | ||
| 479 | + <header_font_size>10</header_font_size> | ||
| 480 | + <header_font_bold>N</header_font_bold> | ||
| 481 | + <header_font_italic>N</header_font_italic> | ||
| 482 | + <header_font_underline>no</header_font_underline> | ||
| 483 | + <header_font_orientation>horizontal</header_font_orientation> | ||
| 484 | + <header_font_color>black</header_font_color> | ||
| 485 | + <header_background_color>none</header_background_color> | ||
| 486 | + <header_row_height>255</header_row_height> | ||
| 487 | + <header_alignment>left</header_alignment> | ||
| 488 | + <header_image/> | ||
| 489 | + <row_font_name>arial</row_font_name> | ||
| 490 | + <row_font_size>10</row_font_size> | ||
| 491 | + <row_font_color>black</row_font_color> | ||
| 492 | + <row_background_color>none</row_background_color> | ||
| 493 | + </custom> | ||
| 494 | + <cluster_schema/> | ||
| 495 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 496 | + <xloc>574</xloc> | ||
| 497 | + <yloc>270</yloc> | ||
| 498 | + <draw>Y</draw> | ||
| 499 | + </GUI> | ||
| 500 | + </step> | ||
| 501 | + | ||
| 502 | + <step> | ||
| 503 | + <name>供应商名称</name> | ||
| 504 | + <type>ValueMapper</type> | ||
| 505 | + <description/> | ||
| 506 | + <distribute>Y</distribute> | ||
| 507 | + <custom_distribution/> | ||
| 508 | + <copies>1</copies> | ||
| 509 | + <partitioning> | ||
| 510 | + <method>none</method> | ||
| 511 | + <schema_name/> | ||
| 512 | + </partitioning> | ||
| 513 | + <field_to_use>supplier_name</field_to_use> | ||
| 514 | + <target_field>supplier_name_str</target_field> | ||
| 515 | + <non_match_default/> | ||
| 516 | + <fields> | ||
| 517 | + <field> | ||
| 518 | + <source_value>1</source_value> | ||
| 519 | + <target_value>巴士拓华</target_value> | ||
| 520 | + </field> | ||
| 521 | + <field> | ||
| 522 | + <source_value>2</source_value> | ||
| 523 | + <target_value>博康</target_value> | ||
| 524 | + </field> | ||
| 525 | + </fields> | ||
| 526 | + <cluster_schema/> | ||
| 527 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 528 | + <xloc>449</xloc> | ||
| 529 | + <yloc>68</yloc> | ||
| 530 | + <draw>Y</draw> | ||
| 531 | + </GUI> | ||
| 532 | + </step> | ||
| 533 | + | ||
| 534 | + <step> | ||
| 535 | + <name>字段选择</name> | ||
| 536 | + <type>SelectValues</type> | ||
| 537 | + <description/> | ||
| 538 | + <distribute>Y</distribute> | ||
| 539 | + <custom_distribution/> | ||
| 540 | + <copies>1</copies> | ||
| 541 | + <partitioning> | ||
| 542 | + <method>none</method> | ||
| 543 | + <schema_name/> | ||
| 544 | + </partitioning> | ||
| 545 | + <fields> <select_unspecified>N</select_unspecified> | ||
| 546 | + <meta> <name>car_plate</name> | ||
| 547 | + <rename>车牌号</rename> | ||
| 548 | + <type>String</type> | ||
| 549 | + <length>-2</length> | ||
| 550 | + <precision>-2</precision> | ||
| 551 | + <conversion_mask/> | ||
| 552 | + <date_format_lenient>false</date_format_lenient> | ||
| 553 | + <date_format_locale/> | ||
| 554 | + <date_format_timezone/> | ||
| 555 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 556 | + <encoding/> | ||
| 557 | + <decimal_symbol/> | ||
| 558 | + <grouping_symbol/> | ||
| 559 | + <currency_symbol/> | ||
| 560 | + <storage_type/> | ||
| 561 | + </meta> <meta> <name>inside_code</name> | ||
| 562 | + <rename>内部编码</rename> | ||
| 563 | + <type>String</type> | ||
| 564 | + <length>-2</length> | ||
| 565 | + <precision>-2</precision> | ||
| 566 | + <conversion_mask/> | ||
| 567 | + <date_format_lenient>false</date_format_lenient> | ||
| 568 | + <date_format_locale/> | ||
| 569 | + <date_format_timezone/> | ||
| 570 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 571 | + <encoding/> | ||
| 572 | + <decimal_symbol/> | ||
| 573 | + <grouping_symbol/> | ||
| 574 | + <currency_symbol/> | ||
| 575 | + <storage_type/> | ||
| 576 | + </meta> <meta> <name>car_code</name> | ||
| 577 | + <rename>车辆编码</rename> | ||
| 578 | + <type>String</type> | ||
| 579 | + <length>-2</length> | ||
| 580 | + <precision>-2</precision> | ||
| 581 | + <conversion_mask/> | ||
| 582 | + <date_format_lenient>false</date_format_lenient> | ||
| 583 | + <date_format_locale/> | ||
| 584 | + <date_format_timezone/> | ||
| 585 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 586 | + <encoding/> | ||
| 587 | + <decimal_symbol/> | ||
| 588 | + <grouping_symbol/> | ||
| 589 | + <currency_symbol/> | ||
| 590 | + <storage_type/> | ||
| 591 | + </meta> <meta> <name>car_class</name> | ||
| 592 | + <rename>车型类别</rename> | ||
| 593 | + <type>String</type> | ||
| 594 | + <length>-2</length> | ||
| 595 | + <precision>-2</precision> | ||
| 596 | + <conversion_mask/> | ||
| 597 | + <date_format_lenient>false</date_format_lenient> | ||
| 598 | + <date_format_locale/> | ||
| 599 | + <date_format_timezone/> | ||
| 600 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 601 | + <encoding/> | ||
| 602 | + <decimal_symbol/> | ||
| 603 | + <grouping_symbol/> | ||
| 604 | + <currency_symbol/> | ||
| 605 | + <storage_type/> | ||
| 606 | + </meta> <meta> <name>car_seatn_number</name> | ||
| 607 | + <rename>座位数</rename> | ||
| 608 | + <type>String</type> | ||
| 609 | + <length>-2</length> | ||
| 610 | + <precision>-2</precision> | ||
| 611 | + <conversion_mask/> | ||
| 612 | + <date_format_lenient>false</date_format_lenient> | ||
| 613 | + <date_format_locale/> | ||
| 614 | + <date_format_timezone/> | ||
| 615 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 616 | + <encoding/> | ||
| 617 | + <decimal_symbol/> | ||
| 618 | + <grouping_symbol/> | ||
| 619 | + <currency_symbol/> | ||
| 620 | + <storage_type/> | ||
| 621 | + </meta> <meta> <name>car_standard</name> | ||
| 622 | + <rename>载客标准</rename> | ||
| 623 | + <type>String</type> | ||
| 624 | + <length>-2</length> | ||
| 625 | + <precision>-2</precision> | ||
| 626 | + <conversion_mask/> | ||
| 627 | + <date_format_lenient>false</date_format_lenient> | ||
| 628 | + <date_format_locale/> | ||
| 629 | + <date_format_timezone/> | ||
| 630 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 631 | + <encoding/> | ||
| 632 | + <decimal_symbol/> | ||
| 633 | + <grouping_symbol/> | ||
| 634 | + <currency_symbol/> | ||
| 635 | + <storage_type/> | ||
| 636 | + </meta> <meta> <name>speed</name> | ||
| 637 | + <rename>技术速度</rename> | ||
| 638 | + <type>String</type> | ||
| 639 | + <length>-2</length> | ||
| 640 | + <precision>-2</precision> | ||
| 641 | + <conversion_mask/> | ||
| 642 | + <date_format_lenient>false</date_format_lenient> | ||
| 643 | + <date_format_locale/> | ||
| 644 | + <date_format_timezone/> | ||
| 645 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 646 | + <encoding/> | ||
| 647 | + <decimal_symbol/> | ||
| 648 | + <grouping_symbol/> | ||
| 649 | + <currency_symbol/> | ||
| 650 | + <storage_type/> | ||
| 651 | + </meta> <meta> <name>hvac_car_str</name> | ||
| 652 | + <rename>是否空调</rename> | ||
| 653 | + <type>String</type> | ||
| 654 | + <length>-2</length> | ||
| 655 | + <precision>-2</precision> | ||
| 656 | + <conversion_mask/> | ||
| 657 | + <date_format_lenient>false</date_format_lenient> | ||
| 658 | + <date_format_locale/> | ||
| 659 | + <date_format_timezone/> | ||
| 660 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 661 | + <encoding/> | ||
| 662 | + <decimal_symbol/> | ||
| 663 | + <grouping_symbol/> | ||
| 664 | + <currency_symbol/> | ||
| 665 | + <storage_type/> | ||
| 666 | + </meta> <meta> <name>kburn_standard</name> | ||
| 667 | + <rename>标准油耗(开空调)</rename> | ||
| 668 | + <type>String</type> | ||
| 669 | + <length>-2</length> | ||
| 670 | + <precision>-2</precision> | ||
| 671 | + <conversion_mask/> | ||
| 672 | + <date_format_lenient>false</date_format_lenient> | ||
| 673 | + <date_format_locale/> | ||
| 674 | + <date_format_timezone/> | ||
| 675 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 676 | + <encoding/> | ||
| 677 | + <decimal_symbol/> | ||
| 678 | + <grouping_symbol/> | ||
| 679 | + <currency_symbol/> | ||
| 680 | + <storage_type/> | ||
| 681 | + </meta> <meta> <name>gburn_standard</name> | ||
| 682 | + <rename>标准油耗(关空调)</rename> | ||
| 683 | + <type>String</type> | ||
| 684 | + <length>-2</length> | ||
| 685 | + <precision>-2</precision> | ||
| 686 | + <conversion_mask/> | ||
| 687 | + <date_format_lenient>false</date_format_lenient> | ||
| 688 | + <date_format_locale/> | ||
| 689 | + <date_format_timezone/> | ||
| 690 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 691 | + <encoding/> | ||
| 692 | + <decimal_symbol/> | ||
| 693 | + <grouping_symbol/> | ||
| 694 | + <currency_symbol/> | ||
| 695 | + <storage_type/> | ||
| 696 | + </meta> <meta> <name>ticket_type_str</name> | ||
| 697 | + <rename>有无人售票</rename> | ||
| 698 | + <type>String</type> | ||
| 699 | + <length>-2</length> | ||
| 700 | + <precision>-2</precision> | ||
| 701 | + <conversion_mask/> | ||
| 702 | + <date_format_lenient>false</date_format_lenient> | ||
| 703 | + <date_format_locale/> | ||
| 704 | + <date_format_timezone/> | ||
| 705 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 706 | + <encoding/> | ||
| 707 | + <decimal_symbol/> | ||
| 708 | + <grouping_symbol/> | ||
| 709 | + <currency_symbol/> | ||
| 710 | + <storage_type/> | ||
| 711 | + </meta> <meta> <name>tv_video_type_str</name> | ||
| 712 | + <rename>是否有TV视频</rename> | ||
| 713 | + <type>String</type> | ||
| 714 | + <length>-2</length> | ||
| 715 | + <precision>-2</precision> | ||
| 716 | + <conversion_mask/> | ||
| 717 | + <date_format_lenient>false</date_format_lenient> | ||
| 718 | + <date_format_locale/> | ||
| 719 | + <date_format_timezone/> | ||
| 720 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 721 | + <encoding/> | ||
| 722 | + <decimal_symbol/> | ||
| 723 | + <grouping_symbol/> | ||
| 724 | + <currency_symbol/> | ||
| 725 | + <storage_type/> | ||
| 726 | + </meta> <meta> <name>led_screen_str</name> | ||
| 727 | + <rename>是否有LED服务屏</rename> | ||
| 728 | + <type>String</type> | ||
| 729 | + <length>-2</length> | ||
| 730 | + <precision>-2</precision> | ||
| 731 | + <conversion_mask/> | ||
| 732 | + <date_format_lenient>false</date_format_lenient> | ||
| 733 | + <date_format_locale/> | ||
| 734 | + <date_format_timezone/> | ||
| 735 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 736 | + <encoding/> | ||
| 737 | + <decimal_symbol/> | ||
| 738 | + <grouping_symbol/> | ||
| 739 | + <currency_symbol/> | ||
| 740 | + <storage_type/> | ||
| 741 | + </meta> <meta> <name>operators_state_str</name> | ||
| 742 | + <rename>运营状态</rename> | ||
| 743 | + <type>String</type> | ||
| 744 | + <length>-2</length> | ||
| 745 | + <precision>-2</precision> | ||
| 746 | + <conversion_mask/> | ||
| 747 | + <date_format_lenient>false</date_format_lenient> | ||
| 748 | + <date_format_locale/> | ||
| 749 | + <date_format_timezone/> | ||
| 750 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 751 | + <encoding/> | ||
| 752 | + <decimal_symbol/> | ||
| 753 | + <grouping_symbol/> | ||
| 754 | + <currency_symbol/> | ||
| 755 | + <storage_type/> | ||
| 756 | + </meta> <meta> <name>open_date</name> | ||
| 757 | + <rename>启用日期</rename> | ||
| 758 | + <type>String</type> | ||
| 759 | + <length>-2</length> | ||
| 760 | + <precision>-2</precision> | ||
| 761 | + <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 762 | + <date_format_lenient>false</date_format_lenient> | ||
| 763 | + <date_format_locale/> | ||
| 764 | + <date_format_timezone/> | ||
| 765 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 766 | + <encoding/> | ||
| 767 | + <decimal_symbol/> | ||
| 768 | + <grouping_symbol/> | ||
| 769 | + <currency_symbol/> | ||
| 770 | + <storage_type/> | ||
| 771 | + </meta> <meta> <name>close_date</name> | ||
| 772 | + <rename>取消日期</rename> | ||
| 773 | + <type>String</type> | ||
| 774 | + <length>-2</length> | ||
| 775 | + <precision>-2</precision> | ||
| 776 | + <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 777 | + <date_format_lenient>false</date_format_lenient> | ||
| 778 | + <date_format_locale/> | ||
| 779 | + <date_format_timezone/> | ||
| 780 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 781 | + <encoding/> | ||
| 782 | + <decimal_symbol/> | ||
| 783 | + <grouping_symbol/> | ||
| 784 | + <currency_symbol/> | ||
| 785 | + <storage_type/> | ||
| 786 | + </meta> <meta> <name>scrap_code</name> | ||
| 787 | + <rename>报废号</rename> | ||
| 788 | + <type>String</type> | ||
| 789 | + <length>-2</length> | ||
| 790 | + <precision>-2</precision> | ||
| 791 | + <conversion_mask/> | ||
| 792 | + <date_format_lenient>false</date_format_lenient> | ||
| 793 | + <date_format_locale/> | ||
| 794 | + <date_format_timezone/> | ||
| 795 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 796 | + <encoding/> | ||
| 797 | + <decimal_symbol/> | ||
| 798 | + <grouping_symbol/> | ||
| 799 | + <currency_symbol/> | ||
| 800 | + <storage_type/> | ||
| 801 | + </meta> <meta> <name>scrap_date</name> | ||
| 802 | + <rename>报废日期</rename> | ||
| 803 | + <type>String</type> | ||
| 804 | + <length>-2</length> | ||
| 805 | + <precision>-2</precision> | ||
| 806 | + <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 807 | + <date_format_lenient>false</date_format_lenient> | ||
| 808 | + <date_format_locale/> | ||
| 809 | + <date_format_timezone/> | ||
| 810 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 811 | + <encoding/> | ||
| 812 | + <decimal_symbol/> | ||
| 813 | + <grouping_symbol/> | ||
| 814 | + <currency_symbol/> | ||
| 815 | + <storage_type/> | ||
| 816 | + </meta> <meta> <name>descriptions</name> | ||
| 817 | + <rename>备注</rename> | ||
| 818 | + <type>String</type> | ||
| 819 | + <length>-2</length> | ||
| 820 | + <precision>-2</precision> | ||
| 821 | + <conversion_mask/> | ||
| 822 | + <date_format_lenient>false</date_format_lenient> | ||
| 823 | + <date_format_locale/> | ||
| 824 | + <date_format_timezone/> | ||
| 825 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 826 | + <encoding/> | ||
| 827 | + <decimal_symbol/> | ||
| 828 | + <grouping_symbol/> | ||
| 829 | + <currency_symbol/> | ||
| 830 | + <storage_type/> | ||
| 831 | + </meta> <meta> <name>equipment_code</name> | ||
| 832 | + <rename>设备编号</rename> | ||
| 833 | + <type>String</type> | ||
| 834 | + <length>-2</length> | ||
| 835 | + <precision>-2</precision> | ||
| 836 | + <conversion_mask/> | ||
| 837 | + <date_format_lenient>false</date_format_lenient> | ||
| 838 | + <date_format_locale/> | ||
| 839 | + <date_format_timezone/> | ||
| 840 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 841 | + <encoding/> | ||
| 842 | + <decimal_symbol/> | ||
| 843 | + <grouping_symbol/> | ||
| 844 | + <currency_symbol/> | ||
| 845 | + <storage_type/> | ||
| 846 | + </meta> <meta> <name>make_code_one</name> | ||
| 847 | + <rename>厂牌型号</rename> | ||
| 848 | + <type>String</type> | ||
| 849 | + <length>-2</length> | ||
| 850 | + <precision>-2</precision> | ||
| 851 | + <conversion_mask/> | ||
| 852 | + <date_format_lenient>false</date_format_lenient> | ||
| 853 | + <date_format_locale/> | ||
| 854 | + <date_format_timezone/> | ||
| 855 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 856 | + <encoding/> | ||
| 857 | + <decimal_symbol/> | ||
| 858 | + <grouping_symbol/> | ||
| 859 | + <currency_symbol/> | ||
| 860 | + <storage_type/> | ||
| 861 | + </meta> <meta> <name>make_code_two</name> | ||
| 862 | + <rename>厂牌型号2</rename> | ||
| 863 | + <type>String</type> | ||
| 864 | + <length>-2</length> | ||
| 865 | + <precision>-2</precision> | ||
| 866 | + <conversion_mask/> | ||
| 867 | + <date_format_lenient>false</date_format_lenient> | ||
| 868 | + <date_format_locale/> | ||
| 869 | + <date_format_timezone/> | ||
| 870 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 871 | + <encoding/> | ||
| 872 | + <decimal_symbol/> | ||
| 873 | + <grouping_symbol/> | ||
| 874 | + <currency_symbol/> | ||
| 875 | + <storage_type/> | ||
| 876 | + </meta> <meta> <name>car_gride</name> | ||
| 877 | + <rename>车辆等级标准</rename> | ||
| 878 | + <type>String</type> | ||
| 879 | + <length>-2</length> | ||
| 880 | + <precision>-2</precision> | ||
| 881 | + <conversion_mask/> | ||
| 882 | + <date_format_lenient>false</date_format_lenient> | ||
| 883 | + <date_format_locale/> | ||
| 884 | + <date_format_timezone/> | ||
| 885 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 886 | + <encoding/> | ||
| 887 | + <decimal_symbol/> | ||
| 888 | + <grouping_symbol/> | ||
| 889 | + <currency_symbol/> | ||
| 890 | + <storage_type/> | ||
| 891 | + </meta> <meta> <name>emissions_standard</name> | ||
| 892 | + <rename>出厂排放标准</rename> | ||
| 893 | + <type>String</type> | ||
| 894 | + <length>-2</length> | ||
| 895 | + <precision>-2</precision> | ||
| 896 | + <conversion_mask/> | ||
| 897 | + <date_format_lenient>false</date_format_lenient> | ||
| 898 | + <date_format_locale/> | ||
| 899 | + <date_format_timezone/> | ||
| 900 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 901 | + <encoding/> | ||
| 902 | + <decimal_symbol/> | ||
| 903 | + <grouping_symbol/> | ||
| 904 | + <currency_symbol/> | ||
| 905 | + <storage_type/> | ||
| 906 | + </meta> <meta> <name>engine_code_one</name> | ||
| 907 | + <rename>发动机号码1</rename> | ||
| 908 | + <type>String</type> | ||
| 909 | + <length>-2</length> | ||
| 910 | + <precision>-2</precision> | ||
| 911 | + <conversion_mask/> | ||
| 912 | + <date_format_lenient>false</date_format_lenient> | ||
| 913 | + <date_format_locale/> | ||
| 914 | + <date_format_timezone/> | ||
| 915 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 916 | + <encoding/> | ||
| 917 | + <decimal_symbol/> | ||
| 918 | + <grouping_symbol/> | ||
| 919 | + <currency_symbol/> | ||
| 920 | + <storage_type/> | ||
| 921 | + </meta> <meta> <name>engine_code_two</name> | ||
| 922 | + <rename>发动机号码2</rename> | ||
| 923 | + <type>String</type> | ||
| 924 | + <length>-2</length> | ||
| 925 | + <precision>-2</precision> | ||
| 926 | + <conversion_mask/> | ||
| 927 | + <date_format_lenient>false</date_format_lenient> | ||
| 928 | + <date_format_locale/> | ||
| 929 | + <date_format_timezone/> | ||
| 930 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 931 | + <encoding/> | ||
| 932 | + <decimal_symbol/> | ||
| 933 | + <grouping_symbol/> | ||
| 934 | + <currency_symbol/> | ||
| 935 | + <storage_type/> | ||
| 936 | + </meta> <meta> <name>car_number_one</name> | ||
| 937 | + <rename>车架号码1</rename> | ||
| 938 | + <type>String</type> | ||
| 939 | + <length>-2</length> | ||
| 940 | + <precision>-2</precision> | ||
| 941 | + <conversion_mask/> | ||
| 942 | + <date_format_lenient>false</date_format_lenient> | ||
| 943 | + <date_format_locale/> | ||
| 944 | + <date_format_timezone/> | ||
| 945 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 946 | + <encoding/> | ||
| 947 | + <decimal_symbol/> | ||
| 948 | + <grouping_symbol/> | ||
| 949 | + <currency_symbol/> | ||
| 950 | + <storage_type/> | ||
| 951 | + </meta> <meta> <name>car_number_two</name> | ||
| 952 | + <rename>车架号码2</rename> | ||
| 953 | + <type>String</type> | ||
| 954 | + <length>-2</length> | ||
| 955 | + <precision>-2</precision> | ||
| 956 | + <conversion_mask/> | ||
| 957 | + <date_format_lenient>false</date_format_lenient> | ||
| 958 | + <date_format_locale/> | ||
| 959 | + <date_format_timezone/> | ||
| 960 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 961 | + <encoding/> | ||
| 962 | + <decimal_symbol/> | ||
| 963 | + <grouping_symbol/> | ||
| 964 | + <currency_symbol/> | ||
| 965 | + <storage_type/> | ||
| 966 | + </meta> <meta> <name>car_type_str</name> | ||
| 967 | + <rename>车辆类型</rename> | ||
| 968 | + <type>String</type> | ||
| 969 | + <length>-2</length> | ||
| 970 | + <precision>-2</precision> | ||
| 971 | + <conversion_mask/> | ||
| 972 | + <date_format_lenient>false</date_format_lenient> | ||
| 973 | + <date_format_locale/> | ||
| 974 | + <date_format_timezone/> | ||
| 975 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 976 | + <encoding/> | ||
| 977 | + <decimal_symbol/> | ||
| 978 | + <grouping_symbol/> | ||
| 979 | + <currency_symbol/> | ||
| 980 | + <storage_type/> | ||
| 981 | + </meta> <meta> <name>company</name> | ||
| 982 | + <rename>所属公司</rename> | ||
| 983 | + <type>String</type> | ||
| 984 | + <length>-2</length> | ||
| 985 | + <precision>-2</precision> | ||
| 986 | + <conversion_mask/> | ||
| 987 | + <date_format_lenient>false</date_format_lenient> | ||
| 988 | + <date_format_locale/> | ||
| 989 | + <date_format_timezone/> | ||
| 990 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 991 | + <encoding/> | ||
| 992 | + <decimal_symbol/> | ||
| 993 | + <grouping_symbol/> | ||
| 994 | + <currency_symbol/> | ||
| 995 | + <storage_type/> | ||
| 996 | + </meta> <meta> <name>update_date</name> | ||
| 997 | + <rename>修改日期</rename> | ||
| 998 | + <type>String</type> | ||
| 999 | + <length>-2</length> | ||
| 1000 | + <precision>-2</precision> | ||
| 1001 | + <conversion_mask>yyyy-MM-dd HH:mm:ss</conversion_mask> | ||
| 1002 | + <date_format_lenient>false</date_format_lenient> | ||
| 1003 | + <date_format_locale/> | ||
| 1004 | + <date_format_timezone/> | ||
| 1005 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1006 | + <encoding/> | ||
| 1007 | + <decimal_symbol/> | ||
| 1008 | + <grouping_symbol/> | ||
| 1009 | + <currency_symbol/> | ||
| 1010 | + <storage_type/> | ||
| 1011 | + </meta> <meta> <name>vehicle_stats_str</name> | ||
| 1012 | + <rename>是否机动车</rename> | ||
| 1013 | + <type>String</type> | ||
| 1014 | + <length>-2</length> | ||
| 1015 | + <precision>-2</precision> | ||
| 1016 | + <conversion_mask/> | ||
| 1017 | + <date_format_lenient>false</date_format_lenient> | ||
| 1018 | + <date_format_locale/> | ||
| 1019 | + <date_format_timezone/> | ||
| 1020 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1021 | + <encoding/> | ||
| 1022 | + <decimal_symbol/> | ||
| 1023 | + <grouping_symbol/> | ||
| 1024 | + <currency_symbol/> | ||
| 1025 | + <storage_type/> | ||
| 1026 | + </meta> <meta> <name>video_code</name> | ||
| 1027 | + <rename>视频编号</rename> | ||
| 1028 | + <type>String</type> | ||
| 1029 | + <length>-2</length> | ||
| 1030 | + <precision>-2</precision> | ||
| 1031 | + <conversion_mask/> | ||
| 1032 | + <date_format_lenient>false</date_format_lenient> | ||
| 1033 | + <date_format_locale/> | ||
| 1034 | + <date_format_timezone/> | ||
| 1035 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1036 | + <encoding/> | ||
| 1037 | + <decimal_symbol/> | ||
| 1038 | + <grouping_symbol/> | ||
| 1039 | + <currency_symbol/> | ||
| 1040 | + <storage_type/> | ||
| 1041 | + </meta> <meta> <name>supplier_name_str</name> | ||
| 1042 | + <rename>设备供应厂商</rename> | ||
| 1043 | + <type>String</type> | ||
| 1044 | + <length>-2</length> | ||
| 1045 | + <precision>-2</precision> | ||
| 1046 | + <conversion_mask/> | ||
| 1047 | + <date_format_lenient>false</date_format_lenient> | ||
| 1048 | + <date_format_locale/> | ||
| 1049 | + <date_format_timezone/> | ||
| 1050 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1051 | + <encoding/> | ||
| 1052 | + <decimal_symbol/> | ||
| 1053 | + <grouping_symbol/> | ||
| 1054 | + <currency_symbol/> | ||
| 1055 | + <storage_type/> | ||
| 1056 | + </meta> <meta> <name>branche_company</name> | ||
| 1057 | + <rename>分公司</rename> | ||
| 1058 | + <type>String</type> | ||
| 1059 | + <length>-2</length> | ||
| 1060 | + <precision>-2</precision> | ||
| 1061 | + <conversion_mask/> | ||
| 1062 | + <date_format_lenient>false</date_format_lenient> | ||
| 1063 | + <date_format_locale/> | ||
| 1064 | + <date_format_timezone/> | ||
| 1065 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 1066 | + <encoding/> | ||
| 1067 | + <decimal_symbol/> | ||
| 1068 | + <grouping_symbol/> | ||
| 1069 | + <currency_symbol/> | ||
| 1070 | + <storage_type/> | ||
| 1071 | + </meta> </fields> <cluster_schema/> | ||
| 1072 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1073 | + <xloc>808</xloc> | ||
| 1074 | + <yloc>267</yloc> | ||
| 1075 | + <draw>Y</draw> | ||
| 1076 | + </GUI> | ||
| 1077 | + </step> | ||
| 1078 | + | ||
| 1079 | + <step> | ||
| 1080 | + <name>字段选择 2</name> | ||
| 1081 | + <type>SelectValues</type> | ||
| 1082 | + <description/> | ||
| 1083 | + <distribute>Y</distribute> | ||
| 1084 | + <custom_distribution/> | ||
| 1085 | + <copies>1</copies> | ||
| 1086 | + <partitioning> | ||
| 1087 | + <method>none</method> | ||
| 1088 | + <schema_name/> | ||
| 1089 | + </partitioning> | ||
| 1090 | + <fields> <field> <name>车牌号</name> | ||
| 1091 | + <rename/> | ||
| 1092 | + <length>-2</length> | ||
| 1093 | + <precision>-2</precision> | ||
| 1094 | + </field> <field> <name>内部编码</name> | ||
| 1095 | + <rename/> | ||
| 1096 | + <length>-2</length> | ||
| 1097 | + <precision>-2</precision> | ||
| 1098 | + </field> <field> <name>车辆编码</name> | ||
| 1099 | + <rename/> | ||
| 1100 | + <length>-2</length> | ||
| 1101 | + <precision>-2</precision> | ||
| 1102 | + </field> <field> <name>车型类别</name> | ||
| 1103 | + <rename/> | ||
| 1104 | + <length>-2</length> | ||
| 1105 | + <precision>-2</precision> | ||
| 1106 | + </field> <field> <name>座位数</name> | ||
| 1107 | + <rename/> | ||
| 1108 | + <length>-2</length> | ||
| 1109 | + <precision>-2</precision> | ||
| 1110 | + </field> <field> <name>载客标准</name> | ||
| 1111 | + <rename/> | ||
| 1112 | + <length>-2</length> | ||
| 1113 | + <precision>-2</precision> | ||
| 1114 | + </field> <field> <name>技术速度</name> | ||
| 1115 | + <rename/> | ||
| 1116 | + <length>-2</length> | ||
| 1117 | + <precision>-2</precision> | ||
| 1118 | + </field> <field> <name>是否空调</name> | ||
| 1119 | + <rename/> | ||
| 1120 | + <length>-2</length> | ||
| 1121 | + <precision>-2</precision> | ||
| 1122 | + </field> <field> <name>标准油耗(开空调)</name> | ||
| 1123 | + <rename/> | ||
| 1124 | + <length>-2</length> | ||
| 1125 | + <precision>-2</precision> | ||
| 1126 | + </field> <field> <name>标准油耗(关空调)</name> | ||
| 1127 | + <rename/> | ||
| 1128 | + <length>-2</length> | ||
| 1129 | + <precision>-2</precision> | ||
| 1130 | + </field> <field> <name>有无人售票</name> | ||
| 1131 | + <rename/> | ||
| 1132 | + <length>-2</length> | ||
| 1133 | + <precision>-2</precision> | ||
| 1134 | + </field> <field> <name>是否有TV视频</name> | ||
| 1135 | + <rename/> | ||
| 1136 | + <length>-2</length> | ||
| 1137 | + <precision>-2</precision> | ||
| 1138 | + </field> <field> <name>是否有LED服务屏</name> | ||
| 1139 | + <rename/> | ||
| 1140 | + <length>-2</length> | ||
| 1141 | + <precision>-2</precision> | ||
| 1142 | + </field> <field> <name>运营状态</name> | ||
| 1143 | + <rename/> | ||
| 1144 | + <length>-2</length> | ||
| 1145 | + <precision>-2</precision> | ||
| 1146 | + </field> <field> <name>启用日期</name> | ||
| 1147 | + <rename/> | ||
| 1148 | + <length>-2</length> | ||
| 1149 | + <precision>-2</precision> | ||
| 1150 | + </field> <field> <name>取消日期</name> | ||
| 1151 | + <rename/> | ||
| 1152 | + <length>-2</length> | ||
| 1153 | + <precision>-2</precision> | ||
| 1154 | + </field> <field> <name>报废号</name> | ||
| 1155 | + <rename/> | ||
| 1156 | + <length>-2</length> | ||
| 1157 | + <precision>-2</precision> | ||
| 1158 | + </field> <field> <name>报废日期</name> | ||
| 1159 | + <rename/> | ||
| 1160 | + <length>-2</length> | ||
| 1161 | + <precision>-2</precision> | ||
| 1162 | + </field> <field> <name>备注</name> | ||
| 1163 | + <rename/> | ||
| 1164 | + <length>-2</length> | ||
| 1165 | + <precision>-2</precision> | ||
| 1166 | + </field> <field> <name>设备编号</name> | ||
| 1167 | + <rename/> | ||
| 1168 | + <length>-2</length> | ||
| 1169 | + <precision>-2</precision> | ||
| 1170 | + </field> <field> <name>厂牌型号</name> | ||
| 1171 | + <rename/> | ||
| 1172 | + <length>-2</length> | ||
| 1173 | + <precision>-2</precision> | ||
| 1174 | + </field> <field> <name>厂牌型号2</name> | ||
| 1175 | + <rename/> | ||
| 1176 | + <length>-2</length> | ||
| 1177 | + <precision>-2</precision> | ||
| 1178 | + </field> <field> <name>车辆等级标准</name> | ||
| 1179 | + <rename/> | ||
| 1180 | + <length>-2</length> | ||
| 1181 | + <precision>-2</precision> | ||
| 1182 | + </field> <field> <name>出厂排放标准</name> | ||
| 1183 | + <rename/> | ||
| 1184 | + <length>-2</length> | ||
| 1185 | + <precision>-2</precision> | ||
| 1186 | + </field> <field> <name>发动机号码1</name> | ||
| 1187 | + <rename/> | ||
| 1188 | + <length>-2</length> | ||
| 1189 | + <precision>-2</precision> | ||
| 1190 | + </field> <field> <name>发动机号码2</name> | ||
| 1191 | + <rename/> | ||
| 1192 | + <length>-2</length> | ||
| 1193 | + <precision>-2</precision> | ||
| 1194 | + </field> <field> <name>车架号码1</name> | ||
| 1195 | + <rename/> | ||
| 1196 | + <length>-2</length> | ||
| 1197 | + <precision>-2</precision> | ||
| 1198 | + </field> <field> <name>车架号码2</name> | ||
| 1199 | + <rename/> | ||
| 1200 | + <length>-2</length> | ||
| 1201 | + <precision>-2</precision> | ||
| 1202 | + </field> <field> <name>车辆类型</name> | ||
| 1203 | + <rename/> | ||
| 1204 | + <length>-2</length> | ||
| 1205 | + <precision>-2</precision> | ||
| 1206 | + </field> <field> <name>所属公司</name> | ||
| 1207 | + <rename/> | ||
| 1208 | + <length>-2</length> | ||
| 1209 | + <precision>-2</precision> | ||
| 1210 | + </field> <field> <name>修改日期</name> | ||
| 1211 | + <rename/> | ||
| 1212 | + <length>-2</length> | ||
| 1213 | + <precision>-2</precision> | ||
| 1214 | + </field> <field> <name>是否机动车</name> | ||
| 1215 | + <rename/> | ||
| 1216 | + <length>-2</length> | ||
| 1217 | + <precision>-2</precision> | ||
| 1218 | + </field> <field> <name>视频编号</name> | ||
| 1219 | + <rename/> | ||
| 1220 | + <length>-2</length> | ||
| 1221 | + <precision>-2</precision> | ||
| 1222 | + </field> <field> <name>设备供应厂商</name> | ||
| 1223 | + <rename/> | ||
| 1224 | + <length>-2</length> | ||
| 1225 | + <precision>-2</precision> | ||
| 1226 | + </field> <field> <name>分公司</name> | ||
| 1227 | + <rename/> | ||
| 1228 | + <length>-2</length> | ||
| 1229 | + <precision>-2</precision> | ||
| 1230 | + </field> <select_unspecified>N</select_unspecified> | ||
| 1231 | + </fields> <cluster_schema/> | ||
| 1232 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1233 | + <xloc>687</xloc> | ||
| 1234 | + <yloc>268</yloc> | ||
| 1235 | + <draw>Y</draw> | ||
| 1236 | + </GUI> | ||
| 1237 | + </step> | ||
| 1238 | + | ||
| 1239 | + <step> | ||
| 1240 | + <name>是否有LED服务屏</name> | ||
| 1241 | + <type>ValueMapper</type> | ||
| 1242 | + <description/> | ||
| 1243 | + <distribute>Y</distribute> | ||
| 1244 | + <custom_distribution/> | ||
| 1245 | + <copies>1</copies> | ||
| 1246 | + <partitioning> | ||
| 1247 | + <method>none</method> | ||
| 1248 | + <schema_name/> | ||
| 1249 | + </partitioning> | ||
| 1250 | + <field_to_use>led_screen</field_to_use> | ||
| 1251 | + <target_field>led_screen_str</target_field> | ||
| 1252 | + <non_match_default/> | ||
| 1253 | + <fields> | ||
| 1254 | + <field> | ||
| 1255 | + <source_value>1</source_value> | ||
| 1256 | + <target_value>是</target_value> | ||
| 1257 | + </field> | ||
| 1258 | + <field> | ||
| 1259 | + <source_value>0</source_value> | ||
| 1260 | + <target_value>否</target_value> | ||
| 1261 | + </field> | ||
| 1262 | + </fields> | ||
| 1263 | + <cluster_schema/> | ||
| 1264 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1265 | + <xloc>324</xloc> | ||
| 1266 | + <yloc>68</yloc> | ||
| 1267 | + <draw>Y</draw> | ||
| 1268 | + </GUI> | ||
| 1269 | + </step> | ||
| 1270 | + | ||
| 1271 | + <step> | ||
| 1272 | + <name>是否有TV视频</name> | ||
| 1273 | + <type>ValueMapper</type> | ||
| 1274 | + <description/> | ||
| 1275 | + <distribute>Y</distribute> | ||
| 1276 | + <custom_distribution/> | ||
| 1277 | + <copies>1</copies> | ||
| 1278 | + <partitioning> | ||
| 1279 | + <method>none</method> | ||
| 1280 | + <schema_name/> | ||
| 1281 | + </partitioning> | ||
| 1282 | + <field_to_use>tv_video_type</field_to_use> | ||
| 1283 | + <target_field>tv_video_type_str</target_field> | ||
| 1284 | + <non_match_default/> | ||
| 1285 | + <fields> | ||
| 1286 | + <field> | ||
| 1287 | + <source_value>1</source_value> | ||
| 1288 | + <target_value>是</target_value> | ||
| 1289 | + </field> | ||
| 1290 | + <field> | ||
| 1291 | + <source_value>0</source_value> | ||
| 1292 | + <target_value>否</target_value> | ||
| 1293 | + </field> | ||
| 1294 | + </fields> | ||
| 1295 | + <cluster_schema/> | ||
| 1296 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1297 | + <xloc>325</xloc> | ||
| 1298 | + <yloc>158</yloc> | ||
| 1299 | + <draw>Y</draw> | ||
| 1300 | + </GUI> | ||
| 1301 | + </step> | ||
| 1302 | + | ||
| 1303 | + <step> | ||
| 1304 | + <name>是否空调车</name> | ||
| 1305 | + <type>ValueMapper</type> | ||
| 1306 | + <description/> | ||
| 1307 | + <distribute>Y</distribute> | ||
| 1308 | + <custom_distribution/> | ||
| 1309 | + <copies>1</copies> | ||
| 1310 | + <partitioning> | ||
| 1311 | + <method>none</method> | ||
| 1312 | + <schema_name/> | ||
| 1313 | + </partitioning> | ||
| 1314 | + <field_to_use>hvac_car</field_to_use> | ||
| 1315 | + <target_field>hvac_car_str</target_field> | ||
| 1316 | + <non_match_default/> | ||
| 1317 | + <fields> | ||
| 1318 | + <field> | ||
| 1319 | + <source_value>1</source_value> | ||
| 1320 | + <target_value>是</target_value> | ||
| 1321 | + </field> | ||
| 1322 | + <field> | ||
| 1323 | + <source_value>0</source_value> | ||
| 1324 | + <target_value>否</target_value> | ||
| 1325 | + </field> | ||
| 1326 | + </fields> | ||
| 1327 | + <cluster_schema/> | ||
| 1328 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1329 | + <xloc>209</xloc> | ||
| 1330 | + <yloc>68</yloc> | ||
| 1331 | + <draw>Y</draw> | ||
| 1332 | + </GUI> | ||
| 1333 | + </step> | ||
| 1334 | + | ||
| 1335 | + <step> | ||
| 1336 | + <name>有无人售票</name> | ||
| 1337 | + <type>ValueMapper</type> | ||
| 1338 | + <description/> | ||
| 1339 | + <distribute>Y</distribute> | ||
| 1340 | + <custom_distribution/> | ||
| 1341 | + <copies>1</copies> | ||
| 1342 | + <partitioning> | ||
| 1343 | + <method>none</method> | ||
| 1344 | + <schema_name/> | ||
| 1345 | + </partitioning> | ||
| 1346 | + <field_to_use>ticket_type</field_to_use> | ||
| 1347 | + <target_field>ticket_type_str</target_field> | ||
| 1348 | + <non_match_default/> | ||
| 1349 | + <fields> | ||
| 1350 | + <field> | ||
| 1351 | + <source_value>1</source_value> | ||
| 1352 | + <target_value>是</target_value> | ||
| 1353 | + </field> | ||
| 1354 | + <field> | ||
| 1355 | + <source_value>0</source_value> | ||
| 1356 | + <target_value>否</target_value> | ||
| 1357 | + </field> | ||
| 1358 | + </fields> | ||
| 1359 | + <cluster_schema/> | ||
| 1360 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1361 | + <xloc>208</xloc> | ||
| 1362 | + <yloc>157</yloc> | ||
| 1363 | + <draw>Y</draw> | ||
| 1364 | + </GUI> | ||
| 1365 | + </step> | ||
| 1366 | + | ||
| 1367 | + <step> | ||
| 1368 | + <name>机动车类型查询</name> | ||
| 1369 | + <type>DBLookup</type> | ||
| 1370 | + <description/> | ||
| 1371 | + <distribute>Y</distribute> | ||
| 1372 | + <custom_distribution/> | ||
| 1373 | + <copies>1</copies> | ||
| 1374 | + <partitioning> | ||
| 1375 | + <method>none</method> | ||
| 1376 | + <schema_name/> | ||
| 1377 | + </partitioning> | ||
| 1378 | + <connection>bus_control_variable</connection> | ||
| 1379 | + <cache>N</cache> | ||
| 1380 | + <cache_load_all>N</cache_load_all> | ||
| 1381 | + <cache_size>0</cache_size> | ||
| 1382 | + <lookup> | ||
| 1383 | + <schema/> | ||
| 1384 | + <table>bsth_c_sys_dictionary</table> | ||
| 1385 | + <orderby/> | ||
| 1386 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 1387 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 1388 | + <key> | ||
| 1389 | + <name>jdcType</name> | ||
| 1390 | + <field>d_group</field> | ||
| 1391 | + <condition>=</condition> | ||
| 1392 | + <name2/> | ||
| 1393 | + </key> | ||
| 1394 | + <key> | ||
| 1395 | + <name>vehicle_stats</name> | ||
| 1396 | + <field>d_code</field> | ||
| 1397 | + <condition>=</condition> | ||
| 1398 | + <name2/> | ||
| 1399 | + </key> | ||
| 1400 | + <value> | ||
| 1401 | + <name>d_name</name> | ||
| 1402 | + <rename>vehicle_stats_str</rename> | ||
| 1403 | + <default/> | ||
| 1404 | + <type>String</type> | ||
| 1405 | + </value> | ||
| 1406 | + </lookup> | ||
| 1407 | + <cluster_schema/> | ||
| 1408 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1409 | + <xloc>676</xloc> | ||
| 1410 | + <yloc>162</yloc> | ||
| 1411 | + <draw>Y</draw> | ||
| 1412 | + </GUI> | ||
| 1413 | + </step> | ||
| 1414 | + | ||
| 1415 | + <step> | ||
| 1416 | + <name>机动车类型标识</name> | ||
| 1417 | + <type>Constant</type> | ||
| 1418 | + <description/> | ||
| 1419 | + <distribute>Y</distribute> | ||
| 1420 | + <custom_distribution/> | ||
| 1421 | + <copies>1</copies> | ||
| 1422 | + <partitioning> | ||
| 1423 | + <method>none</method> | ||
| 1424 | + <schema_name/> | ||
| 1425 | + </partitioning> | ||
| 1426 | + <fields> | ||
| 1427 | + <field> | ||
| 1428 | + <name>jdcType</name> | ||
| 1429 | + <type>String</type> | ||
| 1430 | + <format/> | ||
| 1431 | + <currency/> | ||
| 1432 | + <decimal/> | ||
| 1433 | + <group/> | ||
| 1434 | + <nullif>jdcType</nullif> | ||
| 1435 | + <length>-1</length> | ||
| 1436 | + <precision>-1</precision> | ||
| 1437 | + <set_empty_string>N</set_empty_string> | ||
| 1438 | + </field> | ||
| 1439 | + </fields> | ||
| 1440 | + <cluster_schema/> | ||
| 1441 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1442 | + <xloc>672</xloc> | ||
| 1443 | + <yloc>68</yloc> | ||
| 1444 | + <draw>Y</draw> | ||
| 1445 | + </GUI> | ||
| 1446 | + </step> | ||
| 1447 | + | ||
| 1448 | + <step> | ||
| 1449 | + <name>营运状态查询</name> | ||
| 1450 | + <type>DBLookup</type> | ||
| 1451 | + <description/> | ||
| 1452 | + <distribute>Y</distribute> | ||
| 1453 | + <custom_distribution/> | ||
| 1454 | + <copies>1</copies> | ||
| 1455 | + <partitioning> | ||
| 1456 | + <method>none</method> | ||
| 1457 | + <schema_name/> | ||
| 1458 | + </partitioning> | ||
| 1459 | + <connection>bus_control_variable</connection> | ||
| 1460 | + <cache>N</cache> | ||
| 1461 | + <cache_load_all>N</cache_load_all> | ||
| 1462 | + <cache_size>0</cache_size> | ||
| 1463 | + <lookup> | ||
| 1464 | + <schema/> | ||
| 1465 | + <table>bsth_c_sys_dictionary</table> | ||
| 1466 | + <orderby/> | ||
| 1467 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 1468 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 1469 | + <key> | ||
| 1470 | + <name>yyztType</name> | ||
| 1471 | + <field>d_group</field> | ||
| 1472 | + <condition>=</condition> | ||
| 1473 | + <name2/> | ||
| 1474 | + </key> | ||
| 1475 | + <key> | ||
| 1476 | + <name>operators_state</name> | ||
| 1477 | + <field>d_code</field> | ||
| 1478 | + <condition>=</condition> | ||
| 1479 | + <name2/> | ||
| 1480 | + </key> | ||
| 1481 | + <value> | ||
| 1482 | + <name>d_name</name> | ||
| 1483 | + <rename>operators_state_str</rename> | ||
| 1484 | + <default/> | ||
| 1485 | + <type>String</type> | ||
| 1486 | + </value> | ||
| 1487 | + </lookup> | ||
| 1488 | + <cluster_schema/> | ||
| 1489 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1490 | + <xloc>558</xloc> | ||
| 1491 | + <yloc>162</yloc> | ||
| 1492 | + <draw>Y</draw> | ||
| 1493 | + </GUI> | ||
| 1494 | + </step> | ||
| 1495 | + | ||
| 1496 | + <step> | ||
| 1497 | + <name>营运状态标识</name> | ||
| 1498 | + <type>Constant</type> | ||
| 1499 | + <description/> | ||
| 1500 | + <distribute>Y</distribute> | ||
| 1501 | + <custom_distribution/> | ||
| 1502 | + <copies>1</copies> | ||
| 1503 | + <partitioning> | ||
| 1504 | + <method>none</method> | ||
| 1505 | + <schema_name/> | ||
| 1506 | + </partitioning> | ||
| 1507 | + <fields> | ||
| 1508 | + <field> | ||
| 1509 | + <name>yyztType</name> | ||
| 1510 | + <type>String</type> | ||
| 1511 | + <format/> | ||
| 1512 | + <currency/> | ||
| 1513 | + <decimal/> | ||
| 1514 | + <group/> | ||
| 1515 | + <nullif>yyztType</nullif> | ||
| 1516 | + <length>-1</length> | ||
| 1517 | + <precision>-1</precision> | ||
| 1518 | + <set_empty_string>N</set_empty_string> | ||
| 1519 | + </field> | ||
| 1520 | + </fields> | ||
| 1521 | + <cluster_schema/> | ||
| 1522 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1523 | + <xloc>555</xloc> | ||
| 1524 | + <yloc>69</yloc> | ||
| 1525 | + <draw>Y</draw> | ||
| 1526 | + </GUI> | ||
| 1527 | + </step> | ||
| 1528 | + | ||
| 1529 | + <step> | ||
| 1530 | + <name>表输入</name> | ||
| 1531 | + <type>TableInput</type> | ||
| 1532 | + <description/> | ||
| 1533 | + <distribute>Y</distribute> | ||
| 1534 | + <custom_distribution/> | ||
| 1535 | + <copies>1</copies> | ||
| 1536 | + <partitioning> | ||
| 1537 | + <method>none</method> | ||
| 1538 | + <schema_name/> | ||
| 1539 | + </partitioning> | ||
| 1540 | + <connection>bus_control_variable</connection> | ||
| 1541 | + <sql>SELECT * FROM bsth_c_cars;</sql> | ||
| 1542 | + <limit>0</limit> | ||
| 1543 | + <lookup/> | ||
| 1544 | + <execute_each_row>N</execute_each_row> | ||
| 1545 | + <variables_active>N</variables_active> | ||
| 1546 | + <lazy_conversion_active>N</lazy_conversion_active> | ||
| 1547 | + <cluster_schema/> | ||
| 1548 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1549 | + <xloc>105</xloc> | ||
| 1550 | + <yloc>67</yloc> | ||
| 1551 | + <draw>Y</draw> | ||
| 1552 | + </GUI> | ||
| 1553 | + </step> | ||
| 1554 | + | ||
| 1555 | + <step> | ||
| 1556 | + <name>车辆类型查询</name> | ||
| 1557 | + <type>DBLookup</type> | ||
| 1558 | + <description/> | ||
| 1559 | + <distribute>Y</distribute> | ||
| 1560 | + <custom_distribution/> | ||
| 1561 | + <copies>1</copies> | ||
| 1562 | + <partitioning> | ||
| 1563 | + <method>none</method> | ||
| 1564 | + <schema_name/> | ||
| 1565 | + </partitioning> | ||
| 1566 | + <connection>bus_control_variable</connection> | ||
| 1567 | + <cache>N</cache> | ||
| 1568 | + <cache_load_all>N</cache_load_all> | ||
| 1569 | + <cache_size>0</cache_size> | ||
| 1570 | + <lookup> | ||
| 1571 | + <schema/> | ||
| 1572 | + <table>bsth_c_sys_dictionary</table> | ||
| 1573 | + <orderby/> | ||
| 1574 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 1575 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 1576 | + <key> | ||
| 1577 | + <name>carType</name> | ||
| 1578 | + <field>d_group</field> | ||
| 1579 | + <condition>=</condition> | ||
| 1580 | + <name2/> | ||
| 1581 | + </key> | ||
| 1582 | + <key> | ||
| 1583 | + <name>car_type</name> | ||
| 1584 | + <field>d_code</field> | ||
| 1585 | + <condition>=</condition> | ||
| 1586 | + <name2/> | ||
| 1587 | + </key> | ||
| 1588 | + <value> | ||
| 1589 | + <name>d_name</name> | ||
| 1590 | + <rename>car_type_str</rename> | ||
| 1591 | + <default/> | ||
| 1592 | + <type>String</type> | ||
| 1593 | + </value> | ||
| 1594 | + </lookup> | ||
| 1595 | + <cluster_schema/> | ||
| 1596 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1597 | + <xloc>803</xloc> | ||
| 1598 | + <yloc>163</yloc> | ||
| 1599 | + <draw>Y</draw> | ||
| 1600 | + </GUI> | ||
| 1601 | + </step> | ||
| 1602 | + | ||
| 1603 | + <step> | ||
| 1604 | + <name>车辆类型标识</name> | ||
| 1605 | + <type>Constant</type> | ||
| 1606 | + <description/> | ||
| 1607 | + <distribute>Y</distribute> | ||
| 1608 | + <custom_distribution/> | ||
| 1609 | + <copies>1</copies> | ||
| 1610 | + <partitioning> | ||
| 1611 | + <method>none</method> | ||
| 1612 | + <schema_name/> | ||
| 1613 | + </partitioning> | ||
| 1614 | + <fields> | ||
| 1615 | + <field> | ||
| 1616 | + <name>carType</name> | ||
| 1617 | + <type>String</type> | ||
| 1618 | + <format/> | ||
| 1619 | + <currency/> | ||
| 1620 | + <decimal/> | ||
| 1621 | + <group/> | ||
| 1622 | + <nullif>carType</nullif> | ||
| 1623 | + <length>-1</length> | ||
| 1624 | + <precision>-1</precision> | ||
| 1625 | + <set_empty_string>N</set_empty_string> | ||
| 1626 | + </field> | ||
| 1627 | + </fields> | ||
| 1628 | + <cluster_schema/> | ||
| 1629 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 1630 | + <xloc>800</xloc> | ||
| 1631 | + <yloc>70</yloc> | ||
| 1632 | + <draw>Y</draw> | ||
| 1633 | + </GUI> | ||
| 1634 | + </step> | ||
| 1635 | + | ||
| 1636 | + <step_error_handling> | ||
| 1637 | + </step_error_handling> | ||
| 1638 | + <slave-step-copy-partition-distribution> | ||
| 1639 | +</slave-step-copy-partition-distribution> | ||
| 1640 | + <slave_transformation>N</slave_transformation> | ||
| 1641 | + | ||
| 1642 | +</transformation> |
src/main/resources/datatools/ktrs/legecy/employeesDataInput.ktr
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<transformation> | ||
| 3 | + <info> | ||
| 4 | + <name>人员信息导入</name> | ||
| 5 | + <description>人员基础信息导入</description> | ||
| 6 | + <extended_description>人员基础信息</extended_description> | ||
| 7 | + <trans_version/> | ||
| 8 | + <trans_type>Normal</trans_type> | ||
| 9 | + <trans_status>0</trans_status> | ||
| 10 | + <directory>/</directory> | ||
| 11 | + <parameters> | ||
| 12 | + <parameter> | ||
| 13 | + <name>erroroutputdir</name> | ||
| 14 | + <default_value/> | ||
| 15 | + <description>ktr step配置的错误输出目录</description> | ||
| 16 | + </parameter> | ||
| 17 | + <parameter> | ||
| 18 | + <name>filepath</name> | ||
| 19 | + <default_value/> | ||
| 20 | + <description>待处理导入的excel文件</description> | ||
| 21 | + </parameter> | ||
| 22 | + </parameters> | ||
| 23 | + <log> | ||
| 24 | +<trans-log-table><connection/> | ||
| 25 | +<schema/> | ||
| 26 | +<table/> | ||
| 27 | +<size_limit_lines/> | ||
| 28 | +<interval/> | ||
| 29 | +<timeout_days/> | ||
| 30 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | ||
| 31 | +<perf-log-table><connection/> | ||
| 32 | +<schema/> | ||
| 33 | +<table/> | ||
| 34 | +<interval/> | ||
| 35 | +<timeout_days/> | ||
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | ||
| 37 | +<channel-log-table><connection/> | ||
| 38 | +<schema/> | ||
| 39 | +<table/> | ||
| 40 | +<timeout_days/> | ||
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | ||
| 42 | +<step-log-table><connection/> | ||
| 43 | +<schema/> | ||
| 44 | +<table/> | ||
| 45 | +<timeout_days/> | ||
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | ||
| 47 | +<metrics-log-table><connection/> | ||
| 48 | +<schema/> | ||
| 49 | +<table/> | ||
| 50 | +<timeout_days/> | ||
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | ||
| 52 | + </log> | ||
| 53 | + <maxdate> | ||
| 54 | + <connection/> | ||
| 55 | + <table/> | ||
| 56 | + <field/> | ||
| 57 | + <offset>0.0</offset> | ||
| 58 | + <maxdiff>0.0</maxdiff> | ||
| 59 | + </maxdate> | ||
| 60 | + <size_rowset>10000</size_rowset> | ||
| 61 | + <sleep_time_empty>50</sleep_time_empty> | ||
| 62 | + <sleep_time_full>50</sleep_time_full> | ||
| 63 | + <unique_connections>N</unique_connections> | ||
| 64 | + <feedback_shown>Y</feedback_shown> | ||
| 65 | + <feedback_size>50000</feedback_size> | ||
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | ||
| 67 | + <shared_objects_file/> | ||
| 68 | + <capture_step_performance>N</capture_step_performance> | ||
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | ||
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | ||
| 71 | + <dependencies> | ||
| 72 | + </dependencies> | ||
| 73 | + <partitionschemas> | ||
| 74 | + </partitionschemas> | ||
| 75 | + <slaveservers> | ||
| 76 | + </slaveservers> | ||
| 77 | + <clusterschemas> | ||
| 78 | + </clusterschemas> | ||
| 79 | + <created_user>-</created_user> | ||
| 80 | + <created_date>2016/06/29 10:18:56.974</created_date> | ||
| 81 | + <modified_user>-</modified_user> | ||
| 82 | + <modified_date>2016/06/29 10:18:56.974</modified_date> | ||
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 84 | + <is_key_private>N</is_key_private> | ||
| 85 | + </info> | ||
| 86 | + <notepads> | ||
| 87 | + <notepad> | ||
| 88 | + <note>原系统导出的表,有些字段是没有的,
人员编码 暂时没有空着
照片地址 暂时没有空着
线路编号 暂时没有空着
联系电话 暂时没有空着


字典
性别sexType 男性 1
性别sexType 女性 2


工种gzType 公共汽电车驾驶员 1
工种gzType 公共汽电车调度员 2
工种gzType 公共汽电车售票员 3
工种gzType 站员 4
工种gzType 管理员 5
工种gzType 安检员 6
工种gzType 机务 7
工种gzType 引导员 8
工种gzType 乘务员 9
工种gzType 车队长(线长、主 10
工种gzType 公司管理人员 11
工种gzType 警消人员 12
工种gzType 票务人员 13
工种gzType 其他服务人员 14</note> | ||
| 89 | + <xloc>200</xloc> | ||
| 90 | + <yloc>160</yloc> | ||
| 91 | + <width>214</width> | ||
| 92 | + <heigth>426</heigth> | ||
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | ||
| 94 | + <fontsize>12</fontsize> | ||
| 95 | + <fontbold>N</fontbold> | ||
| 96 | + <fontitalic>N</fontitalic> | ||
| 97 | + <fontcolorred>0</fontcolorred> | ||
| 98 | + <fontcolorgreen>0</fontcolorgreen> | ||
| 99 | + <fontcolorblue>0</fontcolorblue> | ||
| 100 | + <backgroundcolorred>255</backgroundcolorred> | ||
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | ||
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | ||
| 103 | + <bordercolorred>100</bordercolorred> | ||
| 104 | + <bordercolorgreen>100</bordercolorgreen> | ||
| 105 | + <bordercolorblue>100</bordercolorblue> | ||
| 106 | + <drawshadow>Y</drawshadow> | ||
| 107 | + </notepad> | ||
| 108 | + </notepads> | ||
| 109 | + <connection> | ||
| 110 | + <name>bus_control_variable</name> | ||
| 111 | + <server>${v_db_ip}</server> | ||
| 112 | + <type>MYSQL</type> | ||
| 113 | + <access>Native</access> | ||
| 114 | + <database>${v_db_dname}</database> | ||
| 115 | + <port>3306</port> | ||
| 116 | + <username>${v_db_uname}</username> | ||
| 117 | + <password>${v_db_pwd}</password> | ||
| 118 | + <servername/> | ||
| 119 | + <data_tablespace/> | ||
| 120 | + <index_tablespace/> | ||
| 121 | + <attributes> | ||
| 122 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | ||
| 123 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 124 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 125 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 126 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 127 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 128 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 129 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 130 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 131 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 132 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 133 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 134 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 135 | + </attributes> | ||
| 136 | + </connection> | ||
| 137 | + <connection> | ||
| 138 | + <name>bus_control_公司_201</name> | ||
| 139 | + <server>localhost</server> | ||
| 140 | + <type>MYSQL</type> | ||
| 141 | + <access>Native</access> | ||
| 142 | + <database>control</database> | ||
| 143 | + <port>3306</port> | ||
| 144 | + <username>root</username> | ||
| 145 | + <password>Encrypted </password> | ||
| 146 | + <servername/> | ||
| 147 | + <data_tablespace/> | ||
| 148 | + <index_tablespace/> | ||
| 149 | + <attributes> | ||
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 151 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 153 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 154 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 155 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 156 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 157 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 158 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 159 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 160 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 161 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 162 | + </attributes> | ||
| 163 | + </connection> | ||
| 164 | + <connection> | ||
| 165 | + <name>bus_control_本机</name> | ||
| 166 | + <server>localhost</server> | ||
| 167 | + <type>MYSQL</type> | ||
| 168 | + <access>Native</access> | ||
| 169 | + <database>control</database> | ||
| 170 | + <port>3306</port> | ||
| 171 | + <username>root</username> | ||
| 172 | + <password>Encrypted </password> | ||
| 173 | + <servername/> | ||
| 174 | + <data_tablespace/> | ||
| 175 | + <index_tablespace/> | ||
| 176 | + <attributes> | ||
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 178 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 180 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 181 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 182 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 183 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 184 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 185 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 186 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 187 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 188 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 189 | + </attributes> | ||
| 190 | + </connection> | ||
| 191 | + <connection> | ||
| 192 | + <name>xlab_mysql_youle</name> | ||
| 193 | + <server>101.231.124.8</server> | ||
| 194 | + <type>MYSQL</type> | ||
| 195 | + <access>Native</access> | ||
| 196 | + <database>xlab_youle</database> | ||
| 197 | + <port>45687</port> | ||
| 198 | + <username>xlab-youle</username> | ||
| 199 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | ||
| 200 | + <servername/> | ||
| 201 | + <data_tablespace/> | ||
| 202 | + <index_tablespace/> | ||
| 203 | + <attributes> | ||
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 205 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 207 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 208 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 209 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | ||
| 210 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 211 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 212 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 213 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 214 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 215 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 216 | + </attributes> | ||
| 217 | + </connection> | ||
| 218 | + <connection> | ||
| 219 | + <name>xlab_mysql_youle(本机)</name> | ||
| 220 | + <server>localhost</server> | ||
| 221 | + <type>MYSQL</type> | ||
| 222 | + <access>Native</access> | ||
| 223 | + <database>xlab_youle</database> | ||
| 224 | + <port>3306</port> | ||
| 225 | + <username>root</username> | ||
| 226 | + <password>Encrypted </password> | ||
| 227 | + <servername/> | ||
| 228 | + <data_tablespace/> | ||
| 229 | + <index_tablespace/> | ||
| 230 | + <attributes> | ||
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 232 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 240 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 241 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 242 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 243 | + </attributes> | ||
| 244 | + </connection> | ||
| 245 | + <connection> | ||
| 246 | + <name>xlab_youle</name> | ||
| 247 | + <server/> | ||
| 248 | + <type>MYSQL</type> | ||
| 249 | + <access>JNDI</access> | ||
| 250 | + <database>xlab_youle</database> | ||
| 251 | + <port>1521</port> | ||
| 252 | + <username/> | ||
| 253 | + <password>Encrypted </password> | ||
| 254 | + <servername/> | ||
| 255 | + <data_tablespace/> | ||
| 256 | + <index_tablespace/> | ||
| 257 | + <attributes> | ||
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 259 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 260 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 261 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 262 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 263 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 264 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 265 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 266 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 267 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 268 | + </attributes> | ||
| 269 | + </connection> | ||
| 270 | + <order> | ||
| 271 | + <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 272 | + <hop> <from>字段选择</from><to>性别代码</to><enabled>Y</enabled> </hop> | ||
| 273 | + <hop> <from>插入/更新bsth_c_personnel</from><to>错误输出</to><enabled>Y</enabled> </hop> | ||
| 274 | + <hop> <from>工种</from><to>插入/更新bsth_c_personnel</to><enabled>Y</enabled> </hop> | ||
| 275 | + <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | ||
| 276 | + <hop> <from>性别代码</from><to>公交企业代码查询</to><enabled>Y</enabled> </hop> | ||
| 277 | + <hop> <from>公交企业代码查询</from><to>工种</to><enabled>Y</enabled> </hop> | ||
| 278 | + </order> | ||
| 279 | + <step> | ||
| 280 | + <name>公交企业代码查询</name> | ||
| 281 | + <type>DBLookup</type> | ||
| 282 | + <description/> | ||
| 283 | + <distribute>Y</distribute> | ||
| 284 | + <custom_distribution/> | ||
| 285 | + <copies>1</copies> | ||
| 286 | + <partitioning> | ||
| 287 | + <method>none</method> | ||
| 288 | + <schema_name/> | ||
| 289 | + </partitioning> | ||
| 290 | + <connection>bus_control_variable</connection> | ||
| 291 | + <cache>N</cache> | ||
| 292 | + <cache_load_all>N</cache_load_all> | ||
| 293 | + <cache_size>0</cache_size> | ||
| 294 | + <lookup> | ||
| 295 | + <schema/> | ||
| 296 | + <table>bsth_c_business</table> | ||
| 297 | + <orderby/> | ||
| 298 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 299 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 300 | + <key> | ||
| 301 | + <name>company</name> | ||
| 302 | + <field>business_name</field> | ||
| 303 | + <condition>=</condition> | ||
| 304 | + <name2/> | ||
| 305 | + </key> | ||
| 306 | + <value> | ||
| 307 | + <name>business_code</name> | ||
| 308 | + <rename>companyCode</rename> | ||
| 309 | + <default/> | ||
| 310 | + <type>String</type> | ||
| 311 | + </value> | ||
| 312 | + </lookup> | ||
| 313 | + <cluster_schema/> | ||
| 314 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 315 | + <xloc>544</xloc> | ||
| 316 | + <yloc>59</yloc> | ||
| 317 | + <draw>Y</draw> | ||
| 318 | + </GUI> | ||
| 319 | + </step> | ||
| 320 | + | ||
| 321 | + <step> | ||
| 322 | + <name>原始系统导出的Excel输入</name> | ||
| 323 | + <type>ExcelInput</type> | ||
| 324 | + <description/> | ||
| 325 | + <distribute>Y</distribute> | ||
| 326 | + <custom_distribution/> | ||
| 327 | + <copies>1</copies> | ||
| 328 | + <partitioning> | ||
| 329 | + <method>none</method> | ||
| 330 | + <schema_name/> | ||
| 331 | + </partitioning> | ||
| 332 | + <header>Y</header> | ||
| 333 | + <noempty>Y</noempty> | ||
| 334 | + <stoponempty>N</stoponempty> | ||
| 335 | + <filefield/> | ||
| 336 | + <sheetfield/> | ||
| 337 | + <sheetrownumfield/> | ||
| 338 | + <rownumfield/> | ||
| 339 | + <sheetfield/> | ||
| 340 | + <filefield/> | ||
| 341 | + <limit>0</limit> | ||
| 342 | + <encoding/> | ||
| 343 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 344 | + <accept_filenames>Y</accept_filenames> | ||
| 345 | + <accept_field>filepath_</accept_field> | ||
| 346 | + <accept_stepname>获取变量</accept_stepname> | ||
| 347 | + <file> | ||
| 348 | + <name/> | ||
| 349 | + <filemask/> | ||
| 350 | + <exclude_filemask/> | ||
| 351 | + <file_required>N</file_required> | ||
| 352 | + <include_subfolders>N</include_subfolders> | ||
| 353 | + </file> | ||
| 354 | + <fields> | ||
| 355 | + <field> | ||
| 356 | + <name>姓名</name> | ||
| 357 | + <type>String</type> | ||
| 358 | + <length>-1</length> | ||
| 359 | + <precision>-1</precision> | ||
| 360 | + <trim_type>none</trim_type> | ||
| 361 | + <repeat>N</repeat> | ||
| 362 | + <format/> | ||
| 363 | + <currency/> | ||
| 364 | + <decimal/> | ||
| 365 | + <group/> | ||
| 366 | + </field> | ||
| 367 | + <field> | ||
| 368 | + <name>工号</name> | ||
| 369 | + <type>String</type> | ||
| 370 | + <length>-1</length> | ||
| 371 | + <precision>-1</precision> | ||
| 372 | + <trim_type>none</trim_type> | ||
| 373 | + <repeat>N</repeat> | ||
| 374 | + <format>#</format> | ||
| 375 | + <currency/> | ||
| 376 | + <decimal/> | ||
| 377 | + <group/> | ||
| 378 | + </field> | ||
| 379 | + <field> | ||
| 380 | + <name>性别</name> | ||
| 381 | + <type>String</type> | ||
| 382 | + <length>-1</length> | ||
| 383 | + <precision>-1</precision> | ||
| 384 | + <trim_type>none</trim_type> | ||
| 385 | + <repeat>N</repeat> | ||
| 386 | + <format/> | ||
| 387 | + <currency/> | ||
| 388 | + <decimal/> | ||
| 389 | + <group/> | ||
| 390 | + </field> | ||
| 391 | + <field> | ||
| 392 | + <name>所属公司</name> | ||
| 393 | + <type>String</type> | ||
| 394 | + <length>-1</length> | ||
| 395 | + <precision>-1</precision> | ||
| 396 | + <trim_type>none</trim_type> | ||
| 397 | + <repeat>N</repeat> | ||
| 398 | + <format/> | ||
| 399 | + <currency/> | ||
| 400 | + <decimal/> | ||
| 401 | + <group/> | ||
| 402 | + </field> | ||
| 403 | + <field> | ||
| 404 | + <name>所属分公司</name> | ||
| 405 | + <type>String</type> | ||
| 406 | + <length>-1</length> | ||
| 407 | + <precision>-1</precision> | ||
| 408 | + <trim_type>none</trim_type> | ||
| 409 | + <repeat>N</repeat> | ||
| 410 | + <format/> | ||
| 411 | + <currency/> | ||
| 412 | + <decimal/> | ||
| 413 | + <group/> | ||
| 414 | + </field> | ||
| 415 | + <field> | ||
| 416 | + <name>一卡通号</name> | ||
| 417 | + <type>String</type> | ||
| 418 | + <length>-1</length> | ||
| 419 | + <precision>-1</precision> | ||
| 420 | + <trim_type>none</trim_type> | ||
| 421 | + <repeat>N</repeat> | ||
| 422 | + <format/> | ||
| 423 | + <currency/> | ||
| 424 | + <decimal/> | ||
| 425 | + <group/> | ||
| 426 | + </field> | ||
| 427 | + <field> | ||
| 428 | + <name>运营服务证号</name> | ||
| 429 | + <type>String</type> | ||
| 430 | + <length>-1</length> | ||
| 431 | + <precision>-1</precision> | ||
| 432 | + <trim_type>none</trim_type> | ||
| 433 | + <repeat>N</repeat> | ||
| 434 | + <format/> | ||
| 435 | + <currency/> | ||
| 436 | + <decimal/> | ||
| 437 | + <group/> | ||
| 438 | + </field> | ||
| 439 | + <field> | ||
| 440 | + <name>岗位</name> | ||
| 441 | + <type>String</type> | ||
| 442 | + <length>-1</length> | ||
| 443 | + <precision>-1</precision> | ||
| 444 | + <trim_type>none</trim_type> | ||
| 445 | + <repeat>N</repeat> | ||
| 446 | + <format/> | ||
| 447 | + <currency/> | ||
| 448 | + <decimal/> | ||
| 449 | + <group/> | ||
| 450 | + </field> | ||
| 451 | + <field> | ||
| 452 | + <name>备注</name> | ||
| 453 | + <type>String</type> | ||
| 454 | + <length>-1</length> | ||
| 455 | + <precision>-1</precision> | ||
| 456 | + <trim_type>none</trim_type> | ||
| 457 | + <repeat>N</repeat> | ||
| 458 | + <format/> | ||
| 459 | + <currency/> | ||
| 460 | + <decimal/> | ||
| 461 | + <group/> | ||
| 462 | + </field> | ||
| 463 | + </fields> | ||
| 464 | + <sheets> | ||
| 465 | + <sheet> | ||
| 466 | + <name>工作表1</name> | ||
| 467 | + <startrow>0</startrow> | ||
| 468 | + <startcol>0</startcol> | ||
| 469 | + </sheet> | ||
| 470 | + </sheets> | ||
| 471 | + <strict_types>N</strict_types> | ||
| 472 | + <error_ignored>N</error_ignored> | ||
| 473 | + <error_line_skipped>N</error_line_skipped> | ||
| 474 | + <bad_line_files_destination_directory/> | ||
| 475 | + <bad_line_files_extension>warning</bad_line_files_extension> | ||
| 476 | + <error_line_files_destination_directory/> | ||
| 477 | + <error_line_files_extension>error</error_line_files_extension> | ||
| 478 | + <line_number_files_destination_directory/> | ||
| 479 | + <line_number_files_extension>line</line_number_files_extension> | ||
| 480 | + <shortFileFieldName/> | ||
| 481 | + <pathFieldName/> | ||
| 482 | + <hiddenFieldName/> | ||
| 483 | + <lastModificationTimeFieldName/> | ||
| 484 | + <uriNameFieldName/> | ||
| 485 | + <rootUriNameFieldName/> | ||
| 486 | + <extensionFieldName/> | ||
| 487 | + <sizeFieldName/> | ||
| 488 | + <spreadsheet_type>JXL</spreadsheet_type> | ||
| 489 | + <cluster_schema/> | ||
| 490 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 491 | + <xloc>158</xloc> | ||
| 492 | + <yloc>57</yloc> | ||
| 493 | + <draw>Y</draw> | ||
| 494 | + </GUI> | ||
| 495 | + </step> | ||
| 496 | + | ||
| 497 | + <step> | ||
| 498 | + <name>字段选择</name> | ||
| 499 | + <type>SelectValues</type> | ||
| 500 | + <description/> | ||
| 501 | + <distribute>Y</distribute> | ||
| 502 | + <custom_distribution/> | ||
| 503 | + <copies>1</copies> | ||
| 504 | + <partitioning> | ||
| 505 | + <method>none</method> | ||
| 506 | + <schema_name/> | ||
| 507 | + </partitioning> | ||
| 508 | + <fields> <field> <name>姓名</name> | ||
| 509 | + <rename>personnelName</rename> | ||
| 510 | + <length>-2</length> | ||
| 511 | + <precision>-2</precision> | ||
| 512 | + </field> <field> <name>工号</name> | ||
| 513 | + <rename>jobCode</rename> | ||
| 514 | + <length>-2</length> | ||
| 515 | + <precision>-2</precision> | ||
| 516 | + </field> <field> <name>性别</name> | ||
| 517 | + <rename>personnelType</rename> | ||
| 518 | + <length>-2</length> | ||
| 519 | + <precision>-2</precision> | ||
| 520 | + </field> <field> <name>所属公司</name> | ||
| 521 | + <rename>company</rename> | ||
| 522 | + <length>-2</length> | ||
| 523 | + <precision>-2</precision> | ||
| 524 | + </field> <field> <name>所属分公司</name> | ||
| 525 | + <rename>brancheCompany</rename> | ||
| 526 | + <length>-2</length> | ||
| 527 | + <precision>-2</precision> | ||
| 528 | + </field> <field> <name>一卡通号</name> | ||
| 529 | + <rename>icCardCode</rename> | ||
| 530 | + <length>-2</length> | ||
| 531 | + <precision>-2</precision> | ||
| 532 | + </field> <field> <name>运营服务证号</name> | ||
| 533 | + <rename>papersCode</rename> | ||
| 534 | + <length>-2</length> | ||
| 535 | + <precision>-2</precision> | ||
| 536 | + </field> <field> <name>岗位</name> | ||
| 537 | + <rename>posts</rename> | ||
| 538 | + <length>-2</length> | ||
| 539 | + <precision>-2</precision> | ||
| 540 | + </field> <field> <name>备注</name> | ||
| 541 | + <rename>descriptions</rename> | ||
| 542 | + <length>-2</length> | ||
| 543 | + <precision>-2</precision> | ||
| 544 | + </field> <select_unspecified>N</select_unspecified> | ||
| 545 | + </fields> <cluster_schema/> | ||
| 546 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 547 | + <xloc>286</xloc> | ||
| 548 | + <yloc>58</yloc> | ||
| 549 | + <draw>Y</draw> | ||
| 550 | + </GUI> | ||
| 551 | + </step> | ||
| 552 | + | ||
| 553 | + <step> | ||
| 554 | + <name>工种</name> | ||
| 555 | + <type>ValueMapper</type> | ||
| 556 | + <description/> | ||
| 557 | + <distribute>Y</distribute> | ||
| 558 | + <custom_distribution/> | ||
| 559 | + <copies>1</copies> | ||
| 560 | + <partitioning> | ||
| 561 | + <method>none</method> | ||
| 562 | + <schema_name/> | ||
| 563 | + </partitioning> | ||
| 564 | + <field_to_use>posts</field_to_use> | ||
| 565 | + <target_field/> | ||
| 566 | + <non_match_default/> | ||
| 567 | + <fields> | ||
| 568 | + <field> | ||
| 569 | + <source_value>公共汽电车驾驶员</source_value> | ||
| 570 | + <target_value>1</target_value> | ||
| 571 | + </field> | ||
| 572 | + <field> | ||
| 573 | + <source_value>公共汽电车调度员</source_value> | ||
| 574 | + <target_value>2</target_value> | ||
| 575 | + </field> | ||
| 576 | + <field> | ||
| 577 | + <source_value>公共汽电车售票员</source_value> | ||
| 578 | + <target_value>3</target_value> | ||
| 579 | + </field> | ||
| 580 | + <field> | ||
| 581 | + <source_value>站员</source_value> | ||
| 582 | + <target_value>4</target_value> | ||
| 583 | + </field> | ||
| 584 | + <field> | ||
| 585 | + <source_value>管理员</source_value> | ||
| 586 | + <target_value>5</target_value> | ||
| 587 | + </field> | ||
| 588 | + <field> | ||
| 589 | + <source_value>安检员</source_value> | ||
| 590 | + <target_value>6</target_value> | ||
| 591 | + </field> | ||
| 592 | + <field> | ||
| 593 | + <source_value>机务</source_value> | ||
| 594 | + <target_value>7</target_value> | ||
| 595 | + </field> | ||
| 596 | + <field> | ||
| 597 | + <source_value>引导员</source_value> | ||
| 598 | + <target_value>8</target_value> | ||
| 599 | + </field> | ||
| 600 | + <field> | ||
| 601 | + <source_value>乘务员</source_value> | ||
| 602 | + <target_value>9</target_value> | ||
| 603 | + </field> | ||
| 604 | + <field> | ||
| 605 | + <source_value>车队长(线长、主</source_value> | ||
| 606 | + <target_value>10</target_value> | ||
| 607 | + </field> | ||
| 608 | + <field> | ||
| 609 | + <source_value>公司管理人员</source_value> | ||
| 610 | + <target_value>11</target_value> | ||
| 611 | + </field> | ||
| 612 | + <field> | ||
| 613 | + <source_value>警消人员</source_value> | ||
| 614 | + <target_value>12</target_value> | ||
| 615 | + </field> | ||
| 616 | + <field> | ||
| 617 | + <source_value>票务人员</source_value> | ||
| 618 | + <target_value>13</target_value> | ||
| 619 | + </field> | ||
| 620 | + <field> | ||
| 621 | + <source_value>其他服务人员</source_value> | ||
| 622 | + <target_value>14</target_value> | ||
| 623 | + </field> | ||
| 624 | + </fields> | ||
| 625 | + <cluster_schema/> | ||
| 626 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 627 | + <xloc>543</xloc> | ||
| 628 | + <yloc>152</yloc> | ||
| 629 | + <draw>Y</draw> | ||
| 630 | + </GUI> | ||
| 631 | + </step> | ||
| 632 | + | ||
| 633 | + <step> | ||
| 634 | + <name>性别代码</name> | ||
| 635 | + <type>ValueMapper</type> | ||
| 636 | + <description/> | ||
| 637 | + <distribute>Y</distribute> | ||
| 638 | + <custom_distribution/> | ||
| 639 | + <copies>1</copies> | ||
| 640 | + <partitioning> | ||
| 641 | + <method>none</method> | ||
| 642 | + <schema_name/> | ||
| 643 | + </partitioning> | ||
| 644 | + <field_to_use>personnelType</field_to_use> | ||
| 645 | + <target_field>personnelCode</target_field> | ||
| 646 | + <non_match_default/> | ||
| 647 | + <fields> | ||
| 648 | + <field> | ||
| 649 | + <source_value>男性</source_value> | ||
| 650 | + <target_value>1</target_value> | ||
| 651 | + </field> | ||
| 652 | + <field> | ||
| 653 | + <source_value>女性</source_value> | ||
| 654 | + <target_value>2</target_value> | ||
| 655 | + </field> | ||
| 656 | + </fields> | ||
| 657 | + <cluster_schema/> | ||
| 658 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 659 | + <xloc>413</xloc> | ||
| 660 | + <yloc>58</yloc> | ||
| 661 | + <draw>Y</draw> | ||
| 662 | + </GUI> | ||
| 663 | + </step> | ||
| 664 | + | ||
| 665 | + <step> | ||
| 666 | + <name>插入/更新bsth_c_personnel</name> | ||
| 667 | + <type>InsertUpdate</type> | ||
| 668 | + <description/> | ||
| 669 | + <distribute>Y</distribute> | ||
| 670 | + <custom_distribution/> | ||
| 671 | + <copies>1</copies> | ||
| 672 | + <partitioning> | ||
| 673 | + <method>none</method> | ||
| 674 | + <schema_name/> | ||
| 675 | + </partitioning> | ||
| 676 | + <connection>bus_control_variable</connection> | ||
| 677 | + <commit>5000</commit> | ||
| 678 | + <update_bypassed>N</update_bypassed> | ||
| 679 | + <lookup> | ||
| 680 | + <schema/> | ||
| 681 | + <table>bsth_c_personnel</table> | ||
| 682 | + <key> | ||
| 683 | + <name>companyCode</name> | ||
| 684 | + <field>company_code</field> | ||
| 685 | + <condition>=</condition> | ||
| 686 | + <name2/> | ||
| 687 | + </key> | ||
| 688 | + <key> | ||
| 689 | + <name>jobCode</name> | ||
| 690 | + <field>job_code</field> | ||
| 691 | + <condition>=</condition> | ||
| 692 | + <name2/> | ||
| 693 | + </key> | ||
| 694 | + <value> | ||
| 695 | + <name>personnel_name</name> | ||
| 696 | + <rename>personnelName</rename> | ||
| 697 | + <update>Y</update> | ||
| 698 | + </value> | ||
| 699 | + <value> | ||
| 700 | + <name>job_code</name> | ||
| 701 | + <rename>jobCode</rename> | ||
| 702 | + <update>Y</update> | ||
| 703 | + </value> | ||
| 704 | + <value> | ||
| 705 | + <name>personnel_type</name> | ||
| 706 | + <rename>personnelCode</rename> | ||
| 707 | + <update>Y</update> | ||
| 708 | + </value> | ||
| 709 | + <value> | ||
| 710 | + <name>company</name> | ||
| 711 | + <rename>company</rename> | ||
| 712 | + <update>Y</update> | ||
| 713 | + </value> | ||
| 714 | + <value> | ||
| 715 | + <name>branche_company</name> | ||
| 716 | + <rename>brancheCompany</rename> | ||
| 717 | + <update>Y</update> | ||
| 718 | + </value> | ||
| 719 | + <value> | ||
| 720 | + <name>ic_card_code</name> | ||
| 721 | + <rename>icCardCode</rename> | ||
| 722 | + <update>Y</update> | ||
| 723 | + </value> | ||
| 724 | + <value> | ||
| 725 | + <name>papers_code</name> | ||
| 726 | + <rename>papersCode</rename> | ||
| 727 | + <update>Y</update> | ||
| 728 | + </value> | ||
| 729 | + <value> | ||
| 730 | + <name>posts</name> | ||
| 731 | + <rename>posts</rename> | ||
| 732 | + <update>Y</update> | ||
| 733 | + </value> | ||
| 734 | + <value> | ||
| 735 | + <name>descriptions</name> | ||
| 736 | + <rename>descriptions</rename> | ||
| 737 | + <update>Y</update> | ||
| 738 | + </value> | ||
| 739 | + <value> | ||
| 740 | + <name>company_code</name> | ||
| 741 | + <rename>companyCode</rename> | ||
| 742 | + <update>Y</update> | ||
| 743 | + </value> | ||
| 744 | + </lookup> | ||
| 745 | + <cluster_schema/> | ||
| 746 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 747 | + <xloc>713</xloc> | ||
| 748 | + <yloc>56</yloc> | ||
| 749 | + <draw>Y</draw> | ||
| 750 | + </GUI> | ||
| 751 | + </step> | ||
| 752 | + | ||
| 753 | + <step> | ||
| 754 | + <name>获取变量</name> | ||
| 755 | + <type>GetVariable</type> | ||
| 756 | + <description/> | ||
| 757 | + <distribute>Y</distribute> | ||
| 758 | + <custom_distribution/> | ||
| 759 | + <copies>1</copies> | ||
| 760 | + <partitioning> | ||
| 761 | + <method>none</method> | ||
| 762 | + <schema_name/> | ||
| 763 | + </partitioning> | ||
| 764 | + <fields> | ||
| 765 | + <field> | ||
| 766 | + <name>filepath_</name> | ||
| 767 | + <variable>${filepath}</variable> | ||
| 768 | + <type>String</type> | ||
| 769 | + <format/> | ||
| 770 | + <currency/> | ||
| 771 | + <decimal/> | ||
| 772 | + <group/> | ||
| 773 | + <length>-1</length> | ||
| 774 | + <precision>-1</precision> | ||
| 775 | + <trim_type>none</trim_type> | ||
| 776 | + </field> | ||
| 777 | + <field> | ||
| 778 | + <name>erroroutputdir_</name> | ||
| 779 | + <variable>${erroroutputdir}</variable> | ||
| 780 | + <type>String</type> | ||
| 781 | + <format/> | ||
| 782 | + <currency/> | ||
| 783 | + <decimal/> | ||
| 784 | + <group/> | ||
| 785 | + <length>-1</length> | ||
| 786 | + <precision>-1</precision> | ||
| 787 | + <trim_type>none</trim_type> | ||
| 788 | + </field> | ||
| 789 | + </fields> | ||
| 790 | + <cluster_schema/> | ||
| 791 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 792 | + <xloc>90</xloc> | ||
| 793 | + <yloc>148</yloc> | ||
| 794 | + <draw>Y</draw> | ||
| 795 | + </GUI> | ||
| 796 | + </step> | ||
| 797 | + | ||
| 798 | + <step> | ||
| 799 | + <name>错误输出</name> | ||
| 800 | + <type>ExcelOutput</type> | ||
| 801 | + <description/> | ||
| 802 | + <distribute>Y</distribute> | ||
| 803 | + <custom_distribution/> | ||
| 804 | + <copies>1</copies> | ||
| 805 | + <partitioning> | ||
| 806 | + <method>none</method> | ||
| 807 | + <schema_name/> | ||
| 808 | + </partitioning> | ||
| 809 | + <header>Y</header> | ||
| 810 | + <footer>N</footer> | ||
| 811 | + <encoding>UTF-8</encoding> | ||
| 812 | + <append>N</append> | ||
| 813 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 814 | + <file> | ||
| 815 | + <name>${erroroutputdir}/人员基础信息_错误</name> | ||
| 816 | + <extention>xls</extention> | ||
| 817 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 818 | + <create_parent_folder>N</create_parent_folder> | ||
| 819 | + <split>N</split> | ||
| 820 | + <add_date>N</add_date> | ||
| 821 | + <add_time>N</add_time> | ||
| 822 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 823 | + <date_time_format/> | ||
| 824 | + <sheetname>Sheet1</sheetname> | ||
| 825 | + <autosizecolums>N</autosizecolums> | ||
| 826 | + <nullisblank>N</nullisblank> | ||
| 827 | + <protect_sheet>N</protect_sheet> | ||
| 828 | + <password>Encrypted </password> | ||
| 829 | + <splitevery>0</splitevery> | ||
| 830 | + <usetempfiles>N</usetempfiles> | ||
| 831 | + <tempdirectory/> | ||
| 832 | + </file> | ||
| 833 | + <template> | ||
| 834 | + <enabled>N</enabled> | ||
| 835 | + <append>N</append> | ||
| 836 | + <filename>template.xls</filename> | ||
| 837 | + </template> | ||
| 838 | + <fields> | ||
| 839 | + <field> | ||
| 840 | + <name>personnelName</name> | ||
| 841 | + <type>String</type> | ||
| 842 | + <format/> | ||
| 843 | + </field> | ||
| 844 | + <field> | ||
| 845 | + <name>jobCode</name> | ||
| 846 | + <type>String</type> | ||
| 847 | + <format/> | ||
| 848 | + </field> | ||
| 849 | + <field> | ||
| 850 | + <name>personnelType</name> | ||
| 851 | + <type>String</type> | ||
| 852 | + <format/> | ||
| 853 | + </field> | ||
| 854 | + <field> | ||
| 855 | + <name>company</name> | ||
| 856 | + <type>String</type> | ||
| 857 | + <format/> | ||
| 858 | + </field> | ||
| 859 | + <field> | ||
| 860 | + <name>brancheCompany</name> | ||
| 861 | + <type>String</type> | ||
| 862 | + <format/> | ||
| 863 | + </field> | ||
| 864 | + <field> | ||
| 865 | + <name>icCardCode</name> | ||
| 866 | + <type>String</type> | ||
| 867 | + <format/> | ||
| 868 | + </field> | ||
| 869 | + <field> | ||
| 870 | + <name>papersCode</name> | ||
| 871 | + <type>String</type> | ||
| 872 | + <format/> | ||
| 873 | + </field> | ||
| 874 | + <field> | ||
| 875 | + <name>posts</name> | ||
| 876 | + <type>String</type> | ||
| 877 | + <format/> | ||
| 878 | + </field> | ||
| 879 | + <field> | ||
| 880 | + <name>descriptions</name> | ||
| 881 | + <type>String</type> | ||
| 882 | + <format/> | ||
| 883 | + </field> | ||
| 884 | + <field> | ||
| 885 | + <name>companyCode</name> | ||
| 886 | + <type>String</type> | ||
| 887 | + <format/> | ||
| 888 | + </field> | ||
| 889 | + <field> | ||
| 890 | + <name>error_count</name> | ||
| 891 | + <type>Integer</type> | ||
| 892 | + <format/> | ||
| 893 | + </field> | ||
| 894 | + <field> | ||
| 895 | + <name>error_desc</name> | ||
| 896 | + <type>String</type> | ||
| 897 | + <format/> | ||
| 898 | + </field> | ||
| 899 | + <field> | ||
| 900 | + <name>error_column1</name> | ||
| 901 | + <type>String</type> | ||
| 902 | + <format/> | ||
| 903 | + </field> | ||
| 904 | + <field> | ||
| 905 | + <name>error_column2</name> | ||
| 906 | + <type>String</type> | ||
| 907 | + <format/> | ||
| 908 | + </field> | ||
| 909 | + </fields> | ||
| 910 | + <custom> | ||
| 911 | + <header_font_name>arial</header_font_name> | ||
| 912 | + <header_font_size>10</header_font_size> | ||
| 913 | + <header_font_bold>N</header_font_bold> | ||
| 914 | + <header_font_italic>N</header_font_italic> | ||
| 915 | + <header_font_underline>no</header_font_underline> | ||
| 916 | + <header_font_orientation>horizontal</header_font_orientation> | ||
| 917 | + <header_font_color>black</header_font_color> | ||
| 918 | + <header_background_color>none</header_background_color> | ||
| 919 | + <header_row_height>255</header_row_height> | ||
| 920 | + <header_alignment>left</header_alignment> | ||
| 921 | + <header_image/> | ||
| 922 | + <row_font_name>arial</row_font_name> | ||
| 923 | + <row_font_size>10</row_font_size> | ||
| 924 | + <row_font_color>black</row_font_color> | ||
| 925 | + <row_background_color>none</row_background_color> | ||
| 926 | + </custom> | ||
| 927 | + <cluster_schema/> | ||
| 928 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 929 | + <xloc>715</xloc> | ||
| 930 | + <yloc>223</yloc> | ||
| 931 | + <draw>Y</draw> | ||
| 932 | + </GUI> | ||
| 933 | + </step> | ||
| 934 | + | ||
| 935 | + <step_error_handling> | ||
| 936 | + <error> | ||
| 937 | + <source_step>插入/更新bsth_c_personnel</source_step> | ||
| 938 | + <target_step>错误输出</target_step> | ||
| 939 | + <is_enabled>Y</is_enabled> | ||
| 940 | + <nr_valuename>error_count</nr_valuename> | ||
| 941 | + <descriptions_valuename>error_desc</descriptions_valuename> | ||
| 942 | + <fields_valuename>error_column1</fields_valuename> | ||
| 943 | + <codes_valuename>error_column2</codes_valuename> | ||
| 944 | + <max_errors/> | ||
| 945 | + <max_pct_errors/> | ||
| 946 | + <min_pct_rows/> | ||
| 947 | + </error> | ||
| 948 | + </step_error_handling> | ||
| 949 | + <slave-step-copy-partition-distribution> | ||
| 950 | +</slave-step-copy-partition-distribution> | ||
| 951 | + <slave_transformation>N</slave_transformation> | ||
| 952 | + | ||
| 953 | +</transformation> |
src/main/resources/datatools/ktrs/legecy/employeesDataOutput.ktr
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<transformation> | ||
| 3 | + <info> | ||
| 4 | + <name>人员信息导出</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>filepath</name> | ||
| 14 | + <default_value/> | ||
| 15 | + <description>excel文件路径</description> | ||
| 16 | + </parameter> | ||
| 17 | + </parameters> | ||
| 18 | + <log> | ||
| 19 | +<trans-log-table><connection/> | ||
| 20 | +<schema/> | ||
| 21 | +<table/> | ||
| 22 | +<size_limit_lines/> | ||
| 23 | +<interval/> | ||
| 24 | +<timeout_days/> | ||
| 25 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | ||
| 26 | +<perf-log-table><connection/> | ||
| 27 | +<schema/> | ||
| 28 | +<table/> | ||
| 29 | +<interval/> | ||
| 30 | +<timeout_days/> | ||
| 31 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | ||
| 32 | +<channel-log-table><connection/> | ||
| 33 | +<schema/> | ||
| 34 | +<table/> | ||
| 35 | +<timeout_days/> | ||
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | ||
| 37 | +<step-log-table><connection/> | ||
| 38 | +<schema/> | ||
| 39 | +<table/> | ||
| 40 | +<timeout_days/> | ||
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | ||
| 42 | +<metrics-log-table><connection/> | ||
| 43 | +<schema/> | ||
| 44 | +<table/> | ||
| 45 | +<timeout_days/> | ||
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | ||
| 47 | + </log> | ||
| 48 | + <maxdate> | ||
| 49 | + <connection/> | ||
| 50 | + <table/> | ||
| 51 | + <field/> | ||
| 52 | + <offset>0.0</offset> | ||
| 53 | + <maxdiff>0.0</maxdiff> | ||
| 54 | + </maxdate> | ||
| 55 | + <size_rowset>10000</size_rowset> | ||
| 56 | + <sleep_time_empty>50</sleep_time_empty> | ||
| 57 | + <sleep_time_full>50</sleep_time_full> | ||
| 58 | + <unique_connections>N</unique_connections> | ||
| 59 | + <feedback_shown>Y</feedback_shown> | ||
| 60 | + <feedback_size>50000</feedback_size> | ||
| 61 | + <using_thread_priorities>Y</using_thread_priorities> | ||
| 62 | + <shared_objects_file/> | ||
| 63 | + <capture_step_performance>N</capture_step_performance> | ||
| 64 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | ||
| 65 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | ||
| 66 | + <dependencies> | ||
| 67 | + </dependencies> | ||
| 68 | + <partitionschemas> | ||
| 69 | + </partitionschemas> | ||
| 70 | + <slaveservers> | ||
| 71 | + </slaveservers> | ||
| 72 | + <clusterschemas> | ||
| 73 | + </clusterschemas> | ||
| 74 | + <created_user>-</created_user> | ||
| 75 | + <created_date>2016/08/09 09:57:38.471</created_date> | ||
| 76 | + <modified_user>-</modified_user> | ||
| 77 | + <modified_date>2016/08/09 09:57:38.471</modified_date> | ||
| 78 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 79 | + <is_key_private>N</is_key_private> | ||
| 80 | + </info> | ||
| 81 | + <notepads> | ||
| 82 | + </notepads> | ||
| 83 | + <connection> | ||
| 84 | + <name>bus_control_variable</name> | ||
| 85 | + <server>${v_db_ip}</server> | ||
| 86 | + <type>MYSQL</type> | ||
| 87 | + <access>Native</access> | ||
| 88 | + <database>${v_db_dname}</database> | ||
| 89 | + <port>3306</port> | ||
| 90 | + <username>${v_db_uname}</username> | ||
| 91 | + <password>${v_db_pwd}</password> | ||
| 92 | + <servername/> | ||
| 93 | + <data_tablespace/> | ||
| 94 | + <index_tablespace/> | ||
| 95 | + <attributes> | ||
| 96 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | ||
| 97 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 98 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 99 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 100 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 101 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 102 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 103 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 104 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 105 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 106 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 107 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 108 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 109 | + </attributes> | ||
| 110 | + </connection> | ||
| 111 | + <connection> | ||
| 112 | + <name>bus_control_公司_201</name> | ||
| 113 | + <server>localhost</server> | ||
| 114 | + <type>MYSQL</type> | ||
| 115 | + <access>Native</access> | ||
| 116 | + <database>control</database> | ||
| 117 | + <port>3306</port> | ||
| 118 | + <username>root</username> | ||
| 119 | + <password>Encrypted </password> | ||
| 120 | + <servername/> | ||
| 121 | + <data_tablespace/> | ||
| 122 | + <index_tablespace/> | ||
| 123 | + <attributes> | ||
| 124 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 125 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 126 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 127 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 128 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 129 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 130 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 131 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 132 | + <attribute><code>STREAM_RESULTS</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_本机</name> | ||
| 140 | + <server>localhost</server> | ||
| 141 | + <type>MYSQL</type> | ||
| 142 | + <access>Native</access> | ||
| 143 | + <database>control</database> | ||
| 144 | + <port>3306</port> | ||
| 145 | + <username>root</username> | ||
| 146 | + <password>Encrypted </password> | ||
| 147 | + <servername/> | ||
| 148 | + <data_tablespace/> | ||
| 149 | + <index_tablespace/> | ||
| 150 | + <attributes> | ||
| 151 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 152 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 153 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 154 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 155 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 156 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 157 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 158 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 159 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 160 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 161 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 162 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 163 | + </attributes> | ||
| 164 | + </connection> | ||
| 165 | + <connection> | ||
| 166 | + <name>xlab_mysql_youle</name> | ||
| 167 | + <server>101.231.124.8</server> | ||
| 168 | + <type>MYSQL</type> | ||
| 169 | + <access>Native</access> | ||
| 170 | + <database>xlab_youle</database> | ||
| 171 | + <port>45687</port> | ||
| 172 | + <username>xlab-youle</username> | ||
| 173 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | ||
| 174 | + <servername/> | ||
| 175 | + <data_tablespace/> | ||
| 176 | + <index_tablespace/> | ||
| 177 | + <attributes> | ||
| 178 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 179 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 180 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 181 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 182 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 183 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | ||
| 184 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 185 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 186 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 187 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 188 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 189 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 190 | + </attributes> | ||
| 191 | + </connection> | ||
| 192 | + <connection> | ||
| 193 | + <name>xlab_mysql_youle(本机)</name> | ||
| 194 | + <server>localhost</server> | ||
| 195 | + <type>MYSQL</type> | ||
| 196 | + <access>Native</access> | ||
| 197 | + <database>xlab_youle</database> | ||
| 198 | + <port>3306</port> | ||
| 199 | + <username>root</username> | ||
| 200 | + <password>Encrypted </password> | ||
| 201 | + <servername/> | ||
| 202 | + <data_tablespace/> | ||
| 203 | + <index_tablespace/> | ||
| 204 | + <attributes> | ||
| 205 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 206 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 207 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 208 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 209 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 210 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 211 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 212 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 213 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 214 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 215 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 216 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 217 | + </attributes> | ||
| 218 | + </connection> | ||
| 219 | + <connection> | ||
| 220 | + <name>xlab_youle</name> | ||
| 221 | + <server/> | ||
| 222 | + <type>MYSQL</type> | ||
| 223 | + <access>JNDI</access> | ||
| 224 | + <database>xlab_youle</database> | ||
| 225 | + <port>1521</port> | ||
| 226 | + <username/> | ||
| 227 | + <password>Encrypted </password> | ||
| 228 | + <servername/> | ||
| 229 | + <data_tablespace/> | ||
| 230 | + <index_tablespace/> | ||
| 231 | + <attributes> | ||
| 232 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 234 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 235 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 236 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 237 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 238 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 239 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>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 | + <order> | ||
| 245 | + <hop> <from>表输入</from><to>性别标识</to><enabled>Y</enabled> </hop> | ||
| 246 | + <hop> <from>性别标识</from><to>性别标识查询</to><enabled>Y</enabled> </hop> | ||
| 247 | + <hop> <from>性别标识查询</from><to>工种标识</to><enabled>Y</enabled> </hop> | ||
| 248 | + <hop> <from>工种标识</from><to>工种标识查询</to><enabled>Y</enabled> </hop> | ||
| 249 | + <hop> <from>工种标识查询</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 250 | + <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 251 | + </order> | ||
| 252 | + <step> | ||
| 253 | + <name>Excel输出</name> | ||
| 254 | + <type>ExcelOutput</type> | ||
| 255 | + <description/> | ||
| 256 | + <distribute>Y</distribute> | ||
| 257 | + <custom_distribution/> | ||
| 258 | + <copies>1</copies> | ||
| 259 | + <partitioning> | ||
| 260 | + <method>none</method> | ||
| 261 | + <schema_name/> | ||
| 262 | + </partitioning> | ||
| 263 | + <header>Y</header> | ||
| 264 | + <footer>N</footer> | ||
| 265 | + <encoding/> | ||
| 266 | + <append>N</append> | ||
| 267 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 268 | + <file> | ||
| 269 | + <name>${filepath}</name> | ||
| 270 | + <extention/> | ||
| 271 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 272 | + <create_parent_folder>N</create_parent_folder> | ||
| 273 | + <split>N</split> | ||
| 274 | + <add_date>N</add_date> | ||
| 275 | + <add_time>N</add_time> | ||
| 276 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 277 | + <date_time_format>yyyyMMddHHmmss</date_time_format> | ||
| 278 | + <sheetname>工作表1</sheetname> | ||
| 279 | + <autosizecolums>N</autosizecolums> | ||
| 280 | + <nullisblank>N</nullisblank> | ||
| 281 | + <protect_sheet>N</protect_sheet> | ||
| 282 | + <password>Encrypted </password> | ||
| 283 | + <splitevery>0</splitevery> | ||
| 284 | + <usetempfiles>N</usetempfiles> | ||
| 285 | + <tempdirectory/> | ||
| 286 | + </file> | ||
| 287 | + <template> | ||
| 288 | + <enabled>N</enabled> | ||
| 289 | + <append>N</append> | ||
| 290 | + <filename>template.xls</filename> | ||
| 291 | + </template> | ||
| 292 | + <fields> | ||
| 293 | + <field> | ||
| 294 | + <name>姓名</name> | ||
| 295 | + <type>String</type> | ||
| 296 | + <format/> | ||
| 297 | + </field> | ||
| 298 | + <field> | ||
| 299 | + <name>工号</name> | ||
| 300 | + <type>String</type> | ||
| 301 | + <format/> | ||
| 302 | + </field> | ||
| 303 | + <field> | ||
| 304 | + <name>性别</name> | ||
| 305 | + <type>String</type> | ||
| 306 | + <format/> | ||
| 307 | + </field> | ||
| 308 | + <field> | ||
| 309 | + <name>所属公司</name> | ||
| 310 | + <type>String</type> | ||
| 311 | + <format/> | ||
| 312 | + </field> | ||
| 313 | + <field> | ||
| 314 | + <name>所属分公司</name> | ||
| 315 | + <type>String</type> | ||
| 316 | + <format/> | ||
| 317 | + </field> | ||
| 318 | + <field> | ||
| 319 | + <name>一卡通号</name> | ||
| 320 | + <type>String</type> | ||
| 321 | + <format/> | ||
| 322 | + </field> | ||
| 323 | + <field> | ||
| 324 | + <name>运营服务证号</name> | ||
| 325 | + <type>String</type> | ||
| 326 | + <format/> | ||
| 327 | + </field> | ||
| 328 | + <field> | ||
| 329 | + <name>岗位</name> | ||
| 330 | + <type>String</type> | ||
| 331 | + <format/> | ||
| 332 | + </field> | ||
| 333 | + <field> | ||
| 334 | + <name>备注</name> | ||
| 335 | + <type>String</type> | ||
| 336 | + <format/> | ||
| 337 | + </field> | ||
| 338 | + </fields> | ||
| 339 | + <custom> | ||
| 340 | + <header_font_name>arial</header_font_name> | ||
| 341 | + <header_font_size>10</header_font_size> | ||
| 342 | + <header_font_bold>N</header_font_bold> | ||
| 343 | + <header_font_italic>N</header_font_italic> | ||
| 344 | + <header_font_underline>no</header_font_underline> | ||
| 345 | + <header_font_orientation>horizontal</header_font_orientation> | ||
| 346 | + <header_font_color>black</header_font_color> | ||
| 347 | + <header_background_color>none</header_background_color> | ||
| 348 | + <header_row_height>255</header_row_height> | ||
| 349 | + <header_alignment>left</header_alignment> | ||
| 350 | + <header_image/> | ||
| 351 | + <row_font_name>arial</row_font_name> | ||
| 352 | + <row_font_size>10</row_font_size> | ||
| 353 | + <row_font_color>black</row_font_color> | ||
| 354 | + <row_background_color>none</row_background_color> | ||
| 355 | + </custom> | ||
| 356 | + <cluster_schema/> | ||
| 357 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 358 | + <xloc>695</xloc> | ||
| 359 | + <yloc>180</yloc> | ||
| 360 | + <draw>Y</draw> | ||
| 361 | + </GUI> | ||
| 362 | + </step> | ||
| 363 | + | ||
| 364 | + <step> | ||
| 365 | + <name>字段选择</name> | ||
| 366 | + <type>SelectValues</type> | ||
| 367 | + <description/> | ||
| 368 | + <distribute>Y</distribute> | ||
| 369 | + <custom_distribution/> | ||
| 370 | + <copies>1</copies> | ||
| 371 | + <partitioning> | ||
| 372 | + <method>none</method> | ||
| 373 | + <schema_name/> | ||
| 374 | + </partitioning> | ||
| 375 | + <fields> <field> <name>personnel_name</name> | ||
| 376 | + <rename>姓名</rename> | ||
| 377 | + <length>-2</length> | ||
| 378 | + <precision>-2</precision> | ||
| 379 | + </field> <field> <name>job_code</name> | ||
| 380 | + <rename>工号</rename> | ||
| 381 | + <length>-2</length> | ||
| 382 | + <precision>-2</precision> | ||
| 383 | + </field> <field> <name>personnel_type_str</name> | ||
| 384 | + <rename>性别</rename> | ||
| 385 | + <length>-2</length> | ||
| 386 | + <precision>-2</precision> | ||
| 387 | + </field> <field> <name>company</name> | ||
| 388 | + <rename>所属公司</rename> | ||
| 389 | + <length>-2</length> | ||
| 390 | + <precision>-2</precision> | ||
| 391 | + </field> <field> <name>branche_company</name> | ||
| 392 | + <rename>所属分公司</rename> | ||
| 393 | + <length>-2</length> | ||
| 394 | + <precision>-2</precision> | ||
| 395 | + </field> <field> <name>ic_card_code</name> | ||
| 396 | + <rename>一卡通号</rename> | ||
| 397 | + <length>-2</length> | ||
| 398 | + <precision>-2</precision> | ||
| 399 | + </field> <field> <name>papers_code</name> | ||
| 400 | + <rename>运营服务证号</rename> | ||
| 401 | + <length>-2</length> | ||
| 402 | + <precision>-2</precision> | ||
| 403 | + </field> <field> <name>posts_str</name> | ||
| 404 | + <rename>岗位</rename> | ||
| 405 | + <length>-2</length> | ||
| 406 | + <precision>-2</precision> | ||
| 407 | + </field> <field> <name>descriptions</name> | ||
| 408 | + <rename>备注</rename> | ||
| 409 | + <length>-2</length> | ||
| 410 | + <precision>-2</precision> | ||
| 411 | + </field> <select_unspecified>N</select_unspecified> | ||
| 412 | + </fields> <cluster_schema/> | ||
| 413 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 414 | + <xloc>631</xloc> | ||
| 415 | + <yloc>76</yloc> | ||
| 416 | + <draw>Y</draw> | ||
| 417 | + </GUI> | ||
| 418 | + </step> | ||
| 419 | + | ||
| 420 | + <step> | ||
| 421 | + <name>工种标识</name> | ||
| 422 | + <type>Constant</type> | ||
| 423 | + <description/> | ||
| 424 | + <distribute>Y</distribute> | ||
| 425 | + <custom_distribution/> | ||
| 426 | + <copies>1</copies> | ||
| 427 | + <partitioning> | ||
| 428 | + <method>none</method> | ||
| 429 | + <schema_name/> | ||
| 430 | + </partitioning> | ||
| 431 | + <fields> | ||
| 432 | + <field> | ||
| 433 | + <name>gzType</name> | ||
| 434 | + <type>String</type> | ||
| 435 | + <format/> | ||
| 436 | + <currency/> | ||
| 437 | + <decimal/> | ||
| 438 | + <group/> | ||
| 439 | + <nullif>gzType</nullif> | ||
| 440 | + <length>-1</length> | ||
| 441 | + <precision>-1</precision> | ||
| 442 | + <set_empty_string>N</set_empty_string> | ||
| 443 | + </field> | ||
| 444 | + </fields> | ||
| 445 | + <cluster_schema/> | ||
| 446 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 447 | + <xloc>418</xloc> | ||
| 448 | + <yloc>73</yloc> | ||
| 449 | + <draw>Y</draw> | ||
| 450 | + </GUI> | ||
| 451 | + </step> | ||
| 452 | + | ||
| 453 | + <step> | ||
| 454 | + <name>工种标识查询</name> | ||
| 455 | + <type>DBLookup</type> | ||
| 456 | + <description/> | ||
| 457 | + <distribute>Y</distribute> | ||
| 458 | + <custom_distribution/> | ||
| 459 | + <copies>1</copies> | ||
| 460 | + <partitioning> | ||
| 461 | + <method>none</method> | ||
| 462 | + <schema_name/> | ||
| 463 | + </partitioning> | ||
| 464 | + <connection>bus_control_variable</connection> | ||
| 465 | + <cache>N</cache> | ||
| 466 | + <cache_load_all>N</cache_load_all> | ||
| 467 | + <cache_size>0</cache_size> | ||
| 468 | + <lookup> | ||
| 469 | + <schema/> | ||
| 470 | + <table>bsth_c_sys_dictionary</table> | ||
| 471 | + <orderby/> | ||
| 472 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 473 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 474 | + <key> | ||
| 475 | + <name>gzType</name> | ||
| 476 | + <field>d_group</field> | ||
| 477 | + <condition>=</condition> | ||
| 478 | + <name2/> | ||
| 479 | + </key> | ||
| 480 | + <key> | ||
| 481 | + <name>posts</name> | ||
| 482 | + <field>d_code</field> | ||
| 483 | + <condition>=</condition> | ||
| 484 | + <name2/> | ||
| 485 | + </key> | ||
| 486 | + <value> | ||
| 487 | + <name>d_name</name> | ||
| 488 | + <rename>posts_str</rename> | ||
| 489 | + <default/> | ||
| 490 | + <type>String</type> | ||
| 491 | + </value> | ||
| 492 | + </lookup> | ||
| 493 | + <cluster_schema/> | ||
| 494 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 495 | + <xloc>509</xloc> | ||
| 496 | + <yloc>75</yloc> | ||
| 497 | + <draw>Y</draw> | ||
| 498 | + </GUI> | ||
| 499 | + </step> | ||
| 500 | + | ||
| 501 | + <step> | ||
| 502 | + <name>性别标识</name> | ||
| 503 | + <type>Constant</type> | ||
| 504 | + <description/> | ||
| 505 | + <distribute>Y</distribute> | ||
| 506 | + <custom_distribution/> | ||
| 507 | + <copies>1</copies> | ||
| 508 | + <partitioning> | ||
| 509 | + <method>none</method> | ||
| 510 | + <schema_name/> | ||
| 511 | + </partitioning> | ||
| 512 | + <fields> | ||
| 513 | + <field> | ||
| 514 | + <name>sexType</name> | ||
| 515 | + <type>String</type> | ||
| 516 | + <format/> | ||
| 517 | + <currency/> | ||
| 518 | + <decimal/> | ||
| 519 | + <group/> | ||
| 520 | + <nullif>sexType</nullif> | ||
| 521 | + <length>-1</length> | ||
| 522 | + <precision>-1</precision> | ||
| 523 | + <set_empty_string>N</set_empty_string> | ||
| 524 | + </field> | ||
| 525 | + </fields> | ||
| 526 | + <cluster_schema/> | ||
| 527 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 528 | + <xloc>220</xloc> | ||
| 529 | + <yloc>69</yloc> | ||
| 530 | + <draw>Y</draw> | ||
| 531 | + </GUI> | ||
| 532 | + </step> | ||
| 533 | + | ||
| 534 | + <step> | ||
| 535 | + <name>性别标识查询</name> | ||
| 536 | + <type>DBLookup</type> | ||
| 537 | + <description/> | ||
| 538 | + <distribute>Y</distribute> | ||
| 539 | + <custom_distribution/> | ||
| 540 | + <copies>1</copies> | ||
| 541 | + <partitioning> | ||
| 542 | + <method>none</method> | ||
| 543 | + <schema_name/> | ||
| 544 | + </partitioning> | ||
| 545 | + <connection>bus_control_variable</connection> | ||
| 546 | + <cache>N</cache> | ||
| 547 | + <cache_load_all>N</cache_load_all> | ||
| 548 | + <cache_size>0</cache_size> | ||
| 549 | + <lookup> | ||
| 550 | + <schema/> | ||
| 551 | + <table>bsth_c_sys_dictionary</table> | ||
| 552 | + <orderby/> | ||
| 553 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 554 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 555 | + <key> | ||
| 556 | + <name>sexType</name> | ||
| 557 | + <field>d_group</field> | ||
| 558 | + <condition>=</condition> | ||
| 559 | + <name2/> | ||
| 560 | + </key> | ||
| 561 | + <key> | ||
| 562 | + <name>personnel_type</name> | ||
| 563 | + <field>d_code</field> | ||
| 564 | + <condition>=</condition> | ||
| 565 | + <name2/> | ||
| 566 | + </key> | ||
| 567 | + <value> | ||
| 568 | + <name>d_name</name> | ||
| 569 | + <rename>personnel_type_str</rename> | ||
| 570 | + <default/> | ||
| 571 | + <type>String</type> | ||
| 572 | + </value> | ||
| 573 | + </lookup> | ||
| 574 | + <cluster_schema/> | ||
| 575 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 576 | + <xloc>316</xloc> | ||
| 577 | + <yloc>71</yloc> | ||
| 578 | + <draw>Y</draw> | ||
| 579 | + </GUI> | ||
| 580 | + </step> | ||
| 581 | + | ||
| 582 | + <step> | ||
| 583 | + <name>表输入</name> | ||
| 584 | + <type>TableInput</type> | ||
| 585 | + <description/> | ||
| 586 | + <distribute>Y</distribute> | ||
| 587 | + <custom_distribution/> | ||
| 588 | + <copies>1</copies> | ||
| 589 | + <partitioning> | ||
| 590 | + <method>none</method> | ||
| 591 | + <schema_name/> | ||
| 592 | + </partitioning> | ||
| 593 | + <connection>bus_control_variable</connection> | ||
| 594 | + <sql>SELECT * FROM bsth_c_personnel;</sql> | ||
| 595 | + <limit>0</limit> | ||
| 596 | + <lookup/> | ||
| 597 | + <execute_each_row>N</execute_each_row> | ||
| 598 | + <variables_active>N</variables_active> | ||
| 599 | + <lazy_conversion_active>N</lazy_conversion_active> | ||
| 600 | + <cluster_schema/> | ||
| 601 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 602 | + <xloc>112</xloc> | ||
| 603 | + <yloc>66</yloc> | ||
| 604 | + <draw>Y</draw> | ||
| 605 | + </GUI> | ||
| 606 | + </step> | ||
| 607 | + | ||
| 608 | + <step_error_handling> | ||
| 609 | + </step_error_handling> | ||
| 610 | + <slave-step-copy-partition-distribution> | ||
| 611 | +</slave-step-copy-partition-distribution> | ||
| 612 | + <slave_transformation>N</slave_transformation> | ||
| 613 | + | ||
| 614 | +</transformation> |
src/main/resources/rules/shiftloop_fb_2.drl
| @@ -10,12 +10,14 @@ import com.bsth.service.schedule.rules.shiftloop.ScheduleRule_input; | @@ -10,12 +10,14 @@ import com.bsth.service.schedule.rules.shiftloop.ScheduleRule_input; | ||
| 10 | import com.bsth.service.schedule.rules.shiftloop.ScheduleResult_output; | 10 | import com.bsth.service.schedule.rules.shiftloop.ScheduleResult_output; |
| 11 | import com.bsth.service.schedule.rules.shiftloop.ScheduleResults_output; | 11 | import com.bsth.service.schedule.rules.shiftloop.ScheduleResults_output; |
| 12 | 12 | ||
| 13 | +import com.bsth.repository.schedule.SchedulePlanRuleResultRepository; | ||
| 13 | import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | 14 | import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; |
| 14 | 15 | ||
| 15 | import org.slf4j.Logger; | 16 | import org.slf4j.Logger; |
| 16 | 17 | ||
| 17 | global Logger log; | 18 | global Logger log; |
| 18 | global ScheduleResults_output scheduleResult; | 19 | global ScheduleResults_output scheduleResult; |
| 20 | +global SchedulePlanRuleResultRepository schedulePlanRuleResultRepository; | ||
| 19 | 21 | ||
| 20 | /* | 22 | /* |
| 21 | 存在(翻班格式) | 23 | 存在(翻班格式) |
| @@ -109,6 +111,75 @@ rule "calcu_days_2_" | @@ -109,6 +111,75 @@ rule "calcu_days_2_" | ||
| 109 | 111 | ||
| 110 | end | 112 | end |
| 111 | 113 | ||
| 114 | +// 使用已经排过班的数据修正Calcu_days_result_pre | ||
| 115 | +// 1、避免每次从规则的启用日期开始算 | ||
| 116 | +// 2、时刻表会不停的修正,如果每次都从规则启用日期开始算,会出错 | ||
| 117 | + | ||
| 118 | +declare SchedulePlanRuleResult_wrap | ||
| 119 | + ruleId: String // 规则Id | ||
| 120 | + scheduleDate: DateTime // 排班日期 | ||
| 121 | + | ||
| 122 | + isUsed: Boolean = false // 是否被使用过 | ||
| 123 | + | ||
| 124 | + self: SchedulePlanRuleResult; // 原始对象数据 | ||
| 125 | +end | ||
| 126 | + | ||
| 127 | +rule "Calcu_SchedulePlanRuleResult_wrap" | ||
| 128 | + salience 950 | ||
| 129 | + when | ||
| 130 | + ScheduleCalcuParam_input( | ||
| 131 | + fromDate.isBefore(toDate) || fromDate.isEqual(toDate), | ||
| 132 | + $fromDate : fromDate, | ||
| 133 | + $toDate : toDate, | ||
| 134 | + $xlId: xlId | ||
| 135 | + ) | ||
| 136 | + $sprr: SchedulePlanRuleResult() from schedulePlanRuleResultRepository.findLastByXl($xlId, $fromDate.toDate()) | ||
| 137 | + | ||
| 138 | + then | ||
| 139 | + // 创建班序历史结果数据 | ||
| 140 | + SchedulePlanRuleResult_wrap schedulePlanRuleResult_wrap = new SchedulePlanRuleResult_wrap(); | ||
| 141 | + schedulePlanRuleResult_wrap.setRuleId($sprr.getRuleId()); | ||
| 142 | + schedulePlanRuleResult_wrap.setScheduleDate(new DateTime($sprr.getScheduleDate())); | ||
| 143 | + schedulePlanRuleResult_wrap.setSelf($sprr); | ||
| 144 | + | ||
| 145 | + insert(schedulePlanRuleResult_wrap); | ||
| 146 | +end | ||
| 147 | + | ||
| 148 | + | ||
| 149 | +// 1、启用日期 < 开始日期 | ||
| 150 | +// 2、如果最近的排班规则历史时间在 (启用日期,开始日期) 之间,需要重新修正预处理数据 | ||
| 151 | +rule "calcu_days_1_with_result" | ||
| 152 | + no-loop | ||
| 153 | + salience 960 | ||
| 154 | + when | ||
| 155 | + $cdrp: Calcu_days_result_pre( | ||
| 156 | + calcu_start_date_1.isBefore(calcu_start_date_2), | ||
| 157 | + $ruleId: ruleId | ||
| 158 | + ) | ||
| 159 | + $srrr_wrap: SchedulePlanRuleResult_wrap( | ||
| 160 | + ruleId == $ruleId, | ||
| 161 | + scheduleDate.isAfter($cdrp.calcu_start_date_1), | ||
| 162 | + scheduleDate.isBefore($cdrp.calcu_start_date_2), | ||
| 163 | + isUsed == false, | ||
| 164 | + $scheduleDate: scheduleDate, | ||
| 165 | + $self: self | ||
| 166 | + ) | ||
| 167 | + then | ||
| 168 | + // 修正排班数据 | ||
| 169 | + log.info("准备修正 ruleId={} historyDate={}", $ruleId, $scheduleDate); | ||
| 170 | + | ||
| 171 | + $cdrp.setCalcu_index_lp(Integer.valueOf($self.getGidindex())); | ||
| 172 | + $cdrp.setCalcu_index_ry(Integer.valueOf($self.getEcindex())); | ||
| 173 | + $cdrp.setCalcu_start_date_1($scheduleDate); | ||
| 174 | + update($cdrp); | ||
| 175 | + | ||
| 176 | + $srrr_wrap.setIsUsed(true); | ||
| 177 | + update($srrr_wrap); | ||
| 178 | + | ||
| 179 | +end | ||
| 180 | + | ||
| 181 | + | ||
| 182 | + | ||
| 112 | //------------------------- 第二阶段、计算规则准备数据2(第一组循环) ----------------------------// | 183 | //------------------------- 第二阶段、计算规则准备数据2(第一组循环) ----------------------------// |
| 113 | rule "Calcu_loop1_1_" // 路牌在时刻表中存在,就翻 | 184 | rule "Calcu_loop1_1_" // 路牌在时刻表中存在,就翻 |
| 114 | salience 900 | 185 | salience 900 |
| @@ -191,7 +262,9 @@ rule "Calcu_loop2_1_" // 路牌在时刻表中存在,就翻 | @@ -191,7 +262,9 @@ rule "Calcu_loop2_1_" // 路牌在时刻表中存在,就翻 | ||
| 191 | $liro: LpInfoResult_output( | 262 | $liro: LpInfoResult_output( |
| 192 | dateTime.isEqual($csd2), | 263 | dateTime.isEqual($csd2), |
| 193 | $gids.get($lpindex) == lpId, | 264 | $gids.get($lpindex) == lpId, |
| 194 | - $lpId: lpId | 265 | + $lpId: lpId, |
| 266 | + $ttinfoId: ttInfoId, | ||
| 267 | + $ttinfoName: ttInfoName | ||
| 195 | ) | 268 | ) |
| 196 | then | 269 | then |
| 197 | ScheduleResult_output ro = new ScheduleResult_output(); | 270 | ScheduleResult_output ro = new ScheduleResult_output(); |
| @@ -221,6 +294,8 @@ rule "Calcu_loop2_1_" // 路牌在时刻表中存在,就翻 | @@ -221,6 +294,8 @@ rule "Calcu_loop2_1_" // 路牌在时刻表中存在,就翻 | ||
| 221 | schedulePlanRuleResult.setEcdbbms($srf.getRyDbbms()); | 294 | schedulePlanRuleResult.setEcdbbms($srf.getRyDbbms()); |
| 222 | schedulePlanRuleResult.setEcindex(String.valueOf($ryindex)); | 295 | schedulePlanRuleResult.setEcindex(String.valueOf($ryindex)); |
| 223 | schedulePlanRuleResult.setScheduleDate($csd2.toDate()); | 296 | schedulePlanRuleResult.setScheduleDate($csd2.toDate()); |
| 297 | + schedulePlanRuleResult.setTtinfoId($ttinfoId); | ||
| 298 | + schedulePlanRuleResult.setTtinfoName($ttinfoName); | ||
| 224 | 299 | ||
| 225 | scheduleResult.getSchedulePlanRuleResults().add(schedulePlanRuleResult); | 300 | scheduleResult.getSchedulePlanRuleResults().add(schedulePlanRuleResult); |
| 226 | 301 | ||
| @@ -263,22 +338,22 @@ rule "Calcu_loop2_2_" // 路牌在时刻表中不存在,就不翻 | @@ -263,22 +338,22 @@ rule "Calcu_loop2_2_" // 路牌在时刻表中不存在,就不翻 | ||
| 263 | 338 | ||
| 264 | $cdrp.setCalcu_start_date_2($csd2.plusDays(1)); | 339 | $cdrp.setCalcu_start_date_2($csd2.plusDays(1)); |
| 265 | 340 | ||
| 266 | - // 保存排班规则循环结果 --> SchedulePlanRuleResult | ||
| 267 | - SchedulePlanRuleResult schedulePlanRuleResult = new SchedulePlanRuleResult($sp); | ||
| 268 | - schedulePlanRuleResult.setXlId(String.valueOf($srf.getXl().getId())); | ||
| 269 | - schedulePlanRuleResult.setXlName($srf.getXl().getName()); | ||
| 270 | - schedulePlanRuleResult.setRuleId($ruleId); | ||
| 271 | - schedulePlanRuleResult.setCcId($cid); | ||
| 272 | - schedulePlanRuleResult.setCcZbh($srf.getCarConfigInfo().getCl().getInsideCode()); | ||
| 273 | - schedulePlanRuleResult.setGids($srf.getLpIds()); | ||
| 274 | - schedulePlanRuleResult.setGnames($srf.getLpNames()); | ||
| 275 | - schedulePlanRuleResult.setGidindex(String.valueOf($lpindex)); | ||
| 276 | - schedulePlanRuleResult.setEcids($srf.getRyConfigIds()); | ||
| 277 | - schedulePlanRuleResult.setEcdbbms($srf.getRyDbbms()); | ||
| 278 | - schedulePlanRuleResult.setEcindex(String.valueOf($ryindex)); | ||
| 279 | - schedulePlanRuleResult.setScheduleDate($csd2.toDate()); | ||
| 280 | - | ||
| 281 | - scheduleResult.getSchedulePlanRuleResults().add(schedulePlanRuleResult); | 341 | +// // 保存排班规则循环结果 --> SchedulePlanRuleResult |
| 342 | +// SchedulePlanRuleResult schedulePlanRuleResult = new SchedulePlanRuleResult($sp); | ||
| 343 | +// schedulePlanRuleResult.setXlId(String.valueOf($srf.getXl().getId())); | ||
| 344 | +// schedulePlanRuleResult.setXlName($srf.getXl().getName()); | ||
| 345 | +// schedulePlanRuleResult.setRuleId($ruleId); | ||
| 346 | +// schedulePlanRuleResult.setCcId($cid); | ||
| 347 | +// schedulePlanRuleResult.setCcZbh($srf.getCarConfigInfo().getCl().getInsideCode()); | ||
| 348 | +// schedulePlanRuleResult.setGids($srf.getLpIds()); | ||
| 349 | +// schedulePlanRuleResult.setGnames($srf.getLpNames()); | ||
| 350 | +// schedulePlanRuleResult.setGidindex(String.valueOf($lpindex)); | ||
| 351 | +// schedulePlanRuleResult.setEcids($srf.getRyConfigIds()); | ||
| 352 | +// schedulePlanRuleResult.setEcdbbms($srf.getRyDbbms()); | ||
| 353 | +// schedulePlanRuleResult.setEcindex(String.valueOf($ryindex)); | ||
| 354 | +// schedulePlanRuleResult.setScheduleDate($csd2.toDate()); | ||
| 355 | +// | ||
| 356 | +// scheduleResult.getSchedulePlanRuleResults().add(schedulePlanRuleResult); | ||
| 282 | 357 | ||
| 283 | log.info("Calcu_loop2_2_ ruleId={}, calcu_index_lp/ry={}/{}, from={}, to={}", | 358 | log.info("Calcu_loop2_2_ ruleId={}, calcu_index_lp/ry={}/{}, from={}, to={}", |
| 284 | $ruleId, $cdrp.getCalcu_index_lp(), $cdrp.getCalcu_index_ry(), $csd2, $ced2); | 359 | $ruleId, $cdrp.getCalcu_index_lp(), $cdrp.getCalcu_index_ry(), $csd2, $ced2); |
src/main/resources/static/pages/oil/add.html
| @@ -214,6 +214,8 @@ | @@ -214,6 +214,8 @@ | ||
| 214 | } | 214 | } |
| 215 | $('#fgsdm').html(options); | 215 | $('#fgsdm').html(options); |
| 216 | initXl(); | 216 | initXl(); |
| 217 | + selectNbbm(); | ||
| 218 | + selectJsy(); | ||
| 217 | } | 219 | } |
| 218 | $("#fgsdm").on("change",initXl); | 220 | $("#fgsdm").on("change",initXl); |
| 219 | function initXl(){ | 221 | function initXl(){ |
| @@ -238,94 +240,100 @@ | @@ -238,94 +240,100 @@ | ||
| 238 | } | 240 | } |
| 239 | initPinYinSelect2('#xlbm',data,''); | 241 | initPinYinSelect2('#xlbm',data,''); |
| 240 | fage=true; | 242 | fage=true; |
| 243 | + selectNbbm(); | ||
| 244 | + selectJsy(); | ||
| 241 | } | 245 | } |
| 242 | $("#date").datetimepicker({ | 246 | $("#date").datetimepicker({ |
| 243 | format : 'YYYY-MM-DD', | 247 | format : 'YYYY-MM-DD', |
| 244 | locale : 'zh-cn' | 248 | locale : 'zh-cn' |
| 245 | }); | 249 | }); |
| 246 | 250 | ||
| 247 | - $('#nbbm').select2({ | ||
| 248 | - placeholder: '搜索车辆...', | ||
| 249 | - ajax: { | ||
| 250 | - url: '/report/carList', | ||
| 251 | - dataType: 'json', | ||
| 252 | - delay: 150, | ||
| 253 | - data: function(params){ | ||
| 254 | - return{nbbm: params.term, | ||
| 255 | - gsbm:$('#ssgsdm').val(), | ||
| 256 | - fgsbm:$('#fgsdm').val(), | ||
| 257 | - xlbm:$('#xlbm').val()}; | 251 | + function selectNbbm(){ |
| 252 | + $('#nbbm').select2({ | ||
| 253 | + placeholder: '搜索车辆...', | ||
| 254 | + ajax: { | ||
| 255 | + url: '/report/carList', | ||
| 256 | + dataType: 'json', | ||
| 257 | + delay: 150, | ||
| 258 | + data: function(params){ | ||
| 259 | + return{nbbm: params.term, | ||
| 260 | + gsbm:$('#ssgsdm').val(), | ||
| 261 | + fgsbm:$('#fgsdm').val(), | ||
| 262 | + xlbm:$('#xlbm').val()}; | ||
| 263 | + }, | ||
| 264 | + processResults: function (data) { | ||
| 265 | + return { | ||
| 266 | + results: data | ||
| 267 | + }; | ||
| 268 | + }, | ||
| 269 | + cache: true | ||
| 258 | }, | 270 | }, |
| 259 | - processResults: function (data) { | ||
| 260 | - return { | ||
| 261 | - results: data | ||
| 262 | - }; | ||
| 263 | - }, | ||
| 264 | - cache: true | ||
| 265 | - }, | ||
| 266 | - templateResult: function(repo){ | ||
| 267 | - if (repo.loading) return repo.text; | ||
| 268 | - var h = '<span>'+repo.text+'</span>'; | ||
| 269 | - h += (repo.lineName?' <span class="select2-desc">'+repo.lineName+'</span>':''); | ||
| 270 | - return h; | ||
| 271 | - }, | ||
| 272 | - escapeMarkup: function (markup) { return markup; }, | ||
| 273 | - minimumInputLength: 1, | ||
| 274 | - templateSelection: function(repo){ | ||
| 275 | - return repo.text; | ||
| 276 | - }, | ||
| 277 | - language: { | ||
| 278 | - noResults: function(){ | ||
| 279 | - return '<span style="color:red;font-size: 12px;">没有搜索到车辆!</span>'; | ||
| 280 | - }, | ||
| 281 | - inputTooShort : function(e) { | ||
| 282 | - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入自编号搜索车辆</span>'; | ||
| 283 | - }, | ||
| 284 | - searching : function() { | ||
| 285 | - return '<span style="color:gray;font-size: 12px;"> 正在搜索车辆...</span>'; | ||
| 286 | - } | ||
| 287 | - } | ||
| 288 | - }) | 271 | + templateResult: function(repo){ |
| 272 | + if (repo.loading) return repo.text; | ||
| 273 | + var h = '<span>'+repo.text+'</span>'; | ||
| 274 | + h += (repo.lineName?' <span class="select2-desc">'+repo.lineName+'</span>':''); | ||
| 275 | + return h; | ||
| 276 | + }, | ||
| 277 | + escapeMarkup: function (markup) { return markup; }, | ||
| 278 | + minimumInputLength: 1, | ||
| 279 | + templateSelection: function(repo){ | ||
| 280 | + return repo.text; | ||
| 281 | + }, | ||
| 282 | + language: { | ||
| 283 | + noResults: function(){ | ||
| 284 | + return '<span style="color:red;font-size: 12px;">没有搜索到车辆!</span>'; | ||
| 285 | + }, | ||
| 286 | + inputTooShort : function(e) { | ||
| 287 | + return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入自编号搜索车辆</span>'; | ||
| 288 | + }, | ||
| 289 | + searching : function() { | ||
| 290 | + return '<span style="color:gray;font-size: 12px;"> 正在搜索车辆...</span>'; | ||
| 291 | + } | ||
| 292 | + } | ||
| 293 | + }) | ||
| 294 | + } | ||
| 289 | 295 | ||
| 290 | 296 | ||
| 291 | - $('#jsy').select2({ | ||
| 292 | - placeholder: '搜索驾驶员...', | ||
| 293 | - ajax: { | ||
| 294 | - url: '/personnel/sreachPersonnel', | ||
| 295 | - dataType: 'json', | ||
| 296 | - delay: 150, | ||
| 297 | - data: function(params){ | ||
| 298 | - return{jobCode: params.term}; | 297 | + function selectJsy(){ |
| 298 | + $('#jsy').select2({ | ||
| 299 | + placeholder: '搜索驾驶员...', | ||
| 300 | + ajax: { | ||
| 301 | + url: '/report/userList', | ||
| 302 | + dataType: 'json', | ||
| 303 | + delay: 150, | ||
| 304 | + data: function(params){ | ||
| 305 | + return{jsy: params.term,gsbm:$('#ssgsdm').val()}; | ||
| 306 | + }, | ||
| 307 | + processResults: function (data) { | ||
| 308 | + return { | ||
| 309 | + results: data | ||
| 310 | + }; | ||
| 311 | + }, | ||
| 312 | + cache: true | ||
| 299 | }, | 313 | }, |
| 300 | - processResults: function (data) { | ||
| 301 | - return { | ||
| 302 | - results: data | ||
| 303 | - }; | ||
| 304 | - }, | ||
| 305 | - cache: true | ||
| 306 | - }, | ||
| 307 | - templateResult: function(repo){ | ||
| 308 | - if (repo.loading) return repo.text; | ||
| 309 | - var h = '<span>'+repo.text+'</span>'; | ||
| 310 | - return h; | ||
| 311 | - }, | ||
| 312 | - escapeMarkup: function (markup) { return markup; }, | ||
| 313 | - minimumInputLength: 1, | ||
| 314 | - templateSelection: function(repo){ | ||
| 315 | - return repo.text; | ||
| 316 | - }, | ||
| 317 | - language: { | ||
| 318 | - noResults: function(){ | ||
| 319 | - return '<span style="color:red;font-size: 12px;">没有搜索到驾驶员!</span>'; | ||
| 320 | - }, | ||
| 321 | - inputTooShort : function(e) { | ||
| 322 | - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入工号搜索驾驶员</span>'; | ||
| 323 | - }, | ||
| 324 | - searching : function() { | ||
| 325 | - return '<span style="color:gray;font-size: 12px;"> 正在搜索驾驶员...</span>'; | ||
| 326 | - } | ||
| 327 | - } | ||
| 328 | - }); | 314 | + templateResult: function(repo){ |
| 315 | + if (repo.loading) return repo.text; | ||
| 316 | + var h = '<span>'+repo.text+'</span>'; | ||
| 317 | + return h; | ||
| 318 | + }, | ||
| 319 | + escapeMarkup: function (markup) { return markup; }, | ||
| 320 | + minimumInputLength: 1, | ||
| 321 | + templateSelection: function(repo){ | ||
| 322 | + return repo.text; | ||
| 323 | + }, | ||
| 324 | + language: { | ||
| 325 | + noResults: function(){ | ||
| 326 | + return '<span style="color:red;font-size: 12px;">没有搜索到驾驶员!</span>'; | ||
| 327 | + }, | ||
| 328 | + inputTooShort : function(e) { | ||
| 329 | + return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入工号搜索驾驶员</span>'; | ||
| 330 | + }, | ||
| 331 | + searching : function() { | ||
| 332 | + return '<span style="color:gray;font-size: 12px;"> 正在搜索驾驶员...</span>'; | ||
| 333 | + } | ||
| 334 | + } | ||
| 335 | + }); | ||
| 336 | + } | ||
| 329 | $(function(){ | 337 | $(function(){ |
| 330 | /* $get('/role/all',null,function(result){ | 338 | /* $get('/role/all',null,function(result){ |
| 331 | $.each(result,function(i,obj){ | 339 | $.each(result,function(i,obj){ |
src/main/resources/static/pages/oil/checkJyryList.html
| @@ -10,7 +10,7 @@ | @@ -10,7 +10,7 @@ | ||
| 10 | <li><span class="active">加油人员不符</span></li> | 10 | <li><span class="active">加油人员不符</span></li> |
| 11 | </ul> | 11 | </ul> |
| 12 | 12 | ||
| 13 | -<div class="row"> | 13 | +<div class="row" id="ll_jyry_list"> |
| 14 | <div class="col-md-12"> | 14 | <div class="col-md-12"> |
| 15 | <!-- Begin: life time stats --> | 15 | <!-- Begin: life time stats --> |
| 16 | <div class="portlet light portlet-fit portlet-datatable bordered"> | 16 | <div class="portlet light portlet-fit portlet-datatable bordered"> |
| @@ -114,7 +114,7 @@ | @@ -114,7 +114,7 @@ | ||
| 114 | {{each list as obj i}} | 114 | {{each list as obj i}} |
| 115 | <tr> | 115 | <tr> |
| 116 | <td style="vertical-align: middle;"> | 116 | <td style="vertical-align: middle;"> |
| 117 | - <input type="radio" name="id" class="group-checkable icheck" data-id="{{obj.id}}"> | 117 | + <input type="checkbox" name="id" class="group-checkable icheck" data-id="{{obj.id}}"> |
| 118 | </td> | 118 | </td> |
| 119 | <td>{{obj.yyrq}}</td> | 119 | <td>{{obj.yyrq}}</td> |
| 120 | <td> | 120 | <td> |
| @@ -127,9 +127,9 @@ | @@ -127,9 +127,9 @@ | ||
| 127 | {{obj.nbbm}} | 127 | {{obj.nbbm}} |
| 128 | </td> | 128 | </td> |
| 129 | <td> | 129 | <td> |
| 130 | -<select class="form-control" disabled="disabled" name="jsy" id="jsy{{obj.id}}" > | ||
| 131 | - <option selected="selected" value="{{obj.jsy}}">{{obj.jsy}}<option> | ||
| 132 | -</select> | 130 | + <select class="form-control in_carpark_jsy" name="jsy" id="jsy{{obj.id}}" data-id="{{obj.id}}"> |
| 131 | + <option selected="selected" value="{{obj.jsy}}">{{obj.jsy}}<option> | ||
| 132 | + </select> | ||
| 133 | </td> | 133 | </td> |
| 134 | <td> | 134 | <td> |
| 135 | {{obj.jzl}} | 135 | {{obj.jzl}} |
| @@ -137,7 +137,7 @@ | @@ -137,7 +137,7 @@ | ||
| 137 | <td>{{obj.stationid}}</td> | 137 | <td>{{obj.stationid}}</td> |
| 138 | <td>{{obj.nylx}}</td> | 138 | <td>{{obj.nylx}}</td> |
| 139 | <td>{{obj.jyggh}}</td> | 139 | <td>{{obj.jyggh}}</td> |
| 140 | - <td>{{obj.yj}}</td> | 140 | + <td></td> |
| 141 | <td>{{obj.ldgh}}</td> | 141 | <td>{{obj.ldgh}}</td> |
| 142 | <td> | 142 | <td> |
| 143 | {{obj.bz}} | 143 | {{obj.bz}} |
| @@ -150,37 +150,42 @@ | @@ -150,37 +150,42 @@ | ||
| 150 | {{/each}} | 150 | {{/each}} |
| 151 | {{if list.length == 0}} | 151 | {{if list.length == 0}} |
| 152 | <tr> | 152 | <tr> |
| 153 | - <td colspan=13><h6 class="muted">没有找到相关数据</h6></td> | 153 | + <td colspan=14><h6 class="muted">没有找到相关数据</h6></td> |
| 154 | </tr> | 154 | </tr> |
| 155 | {{/if}} | 155 | {{/if}} |
| 156 | </script> | 156 | </script> |
| 157 | <script> | 157 | <script> |
| 158 | $(function(){ | 158 | $(function(){ |
| 159 | $("#saveButton").on('click',function(){ | 159 | $("#saveButton").on('click',function(){ |
| 160 | - var id = $('input.icheck:checked').data('id'); | ||
| 161 | - if(typeof(id)=='undefined'){ | ||
| 162 | - layer.msg("请选择一行数据"); | ||
| 163 | - }else{ | ||
| 164 | - var jsy=$("#jsy"+id).val(); | ||
| 165 | - var params = {}; | ||
| 166 | - params['jsy']=jsy; | ||
| 167 | - params['id']=id; | ||
| 168 | - $get('/ylxxb/check', params, function(){ | ||
| 169 | - var cells = $('tr.filter')[0].cells | ||
| 170 | - ,params1 = {} | ||
| 171 | - ,name; | ||
| 172 | - $.each(cells, function(i, cell){ | ||
| 173 | - var items = $('input,select', cell); | ||
| 174 | - for(var j = 0, item; item = items[j++];){ | ||
| 175 | - name = $(item).attr('name'); | ||
| 176 | - if(name){ | ||
| 177 | - params1[name] = $(item).val(); | ||
| 178 | - } | ||
| 179 | - } | ||
| 180 | - }); | ||
| 181 | - jsDoQuery(params1,true); | ||
| 182 | - }); | ||
| 183 | - } | 160 | + var ylArray = []; |
| 161 | + $('input.icheck').each(function(){ | ||
| 162 | + var map = {}; | ||
| 163 | + var id=$(this).data('id'); | ||
| 164 | + var jsy=$('.in_carpark_jsy[data-id='+id+']', '#ll_jyry_list').val(); | ||
| 165 | + map['id']=id; | ||
| 166 | + map['jsy']=jsy; | ||
| 167 | + ylArray.push(map); | ||
| 168 | + }) | ||
| 169 | + var params = {}; | ||
| 170 | + params['ylbList']=JSON.stringify(ylArray); | ||
| 171 | + console.log(params); | ||
| 172 | + var i = layer.load(2); | ||
| 173 | + $post('/ylxxb/check', params, function(){ | ||
| 174 | + layer.close(i); | ||
| 175 | + var cells = $('tr.filter')[0].cells | ||
| 176 | + ,params1 = {} | ||
| 177 | + ,name; | ||
| 178 | + $.each(cells, function(i, cell){ | ||
| 179 | + var items = $('input,select', cell); | ||
| 180 | + for(var j = 0, item; item = items[j++];){ | ||
| 181 | + name = $(item).attr('name'); | ||
| 182 | + if(name){ | ||
| 183 | + params1[name] = $(item).val(); | ||
| 184 | + } | ||
| 185 | + } | ||
| 186 | + }); | ||
| 187 | + jsDoQuery(params1,true); | ||
| 188 | + }) | ||
| 184 | }) | 189 | }) |
| 185 | 190 | ||
| 186 | $("#yyrq").datetimepicker({ | 191 | $("#yyrq").datetimepicker({ |
| @@ -189,7 +194,7 @@ $(function(){ | @@ -189,7 +194,7 @@ $(function(){ | ||
| 189 | }); | 194 | }); |
| 190 | var page = 0, initPagination; | 195 | var page = 0, initPagination; |
| 191 | var icheckOptions = { | 196 | var icheckOptions = { |
| 192 | - radioClass: 'iradio_square-blue icheck', | 197 | + radioClass: 'icheckbox_flat-blue icheck', |
| 193 | increaseArea: '20%' | 198 | increaseArea: '20%' |
| 194 | } | 199 | } |
| 195 | //重置 | 200 | //重置 |
| @@ -308,9 +313,8 @@ $(function(){ | @@ -308,9 +313,8 @@ $(function(){ | ||
| 308 | obj.yyrq = moment(obj.yyrq).format("YYYY-MM-DD"); | 313 | obj.yyrq = moment(obj.yyrq).format("YYYY-MM-DD"); |
| 309 | }); | 314 | }); |
| 310 | var bodyHtm = template('check_list_temp', {list: data.dataList}); | 315 | var bodyHtm = template('check_list_temp', {list: data.dataList}); |
| 311 | - $('#datatable_check tbody').html(bodyHtm) | ||
| 312 | - .find('.icheck').iCheck(icheckOptions) | ||
| 313 | - .on('ifChanged', iCheckChange); | 316 | + $('#datatable_check tbody').html(bodyHtm); |
| 317 | + iCheckChange(); | ||
| 314 | if(pagination && data.dataList.length > 0){ | 318 | if(pagination && data.dataList.length > 0){ |
| 315 | //重新分页 | 319 | //重新分页 |
| 316 | initPagination = true; | 320 | initPagination = true; |
| @@ -327,14 +331,15 @@ $(function(){ | @@ -327,14 +331,15 @@ $(function(){ | ||
| 327 | else | 331 | else |
| 328 | tr.removeClass('row-active'); | 332 | tr.removeClass('row-active'); |
| 329 | 333 | ||
| 330 | - var id = $('input.icheck:checked').data('id'); | ||
| 331 | - $("#jsy"+id).attr("disabled", false); | ||
| 332 | - startOptJsy(id); | ||
| 333 | - /* | ||
| 334 | - if($('#datatable_resource input.icheck:checked').length == 1) | 334 | + $('input.icheck').each(function(){ |
| 335 | + var id=$(this).data('id'); | ||
| 336 | + startOptJsy(id); | ||
| 337 | + }) | ||
| 338 | + | ||
| 339 | + /* if($('#datatable_resource input.icheck:checked').length == 1) | ||
| 335 | $('#removeButton').removeAttr('disabled'); | 340 | $('#removeButton').removeAttr('disabled'); |
| 336 | else | 341 | else |
| 337 | - $('#removeButton').attr('disabled', 'disabled'); */ | 342 | + $('#removeButton').attr('disabled', 'disabled'); */ |
| 338 | } | 343 | } |
| 339 | 344 | ||
| 340 | function showPagination(data){ | 345 | function showPagination(data){ |
| @@ -379,11 +384,12 @@ $(function(){ | @@ -379,11 +384,12 @@ $(function(){ | ||
| 379 | $('#jsy'+id).select2({ | 384 | $('#jsy'+id).select2({ |
| 380 | placeholder: '搜索驾驶员...', | 385 | placeholder: '搜索驾驶员...', |
| 381 | ajax: { | 386 | ajax: { |
| 382 | - url: '/personnel/sreachPersonnel', | 387 | + url: '/report/userList', |
| 383 | dataType: 'json', | 388 | dataType: 'json', |
| 384 | delay: 150, | 389 | delay: 150, |
| 385 | data: function(params){ | 390 | data: function(params){ |
| 386 | - return{jobCode: params.term}; | 391 | + return{jsy: params.term, |
| 392 | + gsbm:$('#jyryListGsdmId').val()}; | ||
| 387 | }, | 393 | }, |
| 388 | processResults: function (data) { | 394 | processResults: function (data) { |
| 389 | return { | 395 | return { |
src/main/resources/static/pages/oil/cylAdd.html
| @@ -63,7 +63,7 @@ | @@ -63,7 +63,7 @@ | ||
| 63 | <div class="row"> | 63 | <div class="row"> |
| 64 | <div class="col-md-offset-3 col-md-4"> | 64 | <div class="col-md-offset-3 col-md-4"> |
| 65 | <button type="submit" class="btn green" ><i class="fa fa-check"></i> 提交</button> | 65 | <button type="submit" class="btn green" ><i class="fa fa-check"></i> 提交</button> |
| 66 | - <a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> 取消</a> | 66 | + <a type="button" class="btn default" href="cylList.html" data-pjax><i class="fa fa-times"></i> 取消</a> |
| 67 | </div> | 67 | </div> |
| 68 | </div> | 68 | </div> |
| 69 | </div> | 69 | </div> |
src/main/resources/static/pages/oil/jyglList.html
| @@ -12,7 +12,7 @@ | @@ -12,7 +12,7 @@ | ||
| 12 | <li><span class="active">场外加油管理</span></li> | 12 | <li><span class="active">场外加油管理</span></li> |
| 13 | </ul> | 13 | </ul> |
| 14 | 14 | ||
| 15 | -<div class="row"> | 15 | +<div class="row" id="ll_jygl_list"> |
| 16 | <div class="col-md-12"> | 16 | <div class="col-md-12"> |
| 17 | <!-- Begin: life time stats --> | 17 | <!-- Begin: life time stats --> |
| 18 | <div class="portlet light portlet-fit portlet-datatable bordered"> | 18 | <div class="portlet light portlet-fit portlet-datatable bordered"> |
| @@ -61,15 +61,15 @@ | @@ -61,15 +61,15 @@ | ||
| 61 | <th width="10%">公司</th> | 61 | <th width="10%">公司</th> |
| 62 | <th width="10%">分公司</th> | 62 | <th width="10%">分公司</th> |
| 63 | <th width="8%">车辆</th> | 63 | <th width="8%">车辆</th> |
| 64 | - <th width="8%">驾驶员</th> | ||
| 65 | - <th width="3%">加注量</th> | ||
| 66 | - <th width="3%">加油站</th> | 64 | + <th width="14%">驾驶员</th> |
| 65 | + <th width="5%">加注量</th> | ||
| 66 | + <th width="4%">加油站</th> | ||
| 67 | <th width="3%">加油类型</th> | 67 | <th width="3%">加油类型</th> |
| 68 | <th width="5%">加油工工号</th> | 68 | <th width="5%">加油工工号</th> |
| 69 | <th width="3%">油价</th> | 69 | <th width="3%">油价</th> |
| 70 | <th width="4%">路单工号</th> | 70 | <th width="4%">路单工号</th> |
| 71 | <th width="4%">备注</th> | 71 | <th width="4%">备注</th> |
| 72 | - <th width="19%">操作</th> | 72 | + <th width="10%">操作</th> |
| 73 | </tr> | 73 | </tr> |
| 74 | <tr role="row" class="filter"> | 74 | <tr role="row" class="filter"> |
| 75 | <td></td> | 75 | <td></td> |
| @@ -96,9 +96,6 @@ | @@ -96,9 +96,6 @@ | ||
| 96 | <td> | 96 | <td> |
| 97 | <button class="btn btn-sm green btn-outline filter-submit margin-bottom" > | 97 | <button class="btn btn-sm green btn-outline filter-submit margin-bottom" > |
| 98 | <i class="fa fa-search"></i> 搜索</button> | 98 | <i class="fa fa-search"></i> 搜索</button> |
| 99 | - | ||
| 100 | - <button class="btn btn-sm red btn-outline filter-cancel"> | ||
| 101 | - <i class="fa fa-times"></i> 重置</button> | ||
| 102 | </td> | 99 | </td> |
| 103 | </tr> | 100 | </tr> |
| 104 | </thead> | 101 | </thead> |
| @@ -117,7 +114,8 @@ | @@ -117,7 +114,8 @@ | ||
| 117 | {{each list as obj i}} | 114 | {{each list as obj i}} |
| 118 | <tr> | 115 | <tr> |
| 119 | <td style="vertical-align: middle;"> | 116 | <td style="vertical-align: middle;"> |
| 120 | - <input type="radio" name="id" class="group-checkable icheck" data-id="{{obj.nbbm}}"> | 117 | + <input type="checkbox" name="id" class="group-checkable icheck" data-id="{{obj.nbbm}}"> |
| 118 | + <input type="hidden" value="{{obj.id}}" class="in_carpark_id" data-id="{{obj.nbbm}}"> | ||
| 121 | </td> | 119 | </td> |
| 122 | <td>{{obj.yyrq}}</td> | 120 | <td>{{obj.yyrq}}</td> |
| 123 | <td> | 121 | <td> |
| @@ -130,24 +128,39 @@ | @@ -130,24 +128,39 @@ | ||
| 130 | {{obj.nbbm}} | 128 | {{obj.nbbm}} |
| 131 | </td> | 129 | </td> |
| 132 | <td> | 130 | <td> |
| 133 | -<!--<select class="form-control" disabled="disabled" name="jsy" id="jsy{{obj.nbbm}}" > | ||
| 134 | - <option selected="selected" value="{{obj.jsy}}">{{obj.jsy}}<option> | ||
| 135 | -</select>--> | ||
| 136 | - {{obj.jsy}} | 131 | + <select class="form-control in_carpark_jsy" name="jsy" id="jsy{{obj.id}}" data-id="{{obj.id}}"> |
| 132 | + <option selected="selected" value="{{obj.jsy}}">{{obj.jsy}}<option> | ||
| 133 | + </select> | ||
| 137 | </td> | 134 | </td> |
| 138 | <td> | 135 | <td> |
| 139 | - {{obj.jzl}} | 136 | + |
| 137 | + <input data-id="{{obj.id}}" href="javascript:;" class="in_carpark_jzl" | ||
| 138 | + type="text" value="{{obj.jzl}}" style=" width:45px" | ||
| 139 | +onkeyup="this.value=this.value.replace(/[^(\d||/.)]/g,'').replace('.','$#$').replace(/\./g,'').replace('$#$','.')" | ||
| 140 | + onafterpaste="this.value=this.value.replace(/[^(\d||/.)]/g,'').replace('.','$#$').replace(/\./g,'').replace('$#$','.')"> | ||
| 141 | + </td> | ||
| 142 | + <td> | ||
| 143 | + <input data-id="{{obj.id}}" href="javascript:;" class="in_carpark_stationid" | ||
| 144 | + type="text" value="{{obj.stationid}}" style=" width:45px" /> | ||
| 145 | + </td> | ||
| 146 | + <td> | ||
| 147 | + <select data-id="{{obj.id}}" class="in_carpark_nylx" style=" width:80px" > | ||
| 148 | + <option value='0' {{if obj.nylx==0}} selected = 'selected' {{/if}}>0号柴油</option> | ||
| 149 | + <option value='1' {{if obj.nylx==1}} selected = 'selected' {{/if}}>负10号柴油</option> | ||
| 150 | + </select> | ||
| 151 | + </td> | ||
| 152 | + <td> | ||
| 153 | + <input data-id="{{obj.id}}" href="javascript:;" class="in_carpark_jyggh" | ||
| 154 | + type="text" value="{{obj.jyggh}}" style=" width:45px" /> | ||
| 140 | </td> | 155 | </td> |
| 141 | - <td>{{obj.stationid}}</td> | ||
| 142 | - <td>{{obj.nylx}}</td> | ||
| 143 | - <td>{{obj.jyggh}}</td> | ||
| 144 | - <td>{{obj.yj}}</td> | 156 | + <td></td> |
| 145 | <td>{{obj.ldgh}}</td> | 157 | <td>{{obj.ldgh}}</td> |
| 146 | <td> | 158 | <td> |
| 147 | - {{obj.bz}} | 159 | +<input data-id="{{obj.id}}" href="javascript:;" class="in_carpark_bz" |
| 160 | + type="text" value="{{obj.bz}}" style=" width:45px" /> | ||
| 148 | </td> | 161 | </td> |
| 149 | <td> | 162 | <td> |
| 150 | - <a class="btn btn-sm blue btn-outline" onclick="editCyjy('{{obj.nbbm}}')" data-pjax><i class="fa fa-edit"></i> 编辑</a> | 163 | + <!--<a class="btn btn-sm blue btn-outline" onclick="editCyjy('{{obj.nbbm}}')" data-pjax><i class="fa fa-edit"></i> 编辑</a>--> |
| 151 | </td> | 164 | </td> |
| 152 | </tr> | 165 | </tr> |
| 153 | {{/each}} | 166 | {{/each}} |
| @@ -160,33 +173,50 @@ | @@ -160,33 +173,50 @@ | ||
| 160 | <script> | 173 | <script> |
| 161 | $(function(){ | 174 | $(function(){ |
| 162 | $("#saveButton").on('click',function(){ | 175 | $("#saveButton").on('click',function(){ |
| 163 | - var id = $('input.icheck:checked').data('id'); | ||
| 164 | - if(typeof(id)=='undefined'){ | ||
| 165 | - layer.msg("请选择一行数据"); | ||
| 166 | - }else{ | ||
| 167 | - var jsy=$("#jsy"+id).val(); | ||
| 168 | - var params = {}; | ||
| 169 | - params['jsy']=jsy; | ||
| 170 | - params['id']=id; | ||
| 171 | - $get('/ylxxb/check', params, function(){ | ||
| 172 | - if($("#rq").val()!=""){ | ||
| 173 | - var cells = $('tr.filter')[0].cells | ||
| 174 | - ,params = {} | ||
| 175 | - ,name; | ||
| 176 | - $.each(cells, function(i, cell){ | ||
| 177 | - var items = $('input,select', cell); | ||
| 178 | - for(var j = 0, item; item = items[j++];){ | ||
| 179 | - name = $(item).attr('name'); | ||
| 180 | - if(name){ | ||
| 181 | - params[name] = $(item).val(); | ||
| 182 | - } | ||
| 183 | - } | ||
| 184 | - }); | ||
| 185 | - jsDoQuery(params,true); | ||
| 186 | - } | ||
| 187 | - | ||
| 188 | - }); | ||
| 189 | - } | 176 | + var ylArray = []; |
| 177 | + $('input.icheck').each(function(){ | ||
| 178 | + var map = {}; | ||
| 179 | + var nbbm=$(this).data('id'); | ||
| 180 | + var id=$('.in_carpark_id[data-id='+nbbm+']', '#ll_jygl_list').val(); | ||
| 181 | + var jsy=$('.in_carpark_jsy[data-id='+nbbm+']', '#ll_jygl_list').val(); | ||
| 182 | + var jzl=$('.in_carpark_jzl[data-id='+nbbm+']','#ll_jygl_list').val(); | ||
| 183 | + var stationid=$('.in_carpark_stationid[data-id='+nbbm+']','#ll_jygl_list').val(); | ||
| 184 | + var nylx=$('.in_carpark_nylx[data-id='+nbbm+']','#ll_jygl_list').val(); | ||
| 185 | + var jyggh=$('.in_carpark_jyggh[data-id='+nbbm+']','#ll_jygl_list').val(); | ||
| 186 | + var bz=$('.in_carpark_bz[data-id='+nbbm+']','#ll_jygl_list').val(); | ||
| 187 | + map['nbbm']=nbbm; | ||
| 188 | + map['id']=id; | ||
| 189 | + map['jsy']=jsy; | ||
| 190 | + map['jzl']=jzl; | ||
| 191 | + map['stationid']=stationid; | ||
| 192 | + map['nylx']=nylx; | ||
| 193 | + map['jyggh']=jyggh; | ||
| 194 | + map['bz']=bz; | ||
| 195 | + ylArray.push(map); | ||
| 196 | + }) | ||
| 197 | + var params = {}; | ||
| 198 | + params['ylbList']=JSON.stringify(ylArray); | ||
| 199 | + params['gsbm']=$("#jyglListGsdmId").val(); | ||
| 200 | + params['fgsbm']=$("#jyglListFgsdmId").val(); | ||
| 201 | + params['rq']=$("#rq").val(); | ||
| 202 | + console.log(params); | ||
| 203 | + var i = layer.load(2); | ||
| 204 | + $post('/cwjy/savejzl', params, function(){ | ||
| 205 | + layer.close(i); | ||
| 206 | + var cells = $('tr.filter')[0].cells | ||
| 207 | + ,params1 = {} | ||
| 208 | + ,name; | ||
| 209 | + $.each(cells, function(i, cell){ | ||
| 210 | + var items = $('input,select', cell); | ||
| 211 | + for(var j = 0, item; item = items[j++];){ | ||
| 212 | + name = $(item).attr('name'); | ||
| 213 | + if(name){ | ||
| 214 | + params1[name] = $(item).val(); | ||
| 215 | + } | ||
| 216 | + } | ||
| 217 | + }); | ||
| 218 | + jsDoQuery(params1,true); | ||
| 219 | + }) | ||
| 190 | }) | 220 | }) |
| 191 | 221 | ||
| 192 | $("#rq").datetimepicker({ | 222 | $("#rq").datetimepicker({ |
| @@ -195,7 +225,7 @@ $(function(){ | @@ -195,7 +225,7 @@ $(function(){ | ||
| 195 | }); | 225 | }); |
| 196 | var page = 0, initPagination; | 226 | var page = 0, initPagination; |
| 197 | var icheckOptions = { | 227 | var icheckOptions = { |
| 198 | - radioClass: 'iradio_square-blue icheck', | 228 | + radioClass: 'icheckbox_flat-blue', |
| 199 | increaseArea: '20%' | 229 | increaseArea: '20%' |
| 200 | } | 230 | } |
| 201 | 231 | ||
| @@ -306,19 +336,20 @@ $(function(){ | @@ -306,19 +336,20 @@ $(function(){ | ||
| 306 | params['fgsdm_in']=fgsqx1; | 336 | params['fgsdm_in']=fgsqx1; |
| 307 | } | 337 | } |
| 308 | } */ | 338 | } */ |
| 309 | - $get('/cwjy/pagequery' ,params, function(data){ | ||
| 310 | - $.each(data.dataList, function(i, obj) { | 339 | + $get('/cwjy/queryList' ,params, function(data){ |
| 340 | + $.each(data, function(i, obj) { | ||
| 311 | obj.yyrq = $("#rq").val(); | 341 | obj.yyrq = $("#rq").val(); |
| 312 | }); | 342 | }); |
| 313 | - var bodyHtm = template('jygl_list_temp', {list: data.dataList}); | ||
| 314 | - $('#datatable_cwjy tbody').html(bodyHtm) | ||
| 315 | - .find('.icheck').iCheck(icheckOptions) | ||
| 316 | - .on('ifChanged', iCheckChange); | ||
| 317 | - if(pagination && data.dataList.length > 0){ | ||
| 318 | - //重新分页 | ||
| 319 | - initPagination = true; | ||
| 320 | - showPagination(data); | ||
| 321 | - } | 343 | + console.log(data) |
| 344 | + var bodyHtm = template('jygl_list_temp', {list: data}); | ||
| 345 | + $('#datatable_cwjy tbody').html(bodyHtm); | ||
| 346 | +// .find('.icheck').iCheck(icheckOptions) | ||
| 347 | +// .on('ifChanged', iCheckChange); | ||
| 348 | +// if(pagination && data.dataList.length > 0){ | ||
| 349 | +// //重新分页 | ||
| 350 | +// initPagination = true; | ||
| 351 | +// showPagination(data); | ||
| 352 | +// } | ||
| 322 | layer.close(i); | 353 | layer.close(i); |
| 323 | }); | 354 | }); |
| 324 | } | 355 | } |
src/main/resources/static/pages/oil/jyszAdd.html
| @@ -21,14 +21,12 @@ | @@ -21,14 +21,12 @@ | ||
| 21 | <label class="col-md-3 control-label">公司</label> | 21 | <label class="col-md-3 control-label">公司</label> |
| 22 | <div class="col-md-4"> | 22 | <div class="col-md-4"> |
| 23 | <select class="form-control" name="gsdm" id="gsdm" ></select> | 23 | <select class="form-control" name="gsdm" id="gsdm" ></select> |
| 24 | - <span class="help-block"> 公司</span> | ||
| 25 | </div> | 24 | </div> |
| 26 | </div> | 25 | </div> |
| 27 | <div class="form-group" id="fgsdmDivId"> | 26 | <div class="form-group" id="fgsdmDivId"> |
| 28 | <label class="col-md-3 control-label">分公司</label> | 27 | <label class="col-md-3 control-label">分公司</label> |
| 29 | <div class="col-md-4"> | 28 | <div class="col-md-4"> |
| 30 | <select class="form-control" name="fgsdm" id="fgsdm" ></select> | 29 | <select class="form-control" name="fgsdm" id="fgsdm" ></select> |
| 31 | - <span class="help-block"> 分公司</span> | ||
| 32 | </div> | 30 | </div> |
| 33 | </div> | 31 | </div> |
| 34 | <div class="form-group"> | 32 | <div class="form-group"> |