Commit 4935c9028871304b0eef8ba5a0f88633396eb45b

Authored by 潘钊
2 parents 2d6cdf9a 3a74f934

Merge branch 'minhang' of http://222.66.0.204:8090/panzhaov5/bsth_control into minhang

Showing 24 changed files with 873 additions and 3281 deletions

Too many changes to show.

To preserve performance only 24 of 36 files are displayed.

src/main/java/com/bsth/controller/oil/CwjyController.java
... ... @@ -2,6 +2,8 @@ package com.bsth.controller.oil;
2 2  
3 3  
4 4 import java.util.Date;
  5 +import java.util.HashMap;
  6 +import java.util.List;
5 7 import java.util.Map;
6 8  
7 9 import org.springframework.beans.factory.annotation.Autowired;
... ... @@ -31,9 +33,9 @@ public class CwjyController extends BaseController<Cwjy, Integer>{
31 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 39 map.put("curPage", map.get("page").toString());
38 40 map.put("pageData","10");
39 41 pagequery=service.Pagequery(map);
... ... @@ -56,9 +58,15 @@ public class CwjyController extends BaseController&lt;Cwjy, Integer&gt;{
56 58 * @throws
57 59 */
58 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 1 package com.bsth.controller.oil;
2 2  
  3 +import java.util.HashMap;
3 4 import java.util.Map;
4 5  
5 6 import org.springframework.beans.factory.annotation.Autowired;
... ... @@ -33,9 +34,15 @@ public class YlxxbController extends BaseController&lt;Ylxxb, Integer&gt;{
33 34 * @param map
34 35 * @return
35 36 */
36   - @RequestMapping(value = "/check",method = RequestMethod.GET)
  37 + @RequestMapping(value = "/check",method = RequestMethod.POST)
37 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 46 return list;
40 47 }
41 48 }
... ...
src/main/java/com/bsth/controller/report/ReportController.java
... ... @@ -108,4 +108,9 @@ public class ReportController {
108 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 731  
732 732 @Override
733 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 745 String sql="select t.schedule_date_str,"
735 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 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 752 + " GROUP BY r.schedule_date_str,r.xl_bm,r.xl_name,r.cl_zbh,r.j_gh,r.j_name) t"
741 753 + " left join (select * from bsth_c_ylb y where "
742 754 + " to_days(y.rq)=to_days('"+map.get("date").toString()+"') "
743 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 758 + " ) x"
747 759 + " on t.cl_zbh = x.nbbm ";
748 760  
749   - System.out.println(new Date());
750 761 List<Daily> list = jdbcTemplate.query(sql, new RowMapper<Daily>() {
751 762 @Override
752 763 public Daily mapRow(ResultSet arg0, int arg1) throws SQLException {
... ...
src/main/java/com/bsth/service/oil/CwjyService.java
1 1 package com.bsth.service.oil;
2 2  
3 3  
  4 +import java.util.List;
4 5 import java.util.Map;
5 6  
6 7 import com.bsth.entity.oil.Cwjy;
... ... @@ -9,8 +10,8 @@ import com.bsth.service.BaseService;
9 10 import com.bsth.util.PageObject;
10 11  
11 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 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 9 public interface YlxxbService extends BaseService<Ylxxb, Integer>{
10 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 6 import java.text.SimpleDateFormat;
7 7 import java.util.ArrayList;
8 8 import java.util.Arrays;
  9 +import java.util.Date;
9 10 import java.util.HashMap;
10 11 import java.util.List;
11 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 19 import org.springframework.beans.factory.annotation.Autowired;
14 20 import org.springframework.jdbc.core.JdbcTemplate;
15 21 import org.springframework.jdbc.core.RowMapper;
16 22 import org.springframework.stereotype.Service;
17 23  
  24 +import com.alibaba.fastjson.JSONArray;
  25 +import com.alibaba.fastjson.JSONObject;
18 26 import com.bsth.common.ResponseCode;
19 27 import com.bsth.entity.oil.Cwjy;
  28 +import com.bsth.entity.oil.Cyl;
20 29 import com.bsth.entity.oil.Ylxxb;
21 30 import com.bsth.repository.oil.CwjyRepository;
22 31 import com.bsth.repository.oil.YlxxbRepository;
... ... @@ -35,8 +44,8 @@ public class CwjyServiceImpl extends BaseServiceImpl&lt;Cwjy,Integer&gt; implements Cw
35 44  
36 45 @Autowired
37 46 JdbcTemplate jdbcTemplate;
38   -
39   - @SuppressWarnings("unchecked")
  47 + Logger logger = LoggerFactory.getLogger(this.getClass());
  48 + /*@SuppressWarnings("unchecked")
40 49 public PageObject<Ylxxb> Pagequery(Map<String, Object> map) {
41 50 int page=Integer.parseInt(map.get("page").toString());
42 51 SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
... ... @@ -129,7 +138,7 @@ public class CwjyServiceImpl extends BaseServiceImpl&lt;Cwjy,Integer&gt; implements Cw
129 138 return t;
130 139 }
131 140 });
132   - /*List<Object[]> list=repository.obtainCwjycl(rq,nbbm);
  141 + List<Object[]> list=repository.obtainCwjycl(rq,nbbm);
133 142 for (int i = 0; i < list.size(); i++) {
134 143 Ylxxb y=new Ylxxb();
135 144 y.setGsdm(list.get(i)[0]==null?"":list.get(i)[0].toString());
... ... @@ -148,13 +157,13 @@ public class CwjyServiceImpl extends BaseServiceImpl&lt;Cwjy,Integer&gt; implements Cw
148 157 e.printStackTrace();
149 158 }
150 159 yList.add(y);
151   - }*/
  160 + }
152 161 PageHelper pageHelper = new PageHelper(listsize, map);
153 162 pageHelper.getMap();
154 163 PageObject<Ylxxb> pageObject=pageHelper.getPageObject();
155 164 pageObject.setDataList(yList);
156 165 return pageObject;
157   - }
  166 + }*/
158 167  
159 168 @Override
160 169 public Ylxxb bynbbm(Map<String, Object> map) {
... ... @@ -188,28 +197,112 @@ public class CwjyServiceImpl extends BaseServiceImpl&lt;Cwjy,Integer&gt; implements Cw
188 197 return y;
189 198 }
190 199  
  200 + @Transactional
191 201 @Override
192   - public Map<String, Object> savejzl(Ylxxb t) {
  202 + public Map<String, Object> savejzl(Map<String, Object> maps) throws Exception {
193 203 // TODO Auto-generated method stub
194 204 Map<String, Object> map=new HashMap<String,Object>();
195 205 try {
196 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 256 map.put("status", ResponseCode.SUCCESS);
  257 +
207 258 } catch (Exception e) {
208 259 map.put("status", ResponseCode.ERROR);
209   - e.printStackTrace();
  260 + logger.error("save erro.", e);
  261 + throw e;
210 262 // TODO: handle exception
211 263 }
212 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&lt;Ylb,Integer&gt; implements YlbS
135 135 Ylb ylb=ylListBe.get(i);
136 136 if(map.get("clZbh").toString().equals(ylb.getNbbm())){
137 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&lt;Ylb,Integer&gt; implements YlbS
272 270 for (int i = 0; i < ylListBe.size(); i++) {
273 271 Ylb ylb = ylListBe.get(i);
274 272 if (map.get("clZbh").toString().equals(ylb.getNbbm())) {
275   - if(ylb.getJzyl()>0){
  273 + if(ylb.getJzyl()>=0){
276 274 t.setCzyl(ylb.getJzyl());
277 275 fage = false;
278 276 break;
... ... @@ -284,7 +282,7 @@ public class YlbServiceImpl extends BaseServiceImpl&lt;Ylb,Integer&gt; implements YlbS
284 282 for (int y = 0; y < clyList.size(); y++) {
285 283 Cyl cyl = clyList.get(y);
286 284 if (map.get("clZbh").toString().equals(cyl.getNbbm())) {
287   - if(cyl.getCyl()>0){
  285 + if(cyl.getCyl()>=0){
288 286 t.setCzyl(cyl.getCyl());
289 287 fage = false;
290 288 break;
... ... @@ -680,7 +678,7 @@ public class YlbServiceImpl extends BaseServiceImpl&lt;Ylb,Integer&gt; implements YlbS
680 678 if(map.get("nbbm_eq")!=null){
681 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 682 List<Cyl> cylList=cylRepository.obtainCyl(nbbm, gsbm);
685 683 List<Ylb> ylbList=repository.obtainYl(rq,gsbm,fgsbm,xlbm,nbbm,"nbbm");
686 684 List<Ylxxb> ylxxbList=ylxxbRepository.obtainYlxx(rq,0,gsbm);
... ... @@ -703,10 +701,15 @@ public class YlbServiceImpl extends BaseServiceImpl&lt;Ylb,Integer&gt; implements YlbS
703 701 t.setJsy(y1.getJsy());
704 702 t.setJzl(y1.getJzl());
705 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 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 713 t.setJcsx(1);
711 714 boolean status=true;
712 715 for (int j = 0; j < ylListBe.size(); j++) {
... ... @@ -734,10 +737,12 @@ public class YlbServiceImpl extends BaseServiceImpl&lt;Ylb,Integer&gt; implements YlbS
734 737 // double jzyl=Arith.add(t.getJzl(), t.getCzyl());
735 738 t.setJzyl(Arith.add(t.getJzl(), t.getCzyl()));
736 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 9 import java.util.List;
10 10 import java.util.Map;
11 11  
  12 +import javax.transaction.Transactional;
  13 +
  14 +import org.apache.commons.lang3.StringEscapeUtils;
12 15 import org.slf4j.Logger;
13 16 import org.slf4j.LoggerFactory;
14 17 import org.springframework.beans.factory.annotation.Autowired;
... ... @@ -16,6 +19,8 @@ import org.springframework.jdbc.core.JdbcTemplate;
16 19 import org.springframework.jdbc.core.RowMapper;
17 20 import org.springframework.stereotype.Service;
18 21  
  22 +import com.alibaba.fastjson.JSONArray;
  23 +import com.alibaba.fastjson.JSONObject;
19 24 import com.bsth.common.ResponseCode;
20 25 import com.bsth.entity.excep.Offline;
21 26 import com.bsth.entity.oil.Ylb;
... ... @@ -44,12 +49,27 @@ public class YlxxbServiceImpl extends BaseServiceImpl&lt;Ylxxb,Integer&gt; implements
44 49 String rq=map.get("yyrq").toString();
45 50 String gsdm=map.get("gsdm_like").toString();
46 51 String fgsdm=map.get("fgsdm_like").toString();
47   -
  52 + /*
48 53 String sql=" select x.*,y.jsy as ldgh,y.fgsdm as fgsdm from bsth_c_ylxxb x "
49 54 + " left join bsth_c_ylb y on x.nbbm = y.nbbm and x.jsy !=y.jsy "
50 55 + " where DATE_FORMAT(y.rq,'%Y-%m-%d')='"+rq+"' and y.ssgsdm='"+gsdm+"' "
51 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 74 //根具条件查询指定日期Ylxxb的数据
55 75 // List<Ylxxb> iterator=repository.checkYlxx(rq,gsdm);
... ... @@ -114,21 +134,33 @@ public class YlxxbServiceImpl extends BaseServiceImpl&lt;Ylxxb,Integer&gt; implements
114 134 pageObject.setDataList(list);
115 135 return pageObject;
116 136 }
117   -
  137 + @Transactional
118 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 140 Map<String, Object> newMap=new HashMap<String,Object>();
121 141 // TODO Auto-generated method stub
122 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 159 newMap.put("status", ResponseCode.SUCCESS);
129 160 }catch(Exception e){
130 161 newMap.put("status", ResponseCode.ERROR);
131 162 logger.error("save erro.", e);
  163 + throw e;
132 164 }
133 165 return newMap;
134 166 }
... ...
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
... ... @@ -1579,10 +1579,12 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
1579 1579 listSchedule.add(s);
1580 1580 //计算营运里程,空驶里程
1581 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 1586 ScheduleRealInfo t = new ScheduleRealInfo();
1585   - ChildTaskPlan childTaskPlan = it.next();
  1587 + ChildTaskPlan childTaskPlan = listit.get(j);
1586 1588 if (childTaskPlan.isDestroy()) {
1587 1589 t.setFcsjActual("");
1588 1590 t.setZdsjActual("");
... ...
src/main/java/com/bsth/service/report/ReportService.java
... ... @@ -38,4 +38,6 @@ public interface ReportService {
38 38 List<Map<String, Object>> lineList();
39 39  
40 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 221 if (!(scheduleRealInfo.getBcType().equals("in")
222 222 || scheduleRealInfo.getBcType().equals("out"))) {
223 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 248 }else{
235 249 ljbc++;
... ... @@ -327,37 +341,24 @@ public class CulateMileageServiceImpl implements CulateMileageService{
327 341 || scheduleRealInfo.getBcType().equals("out"))) {
328 342 Set<ChildTaskPlan> childTaskPlans = scheduleRealInfo.getcTasks();
329 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 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 362 if(item.equals("zgf")){
362 363 if(fcsj>=zgf1 && fcsj<=zgf2){
363 364 sjbc++;
... ... @@ -369,19 +370,47 @@ public class CulateMileageServiceImpl implements CulateMileageService{
369 370 }else{
370 371 sjbc++;
371 372 }
  373 +
372 374 }
373   -
374 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 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 25  
26 26 import com.bsth.data.BasicData;
27 27 import com.bsth.entity.Line;
  28 +import com.bsth.entity.Personnel;
28 29 import com.bsth.entity.StationRoute;
29 30 import com.bsth.entity.excep.ArrivalInfo;
30 31 import com.bsth.entity.oil.Ylb;
... ... @@ -1384,4 +1385,47 @@ public class ReportServiceImpl implements ReportService{
1384 1385 }
1385 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&lt;SchedulePlan, Long&gt; im
54 54 private BusinessRepository businessRepository;
55 55 @Autowired
56 56 private SchedulePlanRuleResultService schedulePlanRuleResultService;
  57 + @Autowired
  58 + private SchedulePlanRuleResultRepository schedulePlanRuleResultRepository;
57 59  
58 60 /** 日志记录器 */
59 61 private Logger logger = LoggerFactory.getLogger(SchedulePlanServiceImpl.class);
... ... @@ -87,6 +89,7 @@ public class SchedulePlanServiceImpl extends BServiceImpl&lt;SchedulePlan, Long&gt; im
87 89 // 设置gloable对象,在drl中通过别名使用
88 90 session.setGlobal("scheduleResult", scheduleResults_output);
89 91 session.setGlobal("log", logger); // 设置日志
  92 + session.setGlobal("schedulePlanRuleResultRepository", schedulePlanRuleResultRepository);
90 93  
91 94 // 载入数据
92 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 12 /** 结束计算日期 */
13 13 private DateTime toDate;
14 14  
  15 + /** 线路Id */
  16 + private String xlId;
  17 +
15 18 /** 排班计划实体 */
16 19 private SchedulePlan schedulePlan;
17 20  
... ... @@ -22,6 +25,7 @@ public class ScheduleCalcuParam_input {
22 25 this.toDate = new DateTime((schedulePlan.getScheduleToTime()));
23 26  
24 27 this.schedulePlan = schedulePlan;
  28 + this.xlId = String.valueOf(schedulePlan.getXl().getId());
25 29 }
26 30  
27 31 public DateTime getFromDate() {
... ... @@ -47,4 +51,12 @@ public class ScheduleCalcuParam_input {
47 51 public void setSchedulePlan(SchedulePlan schedulePlan) {
48 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 14 private String xlId;
15 15 /** 时刻表Id */
16 16 private String ttInfoId;
  17 + /** 时刻表名字 */
  18 + private String ttInfoName;
17 19  
18 20 public DateTime getDateTime() {
19 21 return dateTime;
... ... @@ -46,4 +48,12 @@ public class LpInfoResult_output {
46 48 public void setTtInfoId(String ttInfoId) {
47 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 66 lpInfoResult_output.setLpId(String.valueOf(ttInfoDetail.getLp().getId()));
67 67 lpInfoResult_output.setXlId(String.valueOf(ttInfoDetail.getXl().getId()));
68 68 lpInfoResult_output.setTtInfoId(String.valueOf(ttInfoDetail.getTtinfo().getId()));
  69 + lpInfoResult_output.setTtInfoName(ttInfoDetail.getTtinfo().getName());
69 70  
70 71 lpInfoResultsData.lpInfoResult_outputMap.put(
71 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 84 <is_key_private>N</is_key_private>
85 85 </info>
86 86 <notepads>
87   - <notepad>
88   - <note>&#x539f;&#x7cfb;&#x7edf;&#x7684;&#x5bfc;&#x51fa;&#x8868;&#xff0c;&#x6709;&#x4e9b;&#x6570;&#x636e;&#x662f;&#x6ca1;&#x6709;&#x7684;&#xff0c;&#x6709;&#x4e9b;&#x6570;&#x636e;&#x4e5f;&#x6709;&#x95ee;&#x9898;&#xff0c;&#x5982;&#x4e0b;&#xa;&#x62a5;&#x5e9f;&#x65e5;&#x671f;&#x53bb;&#x6389;&#xa;&#x8f66;&#x8f86;&#x7f16;&#x7801;&#xff0c;&#x6682;&#x65f6;&#x7528;1&#x4ee3;&#x66ff;&#xa;&#x662f;&#x5426;&#x7535;&#x8f66; &#x6ca1;&#x6709;&#xa;&#x8f66;&#x8f86;&#x5e8f;&#x53f7; &#x6ca1;&#x6709;&#xa;&#x662f;&#x5426;&#x5207;&#x6362; &#x6ca1;&#x6709;&#xa;&#x7ebf;&#x8def;&#x540d;&#x79f0;&#xff08;&#x8fd9;&#x91cc;&#x4e0d;&#x505a;&#x5173;&#x8054;&#xff0c;&#x53ea;&#x662f;&#x767b;&#x8bb0;&#x7684;&#x65f6;&#x5019;&#x4f7f;&#x7528;&#xff09; &#x54a9;&#x6709;&#xa;&#xa;&#x5b57;&#x5178;&#xa;&#x662f;&#x4e0e;&#x5426;truefalseType &#x662f; 1&#xa;&#x662f;&#x4e0e;&#x5426;truefalseType &#x5426; 0&#xa;&#xa;&#xa;&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;snames &#x5df4;&#x58eb;&#x62d3;&#x534e; 1&#xa;&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;snames &#x535a;&#x5eb7; 2&#xa;&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x8425;&#x8fd0; 1&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x505c;&#x8fd0; 2&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x6302;&#x5931; 3&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x8fc1;&#x51fa;&#xff08;&#x8fc7;&#x6237;&#xff09; 4&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x8fc1;&#x51fa;&#xff08;&#x8f6c;&#x7c4d;&#xff09; 5&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x62a5;&#x5e9f; 6&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x6b47;&#x4e1a; 7&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x6ce8;&#x9500; 8&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x6d4b;&#x8bd5; 9&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x5176;&#x4ed6; 10&#xa;&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x975e;&#x673a;&#x52a8;&#x8f66; 1&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x673a;&#x52a8;&#x4e00;&#x961f; 2&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x673a;&#x52a8;&#x4e8c;&#x961f; 3&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x673a;&#x52a8;&#x4e09;&#x961f; 4&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x5907;&#x8f66; 5&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x62a2;&#x4fee;&#x8f66; 6&#xa;&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x8425;&#x8fd0;&#x8f66; 1&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x5305;&#x8f66; 2&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x5b66;&#x6821;&#x73ed;&#x8f66; 3&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x516c;&#x53f8;&#x73ed;&#x8f66; 4&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x5f85;&#x62a5;&#x5e9f;&#x8f66; 5&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x5907;&#x8f66; 6&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x6d4b;&#x8bd5;&#x8bbe;&#x5907; 7&#xa;&#xa;&#xa;&#xa;</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 87 </notepads>
109 88 <connection>
110 89 <name>bus_control_variable</name>
... ... @@ -268,98 +247,11 @@
268 247 </attributes>
269 248 </connection>
270 249 <order>
271   - <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
272   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</to><enabled>Y</enabled> </hop>
273   - <hop> <from>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</from><to>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</to><enabled>Y</enabled> </hop>
274   - <hop> <from>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</from><to>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</to><enabled>Y</enabled> </hop>
275   - <hop> <from>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</from><to>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</to><enabled>Y</enabled> </hop>
276   - <hop> <from>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</from><to>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</to><enabled>Y</enabled> </hop>
277 250 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
278   - <hop> <from>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</from><to>&#x8425;&#x8fd0;&#x72b6;&#x6001;</to><enabled>Y</enabled> </hop>
279 251 <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</to><enabled>Y</enabled> </hop>
280   - <hop> <from>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;</from><to>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
281   - <hop> <from>&#x8425;&#x8fd0;&#x72b6;&#x6001;</from><to>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
282   - <hop> <from>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</from><to>&#x8f66;&#x8f86;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>
283   - <hop> <from>&#x8f66;&#x8f86;&#x7f16;&#x7801;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</to><enabled>Y</enabled> </hop>
284   - <hop> <from>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</from><to>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
285   - <hop> <from>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</from><to>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
286   - <hop> <from>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2 2</to><enabled>Y</enabled> </hop>
  252 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</to><enabled>Y</enabled> </hop>
287 253 </order>
288 254 <step>
289   - <name>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</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>&#x5df4;&#x58eb;&#x62d3;&#x534e;</source_value>
305   - <target_value>1</target_value>
306   - </field>
307   - <field>
308   - <source_value>&#x535a;&#x5eb7;</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>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</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>&#x3d;</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 255 <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
364 256 <type>ExcelInput</type>
365 257 <description/>
... ... @@ -418,7 +310,7 @@
418 310 <group/>
419 311 </field>
420 312 <field>
421   - <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
  313 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
422 314 <type>String</type>
423 315 <length>-1</length>
424 316 <precision>-1</precision>
... ... @@ -430,7 +322,7 @@
430 322 <group/>
431 323 </field>
432 324 <field>
433   - <name>&#x8f66;&#x578b;&#x7c7b;&#x522b;</name>
  325 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
434 326 <type>String</type>
435 327 <length>-1</length>
436 328 <precision>-1</precision>
... ... @@ -442,7 +334,7 @@
442 334 <group/>
443 335 </field>
444 336 <field>
445   - <name>&#x5ea7;&#x4f4d;&#x6570;</name>
  337 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
446 338 <type>String</type>
447 339 <length>-1</length>
448 340 <precision>-1</precision>
... ... @@ -454,7 +346,7 @@
454 346 <group/>
455 347 </field>
456 348 <field>
457   - <name>&#x8f7d;&#x5ba2;&#x6807;&#x51c6;</name>
  349 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
458 350 <type>String</type>
459 351 <length>-1</length>
460 352 <precision>-1</precision>
... ... @@ -466,7 +358,7 @@
466 358 <group/>
467 359 </field>
468 360 <field>
469   - <name>&#x6280;&#x672f;&#x901f;&#x5ea6;</name>
  361 + <name>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</name>
470 362 <type>String</type>
471 363 <length>-1</length>
472 364 <precision>-1</precision>
... ... @@ -478,7 +370,7 @@
478 370 <group/>
479 371 </field>
480 372 <field>
481   - <name>&#x662f;&#x5426;&#x7a7a;&#x8c03;</name>
  373 + <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
482 374 <type>String</type>
483 375 <length>-1</length>
484 376 <precision>-1</precision>
... ... @@ -489,1644 +381,246 @@
489 381 <decimal/>
490 382 <group/>
491 383 </field>
  384 + </fields>
  385 + <sheets>
  386 + <sheet>
  387 + <name>&#x5de5;&#x4f5c;&#x8868;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>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;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>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
  437 + <field>business_code</field>
  438 + <condition>&#x3d;</condition>
  439 + <name2/>
  440 + </key>
  441 + <key>
  442 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  443 + <field>inside_code</field>
  444 + <condition>&#x3d;</condition>
  445 + <name2/>
  446 + </key>
  447 + <value>
  448 + <name>car_gride</name>
  449 + <rename>&#x8f66;&#x724c;&#x53f7;</rename>
  450 + <update>Y</update>
  451 + </value>
  452 + <value>
  453 + <name>inside_code</name>
  454 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  455 + <update>Y</update>
  456 + </value>
  457 + <value>
  458 + <name>car_code</name>
  459 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  460 + <update>Y</update>
  461 + </value>
  462 + <value>
  463 + <name>company</name>
  464 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  465 + <update>Y</update>
  466 + </value>
  467 + <value>
  468 + <name>business_code</name>
  469 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
  470 + <update>Y</update>
  471 + </value>
  472 + <value>
  473 + <name>branche_company</name>
  474 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  475 + <update>Y</update>
  476 + </value>
  477 + <value>
  478 + <name>branche_company_code</name>
  479 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
  480 + <update>Y</update>
  481 + </value>
  482 + <value>
  483 + <name>supplier_name</name>
  484 + <rename>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</rename>
  485 + <update>Y</update>
  486 + </value>
  487 + <value>
  488 + <name>equipment_code</name>
  489 + <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</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>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</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 513 <field>
493   - <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5f00;&#x7a7a;&#x8c03;&#x29;</name>
  514 + <name>filepath_</name>
  515 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
494 516 <type>String</type>
495   - <length>-1</length>
496   - <precision>-1</precision>
497   - <trim_type>none</trim_type>
498   - <repeat>N</repeat>
499 517 <format/>
500 518 <currency/>
501 519 <decimal/>
502 520 <group/>
503   - </field>
504   - <field>
505   - <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5173;&#x7a7a;&#x8c03;&#x29;</name>
506   - <type>String</type>
507 521 <length>-1</length>
508 522 <precision>-1</precision>
509 523 <trim_type>none</trim_type>
510   - <repeat>N</repeat>
511   - <format/>
512   - <currency/>
513   - <decimal/>
514   - <group/>
515 524 </field>
516 525 <field>
517   - <name>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</name>
  526 + <name>erroroutputdir_</name>
  527 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
518 528 <type>String</type>
519   - <length>-1</length>
520   - <precision>-1</precision>
521   - <trim_type>none</trim_type>
522   - <repeat>N</repeat>
523 529 <format/>
524 530 <currency/>
525 531 <decimal/>
526 532 <group/>
527   - </field>
528   - <field>
529   - <name>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</name>
530   - <type>String</type>
531 533 <length>-1</length>
532 534 <precision>-1</precision>
533 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>&#x9519;&#x8bef;&#x8f93;&#x51fa; 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>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</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>&#x8f66;&#x724c;&#x53f7;</name>
  589 + <type>String</type>
535 590 <format/>
536   - <currency/>
537   - <decimal/>
538   - <group/>
539 591 </field>
540 592 <field>
541   - <name>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</name>
  593 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
542 594 <type>String</type>
543   - <length>-1</length>
544   - <precision>-1</precision>
545   - <trim_type>none</trim_type>
546   - <repeat>N</repeat>
547 595 <format/>
548   - <currency/>
549   - <decimal/>
550   - <group/>
551 596 </field>
552 597 <field>
553   - <name>&#x8fd0;&#x8425;&#x72b6;&#x6001;</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>&#x542f;&#x7528;&#x65e5;&#x671f;</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>&#x53d6;&#x6d88;&#x65e5;&#x671f;</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>&#x62a5;&#x5e9f;&#x53f7;</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>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</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>&#x5907;&#x6ce8;</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>&#x8bbe;&#x5907;&#x7f16;&#x53f7;</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>&#x5382;&#x724c;&#x578b;&#x53f7;</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>&#x5382;&#x724c;&#x578b;&#x53f7;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>&#x8f66;&#x8f86;&#x7b49;&#x7ea7;&#x6807;&#x51c6;</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>&#x51fa;&#x5382;&#x6392;&#x653e;&#x6807;&#x51c6;</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>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;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>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;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>&#x8f66;&#x67b6;&#x53f7;&#x7801;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>&#x8f66;&#x67b6;&#x53f7;&#x7801;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>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</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>&#x6240;&#x5c5e;&#x516c;&#x53f8;</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>&#x4fee;&#x6539;&#x65e5;&#x671f;</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>&#x662f;&#x5426;&#x673a;&#x52a8;&#x8f66;</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>&#x89c6;&#x9891;&#x7f16;&#x53f7;</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>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</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>&#x5206;&#x516c;&#x53f8;</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>&#x5de5;&#x4f5c;&#x8868;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>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</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>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
862   - <rename>insideCode</rename>
863   - <length>-2</length>
864   - <precision>-2</precision>
865   - </field> <field> <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
866   - <rename>carCode</rename>
867   - <length>-2</length>
868   - <precision>-2</precision>
869   - </field> <field> <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
870   - <rename>company</rename>
871   - <length>-2</length>
872   - <precision>-2</precision>
873   - </field> <field> <name>&#x5206;&#x516c;&#x53f8;</name>
874   - <rename>brancheCompany</rename>
875   - <length>-2</length>
876   - <precision>-2</precision>
877   - </field> <field> <name>&#x8f66;&#x724c;&#x53f7;</name>
878   - <rename>carPlate</rename>
879   - <length>-2</length>
880   - <precision>-2</precision>
881   - </field> <field> <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
882   - <rename>supplierName</rename>
883   - <length>-2</length>
884   - <precision>-2</precision>
885   - </field> <field> <name>&#x8bbe;&#x5907;&#x7f16;&#x53f7;</name>
886   - <rename>equipmentCode</rename>
887   - <length>-2</length>
888   - <precision>-2</precision>
889   - </field> <field> <name>&#x8f66;&#x578b;&#x7c7b;&#x522b;</name>
890   - <rename>carClass</rename>
891   - <length>-2</length>
892   - <precision>-2</precision>
893   - </field> <field> <name>&#x6280;&#x672f;&#x901f;&#x5ea6;</name>
894   - <rename>speed</rename>
895   - <length>-2</length>
896   - <precision>-2</precision>
897   - </field> <field> <name>&#x5ea7;&#x4f4d;&#x6570;</name>
898   - <rename>carSeatnNumber</rename>
899   - <length>-2</length>
900   - <precision>-2</precision>
901   - </field> <field> <name>&#x8f7d;&#x5ba2;&#x6807;&#x51c6;</name>
902   - <rename>carStandard</rename>
903   - <length>-2</length>
904   - <precision>-2</precision>
905   - </field> <field> <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5f00;&#x7a7a;&#x8c03;&#x29;</name>
906   - <rename>kburnStandard</rename>
907   - <length>-2</length>
908   - <precision>-2</precision>
909   - </field> <field> <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5173;&#x7a7a;&#x8c03;&#x29;</name>
910   - <rename>gburnStandard</rename>
911   - <length>-2</length>
912   - <precision>-2</precision>
913   - </field> <field> <name>&#x62a5;&#x5e9f;&#x53f7;</name>
914   - <rename>scrapCode</rename>
915   - <length>-2</length>
916   - <precision>-2</precision>
917   - </field> <field> <name>&#x5382;&#x724c;&#x578b;&#x53f7;</name>
918   - <rename>makeCodeOne</rename>
919   - <length>-2</length>
920   - <precision>-2</precision>
921   - </field> <field> <name>&#x5382;&#x724c;&#x578b;&#x53f7;2</name>
922   - <rename>makeCodeTwo</rename>
923   - <length>-2</length>
924   - <precision>-2</precision>
925   - </field> <field> <name>&#x8f66;&#x8f86;&#x7b49;&#x7ea7;&#x6807;&#x51c6;</name>
926   - <rename>carGride</rename>
927   - <length>-2</length>
928   - <precision>-2</precision>
929   - </field> <field> <name>&#x51fa;&#x5382;&#x6392;&#x653e;&#x6807;&#x51c6;</name>
930   - <rename>emissionsStandard</rename>
931   - <length>-2</length>
932   - <precision>-2</precision>
933   - </field> <field> <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;1</name>
934   - <rename>engineCodeOne</rename>
935   - <length>-2</length>
936   - <precision>-2</precision>
937   - </field> <field> <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;2</name>
938   - <rename>engineCodeTwo</rename>
939   - <length>-2</length>
940   - <precision>-2</precision>
941   - </field> <field> <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;1</name>
942   - <rename>carNumberOne</rename>
943   - <length>-2</length>
944   - <precision>-2</precision>
945   - </field> <field> <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;2</name>
946   - <rename>carNumberTwo</rename>
947   - <length>-2</length>
948   - <precision>-2</precision>
949   - </field> <field> <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
950   - <rename>openDate</rename>
951   - <length>-2</length>
952   - <precision>-2</precision>
953   - </field> <field> <name>&#x53d6;&#x6d88;&#x65e5;&#x671f;</name>
954   - <rename>closeDate</rename>
955   - <length>-2</length>
956   - <precision>-2</precision>
957   - </field> <field> <name>&#x662f;&#x5426;&#x7a7a;&#x8c03;</name>
958   - <rename>hvacCar</rename>
959   - <length>-2</length>
960   - <precision>-2</precision>
961   - </field> <field> <name>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</name>
962   - <rename>ticketType</rename>
963   - <length>-2</length>
964   - <precision>-2</precision>
965   - </field> <field> <name>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</name>
966   - <rename>ledScreen</rename>
967   - <length>-2</length>
968   - <precision>-2</precision>
969   - </field> <field> <name>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</name>
970   - <rename>tvVideoType</rename>
971   - <length>-2</length>
972   - <precision>-2</precision>
973   - </field> <field> <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</name>
974   - <rename>carType</rename>
975   - <length>-2</length>
976   - <precision>-2</precision>
977   - </field> <field> <name>&#x662f;&#x5426;&#x673a;&#x52a8;&#x8f66;</name>
978   - <rename>vehicleStats</rename>
979   - <length>-2</length>
980   - <precision>-2</precision>
981   - </field> <field> <name>&#x8fd0;&#x8425;&#x72b6;&#x6001;</name>
982   - <rename>operatorsState</rename>
983   - <length>-2</length>
984   - <precision>-2</precision>
985   - </field> <field> <name>&#x5907;&#x6ce8;</name>
986   - <rename>descriptions</rename>
987   - <length>-2</length>
988   - <precision>-2</precision>
989   - </field> <field> <name>&#x89c6;&#x9891;&#x7f16;&#x53f7;</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>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;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>&#x3d;</condition>
1023   - <name2/>
1024   - </key>
1025   - <key>
1026   - <name>insideCode</name>
1027   - <field>inside_code</field>
1028   - <condition>&#x3d;</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>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</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>&#x662f;</source_value>
1227   - <target_value>1</target_value>
1228   - </field>
1229   - <field>
1230   - <source_value>&#x5426;</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>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</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>&#x662f;</source_value>
1259   - <target_value>1</target_value>
1260   - </field>
1261   - <field>
1262   - <source_value>&#x5426;</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>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</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>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</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>&#x662f;</source_value>
1371   - <target_value>1</target_value>
1372   - </field>
1373   - <field>
1374   - <source_value>&#x5426;</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>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</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>&#x662f;</source_value>
1403   - <target_value>1</target_value>
1404   - </field>
1405   - <field>
1406   - <source_value>&#x5426;</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>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;</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>&#x975e;&#x673a;&#x52a8;&#x8f66;</source_value>
1435   - <target_value>1</target_value>
1436   - </field>
1437   - <field>
1438   - <source_value>&#x673a;&#x52a8;&#x4e00;&#x961f;</source_value>
1439   - <target_value>2</target_value>
1440   - </field>
1441   - <field>
1442   - <source_value>&#x673a;&#x52a8;&#x4e8c;&#x961f;</source_value>
1443   - <target_value>3</target_value>
1444   - </field>
1445   - <field>
1446   - <source_value>&#x673a;&#x52a8;&#x4e09;&#x961f;</source_value>
1447   - <target_value>4</target_value>
1448   - </field>
1449   - <field>
1450   - <source_value>&#x5907;&#x8f66;</source_value>
1451   - <target_value>5</target_value>
1452   - </field>
1453   - <field>
1454   - <source_value>&#x62a2;&#x4fee;&#x8f66;</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>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</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>&#x24;&#x7b;filepath&#x7d;</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>&#x24;&#x7b;erroroutputdir&#x7d;</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>&#x8425;&#x8fd0;&#x72b6;&#x6001;</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>&#x8425;&#x8fd0;</source_value>
1528   - <target_value>1</target_value>
1529   - </field>
1530   - <field>
1531   - <source_value>&#x505c;&#x8fd0;</source_value>
1532   - <target_value>2</target_value>
1533   - </field>
1534   - <field>
1535   - <source_value>&#x6302;&#x5931;</source_value>
1536   - <target_value>3</target_value>
1537   - </field>
1538   - <field>
1539   - <source_value>&#x8fc1;&#x51fa;&#xff08;&#x8fc7;&#x6237;&#xff09;</source_value>
1540   - <target_value>4</target_value>
1541   - </field>
1542   - <field>
1543   - <source_value>&#x8fc1;&#x51fa;&#xff08;&#x8f6c;&#x7c4d;&#xff09;</source_value>
1544   - <target_value>5</target_value>
1545   - </field>
1546   - <field>
1547   - <source_value>&#x62a5;&#x5e9f;</source_value>
1548   - <target_value>6</target_value>
1549   - </field>
1550   - <field>
1551   - <source_value>&#x6b47;&#x4e1a;</source_value>
1552   - <target_value>7</target_value>
1553   - </field>
1554   - <field>
1555   - <source_value>&#x6ce8;&#x9500;</source_value>
1556   - <target_value>8</target_value>
1557   - </field>
1558   - <field>
1559   - <source_value>&#x6d4b;&#x8bd5;</source_value>
1560   - <target_value>9</target_value>
1561   - </field>
1562   - <field>
1563   - <source_value>&#x5176;&#x4ed6;</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>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</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>&#x8425;&#x8fd0;&#x8f66;</source_value>
1592   - <target_value>1</target_value>
1593   - </field>
1594   - <field>
1595   - <source_value>&#x5305;&#x8f66;</source_value>
1596   - <target_value>2</target_value>
1597   - </field>
1598   - <field>
1599   - <source_value>&#x5b66;&#x6821;&#x73ed;&#x8f66;</source_value>
1600   - <target_value>3</target_value>
1601   - </field>
1602   - <field>
1603   - <source_value>&#x516c;&#x53f8;&#x73ed;&#x8f66;</source_value>
1604   - <target_value>4</target_value>
1605   - </field>
1606   - <field>
1607   - <source_value>&#x5f85;&#x62a5;&#x5e9f;&#x8f66;</source_value>
1608   - <target_value>5</target_value>
1609   - </field>
1610   - <field>
1611   - <source_value>&#x5907;&#x8f66;</source_value>
1612   - <target_value>6</target_value>
1613   - </field>
1614   - <field>
1615   - <source_value>&#x6d4b;&#x8bd5;&#x8bbe;&#x5907;</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>&#x8f66;&#x8f86;&#x7f16;&#x7801;</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>&#x9519;&#x8bef;&#x8f93;&#x51fa; 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>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</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>&#x9519;&#x8bef;&#x8f93;&#x51fa; 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>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;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>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
2105 599 <type>String</type>
2106 600 <format/>
2107 601 </field>
2108 602 <field>
2109   - <name>operatorsState</name>
  603 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
2110 604 <type>String</type>
2111 605 <format/>
2112 606 </field>
2113 607 <field>
2114   - <name>descriptions</name>
  608 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
2115 609 <type>String</type>
2116 610 <format/>
2117 611 </field>
2118 612 <field>
2119   - <name>videoCode</name>
  613 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
2120 614 <type>String</type>
2121 615 <format/>
2122 616 </field>
2123 617 <field>
2124   - <name>&#x4fee;&#x6539;&#x65e5;&#x671f;</name>
  618 + <name>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</name>
2125 619 <type>String</type>
2126 620 <format/>
2127 621 </field>
2128 622 <field>
2129   - <name>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</name>
  623 + <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
2130 624 <type>String</type>
2131 625 <format/>
2132 626 </field>
... ... @@ -2170,8 +664,8 @@
2170 664 </custom>
2171 665 <cluster_schema/>
2172 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 669 <draw>Y</draw>
2176 670 </GUI>
2177 671 </step>
... ... @@ -2189,18 +683,6 @@
2189 683 <max_pct_errors/>
2190 684 <min_pct_rows/>
2191 685 </error>
2192   - <error>
2193   - <source_step>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</source_step>
2194   - <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 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 686 </step_error_handling>
2205 687 <slave-step-copy-partition-distribution>
2206 688 </slave-step-copy-partition-distribution>
... ...
src/main/resources/datatools/ktrs/carsDataOutput.ktr
... ... @@ -242,20 +242,8 @@
242 242 </attributes>
243 243 </connection>
244 244 <order>
245   - <hop> <from>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</from><to>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</to><enabled>Y</enabled> </hop>
246   - <hop> <from>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</from><to>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</to><enabled>Y</enabled> </hop>
247   - <hop> <from>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</from><to>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</to><enabled>Y</enabled> </hop>
248   - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</to><enabled>Y</enabled> </hop>
249   - <hop> <from>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</from><to>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
250   - <hop> <from>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</from><to>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x6807;&#x8bc6;</to><enabled>Y</enabled> </hop>
251   - <hop> <from>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x6807;&#x8bc6;</from><to>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
252   - <hop> <from>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x67e5;&#x8be2;</from><to>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</to><enabled>Y</enabled> </hop>
253   - <hop> <from>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</from><to>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
254   - <hop> <from>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</to><enabled>Y</enabled> </hop>
255   - <hop> <from>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</from><to>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
256   - <hop> <from>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
257   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>
258   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  245 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  246 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
259 247 </order>
260 248 <step>
261 249 <name>Excel&#x8f93;&#x51fa;</name>
... ... @@ -309,167 +297,27 @@
309 297 <format/>
310 298 </field>
311 299 <field>
312   - <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
313   - <type>String</type>
314   - <format/>
315   - </field>
316   - <field>
317   - <name>&#x8f66;&#x578b;&#x7c7b;&#x522b;</name>
318   - <type>String</type>
319   - <format/>
320   - </field>
321   - <field>
322   - <name>&#x5ea7;&#x4f4d;&#x6570;</name>
323   - <type>String</type>
324   - <format/>
325   - </field>
326   - <field>
327   - <name>&#x8f7d;&#x5ba2;&#x6807;&#x51c6;</name>
328   - <type>String</type>
329   - <format/>
330   - </field>
331   - <field>
332   - <name>&#x6280;&#x672f;&#x901f;&#x5ea6;</name>
333   - <type>String</type>
334   - <format/>
335   - </field>
336   - <field>
337   - <name>&#x662f;&#x5426;&#x7a7a;&#x8c03;</name>
338   - <type>String</type>
339   - <format/>
340   - </field>
341   - <field>
342   - <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5f00;&#x7a7a;&#x8c03;&#x29;</name>
343   - <type>String</type>
344   - <format/>
345   - </field>
346   - <field>
347   - <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5173;&#x7a7a;&#x8c03;&#x29;</name>
348   - <type>String</type>
349   - <format/>
350   - </field>
351   - <field>
352   - <name>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</name>
353   - <type>String</type>
354   - <format/>
355   - </field>
356   - <field>
357   - <name>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</name>
358   - <type>String</type>
359   - <format/>
360   - </field>
361   - <field>
362   - <name>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</name>
363   - <type>String</type>
364   - <format/>
365   - </field>
366   - <field>
367   - <name>&#x8fd0;&#x8425;&#x72b6;&#x6001;</name>
368   - <type>String</type>
369   - <format/>
370   - </field>
371   - <field>
372   - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
373   - <type>String</type>
374   - <format/>
375   - </field>
376   - <field>
377   - <name>&#x53d6;&#x6d88;&#x65e5;&#x671f;</name>
378   - <type>String</type>
379   - <format/>
380   - </field>
381   - <field>
382   - <name>&#x62a5;&#x5e9f;&#x53f7;</name>
383   - <type>String</type>
384   - <format/>
385   - </field>
386   - <field>
387   - <name>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</name>
388   - <type>String</type>
389   - <format/>
390   - </field>
391   - <field>
392   - <name>&#x5907;&#x6ce8;</name>
393   - <type>String</type>
394   - <format/>
395   - </field>
396   - <field>
397   - <name>&#x8bbe;&#x5907;&#x7f16;&#x53f7;</name>
398   - <type>String</type>
399   - <format/>
400   - </field>
401   - <field>
402   - <name>&#x5382;&#x724c;&#x578b;&#x53f7;</name>
403   - <type>String</type>
404   - <format/>
405   - </field>
406   - <field>
407   - <name>&#x5382;&#x724c;&#x578b;&#x53f7;2</name>
408   - <type>String</type>
409   - <format/>
410   - </field>
411   - <field>
412   - <name>&#x8f66;&#x8f86;&#x7b49;&#x7ea7;&#x6807;&#x51c6;</name>
413   - <type>String</type>
414   - <format/>
415   - </field>
416   - <field>
417   - <name>&#x51fa;&#x5382;&#x6392;&#x653e;&#x6807;&#x51c6;</name>
418   - <type>String</type>
419   - <format/>
420   - </field>
421   - <field>
422   - <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;1</name>
423   - <type>String</type>
424   - <format/>
425   - </field>
426   - <field>
427   - <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;2</name>
428   - <type>String</type>
429   - <format/>
430   - </field>
431   - <field>
432   - <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;1</name>
433   - <type>String</type>
434   - <format/>
435   - </field>
436   - <field>
437   - <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;2</name>
438   - <type>String</type>
439   - <format/>
440   - </field>
441   - <field>
442   - <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</name>
443   - <type>String</type>
444   - <format/>
445   - </field>
446   - <field>
447 300 <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
448 301 <type>String</type>
449 302 <format/>
450 303 </field>
451 304 <field>
452   - <name>&#x4fee;&#x6539;&#x65e5;&#x671f;</name>
453   - <type>String</type>
454   - <format/>
455   - </field>
456   - <field>
457   - <name>&#x662f;&#x5426;&#x673a;&#x52a8;&#x8f66;</name>
  305 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
458 306 <type>String</type>
459 307 <format/>
460 308 </field>
461 309 <field>
462   - <name>&#x89c6;&#x9891;&#x7f16;&#x53f7;</name>
  310 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
463 311 <type>String</type>
464 312 <format/>
465 313 </field>
466 314 <field>
467   - <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
  315 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
468 316 <type>String</type>
469 317 <format/>
470 318 </field>
471 319 <field>
472   - <name>&#x5206;&#x516c;&#x53f8;</name>
  320 + <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
473 321 <type>String</type>
474 322 <format/>
475 323 </field>
... ... @@ -493,40 +341,8 @@
493 341 </custom>
494 342 <cluster_schema/>
495 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>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</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>&#x5df4;&#x58eb;&#x62d3;&#x534e;</target_value>
520   - </field>
521   - <field>
522   - <source_value>2</source_value>
523   - <target_value>&#x535a;&#x5eb7;</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 346 <draw>Y</draw>
531 347 </GUI>
532 348 </step>
... ... @@ -542,986 +358,43 @@
542 358 <method>none</method>
543 359 <schema_name/>
544 360 </partitioning>
545   - <fields> <select_unspecified>N</select_unspecified>
546   - <meta> <name>car_plate</name>
  361 + <fields> <field> <name>car_plate</name>
547 362 <rename>&#x8f66;&#x724c;&#x53f7;</rename>
548   - <type>String</type>
549 363 <length>-2</length>
550 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 366 <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</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>&#x8f66;&#x8f86;&#x7f16;&#x7801;</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>&#x8f66;&#x578b;&#x7c7b;&#x522b;</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>&#x5ea7;&#x4f4d;&#x6570;</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>&#x8f7d;&#x5ba2;&#x6807;&#x51c6;</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>&#x6280;&#x672f;&#x901f;&#x5ea6;</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>&#x662f;&#x5426;&#x7a7a;&#x8c03;</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>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5f00;&#x7a7a;&#x8c03;&#x29;</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>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5173;&#x7a7a;&#x8c03;&#x29;</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>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</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>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</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>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</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>&#x8fd0;&#x8425;&#x72b6;&#x6001;</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>&#x542f;&#x7528;&#x65e5;&#x671f;</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>&#x53d6;&#x6d88;&#x65e5;&#x671f;</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>&#x62a5;&#x5e9f;&#x53f7;</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>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</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>&#x5907;&#x6ce8;</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>&#x8bbe;&#x5907;&#x7f16;&#x53f7;</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>&#x5382;&#x724c;&#x578b;&#x53f7;</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>&#x5382;&#x724c;&#x578b;&#x53f7;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>&#x8f66;&#x8f86;&#x7b49;&#x7ea7;&#x6807;&#x51c6;</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>&#x51fa;&#x5382;&#x6392;&#x653e;&#x6807;&#x51c6;</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>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;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>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;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>&#x8f66;&#x67b6;&#x53f7;&#x7801;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>&#x8f66;&#x67b6;&#x53f7;&#x7801;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>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</rename>
968   - <type>String</type>
969 367 <length>-2</length>
970 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 370 <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
983   - <type>String</type>
984 371 <length>-2</length>
985 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>&#x4fee;&#x6539;&#x65e5;&#x671f;</rename>
998   - <type>String</type>
  373 + </field> <field> <name>business_code</name>
  374 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
999 375 <length>-2</length>
1000 376 <precision>-2</precision>
1001   - <conversion_mask>yyyy-MM-dd HH&#x3a;mm&#x3a;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>&#x662f;&#x5426;&#x673a;&#x52a8;&#x8f66;</rename>
1013   - <type>String</type>
  377 + </field> <field> <name>branche_company</name>
  378 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
1014 379 <length>-2</length>
1015 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>&#x89c6;&#x9891;&#x7f16;&#x53f7;</rename>
1028   - <type>String</type>
  381 + </field> <field> <name>branche_company_code</name>
  382 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
1029 383 <length>-2</length>
1030 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 386 <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</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>&#x5206;&#x516c;&#x53f8;</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>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 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>&#x8f66;&#x724c;&#x53f7;</name>
1091   - <rename/>
1092   - <length>-2</length>
1093   - <precision>-2</precision>
1094   - </field> <field> <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
1095   - <rename/>
1096   - <length>-2</length>
1097   - <precision>-2</precision>
1098   - </field> <field> <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
1099   - <rename/>
1100   - <length>-2</length>
1101   - <precision>-2</precision>
1102   - </field> <field> <name>&#x8f66;&#x578b;&#x7c7b;&#x522b;</name>
1103   - <rename/>
1104   - <length>-2</length>
1105   - <precision>-2</precision>
1106   - </field> <field> <name>&#x5ea7;&#x4f4d;&#x6570;</name>
1107   - <rename/>
1108   - <length>-2</length>
1109   - <precision>-2</precision>
1110   - </field> <field> <name>&#x8f7d;&#x5ba2;&#x6807;&#x51c6;</name>
1111   - <rename/>
1112   - <length>-2</length>
1113   - <precision>-2</precision>
1114   - </field> <field> <name>&#x6280;&#x672f;&#x901f;&#x5ea6;</name>
1115   - <rename/>
1116 387 <length>-2</length>
1117 388 <precision>-2</precision>
1118   - </field> <field> <name>&#x662f;&#x5426;&#x7a7a;&#x8c03;</name>
1119   - <rename/>
1120   - <length>-2</length>
1121   - <precision>-2</precision>
1122   - </field> <field> <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5f00;&#x7a7a;&#x8c03;&#x29;</name>
1123   - <rename/>
1124   - <length>-2</length>
1125   - <precision>-2</precision>
1126   - </field> <field> <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5173;&#x7a7a;&#x8c03;&#x29;</name>
1127   - <rename/>
1128   - <length>-2</length>
1129   - <precision>-2</precision>
1130   - </field> <field> <name>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</name>
1131   - <rename/>
1132   - <length>-2</length>
1133   - <precision>-2</precision>
1134   - </field> <field> <name>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</name>
1135   - <rename/>
1136   - <length>-2</length>
1137   - <precision>-2</precision>
1138   - </field> <field> <name>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</name>
1139   - <rename/>
1140   - <length>-2</length>
1141   - <precision>-2</precision>
1142   - </field> <field> <name>&#x8fd0;&#x8425;&#x72b6;&#x6001;</name>
1143   - <rename/>
1144   - <length>-2</length>
1145   - <precision>-2</precision>
1146   - </field> <field> <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
1147   - <rename/>
1148   - <length>-2</length>
1149   - <precision>-2</precision>
1150   - </field> <field> <name>&#x53d6;&#x6d88;&#x65e5;&#x671f;</name>
1151   - <rename/>
1152   - <length>-2</length>
1153   - <precision>-2</precision>
1154   - </field> <field> <name>&#x62a5;&#x5e9f;&#x53f7;</name>
1155   - <rename/>
1156   - <length>-2</length>
1157   - <precision>-2</precision>
1158   - </field> <field> <name>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</name>
1159   - <rename/>
1160   - <length>-2</length>
1161   - <precision>-2</precision>
1162   - </field> <field> <name>&#x5907;&#x6ce8;</name>
1163   - <rename/>
1164   - <length>-2</length>
1165   - <precision>-2</precision>
1166   - </field> <field> <name>&#x8bbe;&#x5907;&#x7f16;&#x53f7;</name>
1167   - <rename/>
1168   - <length>-2</length>
1169   - <precision>-2</precision>
1170   - </field> <field> <name>&#x5382;&#x724c;&#x578b;&#x53f7;</name>
1171   - <rename/>
1172   - <length>-2</length>
1173   - <precision>-2</precision>
1174   - </field> <field> <name>&#x5382;&#x724c;&#x578b;&#x53f7;2</name>
1175   - <rename/>
1176   - <length>-2</length>
1177   - <precision>-2</precision>
1178   - </field> <field> <name>&#x8f66;&#x8f86;&#x7b49;&#x7ea7;&#x6807;&#x51c6;</name>
1179   - <rename/>
1180   - <length>-2</length>
1181   - <precision>-2</precision>
1182   - </field> <field> <name>&#x51fa;&#x5382;&#x6392;&#x653e;&#x6807;&#x51c6;</name>
1183   - <rename/>
1184   - <length>-2</length>
1185   - <precision>-2</precision>
1186   - </field> <field> <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;1</name>
1187   - <rename/>
1188   - <length>-2</length>
1189   - <precision>-2</precision>
1190   - </field> <field> <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;2</name>
1191   - <rename/>
1192   - <length>-2</length>
1193   - <precision>-2</precision>
1194   - </field> <field> <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;1</name>
1195   - <rename/>
1196   - <length>-2</length>
1197   - <precision>-2</precision>
1198   - </field> <field> <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;2</name>
1199   - <rename/>
1200   - <length>-2</length>
1201   - <precision>-2</precision>
1202   - </field> <field> <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</name>
1203   - <rename/>
1204   - <length>-2</length>
1205   - <precision>-2</precision>
1206   - </field> <field> <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
1207   - <rename/>
1208   - <length>-2</length>
1209   - <precision>-2</precision>
1210   - </field> <field> <name>&#x4fee;&#x6539;&#x65e5;&#x671f;</name>
1211   - <rename/>
1212   - <length>-2</length>
1213   - <precision>-2</precision>
1214   - </field> <field> <name>&#x662f;&#x5426;&#x673a;&#x52a8;&#x8f66;</name>
1215   - <rename/>
1216   - <length>-2</length>
1217   - <precision>-2</precision>
1218   - </field> <field> <name>&#x89c6;&#x9891;&#x7f16;&#x53f7;</name>
1219   - <rename/>
1220   - <length>-2</length>
1221   - <precision>-2</precision>
1222   - </field> <field> <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
1223   - <rename/>
1224   - <length>-2</length>
1225   - <precision>-2</precision>
1226   - </field> <field> <name>&#x5206;&#x516c;&#x53f8;</name>
1227   - <rename/>
  389 + </field> <field> <name>equipment_code</name>
  390 + <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</rename>
1228 391 <length>-2</length>
1229 392 <precision>-2</precision>
1230 393 </field> <select_unspecified>N</select_unspecified>
1231 394 </fields> <cluster_schema/>
1232 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>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</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>&#x662f;</target_value>
1257   - </field>
1258   - <field>
1259   - <source_value>0</source_value>
1260   - <target_value>&#x5426;</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>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</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>&#x662f;</target_value>
1289   - </field>
1290   - <field>
1291   - <source_value>0</source_value>
1292   - <target_value>&#x5426;</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>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</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>&#x662f;</target_value>
1321   - </field>
1322   - <field>
1323   - <source_value>0</source_value>
1324   - <target_value>&#x5426;</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>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</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>&#x662f;</target_value>
1353   - </field>
1354   - <field>
1355   - <source_value>0</source_value>
1356   - <target_value>&#x5426;</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>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</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>&#x3d;</condition>
1392   - <name2/>
1393   - </key>
1394   - <key>
1395   - <name>vehicle_stats</name>
1396   - <field>d_code</field>
1397   - <condition>&#x3d;</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>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</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>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x67e5;&#x8be2;</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>&#x3d;</condition>
1473   - <name2/>
1474   - </key>
1475   - <key>
1476   - <name>operators_state</name>
1477   - <field>d_code</field>
1478   - <condition>&#x3d;</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>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x6807;&#x8bc6;</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 398 <draw>Y</draw>
1526 399 </GUI>
1527 400 </step>
... ... @@ -1552,87 +425,6 @@
1552 425 </GUI>
1553 426 </step>
1554 427  
1555   - <step>
1556   - <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</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>&#x3d;</condition>
1580   - <name2/>
1581   - </key>
1582   - <key>
1583   - <name>car_type</name>
1584   - <field>d_code</field>
1585   - <condition>&#x3d;</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>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</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 428 <step_error_handling>
1637 429 </step_error_handling>
1638 430 <slave-step-copy-partition-distribution>
... ...