Commit e2ca99830892d78d49cba69d2bba5902177a35c2

Authored by ljq
1 parent ee209390

自动撤销只判断未执行和正在执行的,百度地图密钥更新

@@ -190,6 +190,10 @@ @@ -190,6 +190,10 @@
190 <groupId>org.apache.xmlgraphics</groupId> 190 <groupId>org.apache.xmlgraphics</groupId>
191 <artifactId>batik-js</artifactId> 191 <artifactId>batik-js</artifactId>
192 </exclusion> 192 </exclusion>
  193 + <exclusion>
  194 + <groupId>javassist</groupId>
  195 + <artifactId>javassist</artifactId>
  196 + </exclusion>
193 </exclusions> 197 </exclusions>
194 </dependency> 198 </dependency>
195 <dependency> 199 <dependency>
src/main/java/com/bsth/data/zndd/AutomaticSch.java
@@ -267,7 +267,7 @@ public class AutomaticSch { @@ -267,7 +267,7 @@ public class AutomaticSch {
267 Collections.sort(oldSchDateList, new ScheduleComparator.FCSJ()); 267 Collections.sort(oldSchDateList, new ScheduleComparator.FCSJ());
268 for (ScheduleRealInfo t : oldSchDateList){ 268 for (ScheduleRealInfo t : oldSchDateList){
269 // 发车误点 269 // 发车误点
270 - if (t.getDfsj() != null && t.getFcsjActual() != null 270 + if (t.getDfsj() != null && t.getFcsjActual() != null && (t.getStatus() == 0 || t.getStatus() == 1)
271 && (t.getBcType().equals("normal") || t.getBcType().equals("region"))) { 271 && (t.getBcType().equals("normal") || t.getBcType().equals("region"))) {
272 272
273 long sjc = t.getFcsjActualTime() - t.getDfsjT(); 273 long sjc = t.getFcsjActualTime() - t.getDfsjT();
@@ -294,6 +294,7 @@ public class AutomaticSch { @@ -294,6 +294,7 @@ public class AutomaticSch {
294 if (isCZ) 294 if (isCZ)
295 continue; 295 continue;
296 } 296 }
  297 +
297 //异常实发 298 //异常实发
298 ts(addStationPeople(t, "YCSF", 0l)); 299 ts(addStationPeople(t, "YCSF", 0l));
299 LogerWait("实发撤销",t); 300 LogerWait("实发撤销",t);
src/main/java/com/bsth/data/zndd/dify/BusCongestionChecker.java
@@ -16,10 +16,6 @@ import java.util.ArrayList; @@ -16,10 +16,6 @@ import java.util.ArrayList;
16 import java.util.List; 16 import java.util.List;
17 17
18 public class BusCongestionChecker { 18 public class BusCongestionChecker {
19 - private static final String AK = "baidu.akyd=WnSDHZgtPbSbw2LfsH3KO3DDKWONmlYK"; // 替换为百度AK  
20 - private static final String ORIGIN = "40.056878,116.30815"; // 起点坐标  
21 - private static final String DESTINATION = "39.915285,116.403857"; // 终点坐标  
22 - private static final String CITY = "上海"; // 城市名  
23 19
24 static Logger logger = LoggerFactory.getLogger(BusCongestionChecker.class); 20 static Logger logger = LoggerFactory.getLogger(BusCongestionChecker.class);
25 21
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
@@ -1742,7 +1742,13 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf @@ -1742,7 +1742,13 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
1742 1742
1743 try { 1743 try {
1744 ScheduleRealInfo sch = dayOfSchedule.get(id); 1744 ScheduleRealInfo sch = dayOfSchedule.get(id);
1745 - if (sch.getFcsjActual() == null) { 1745 + //已经完成班次的不自动撤销
  1746 + if (sch.getStatus() == 2 && !sch.isDestroy()) {
  1747 + //刷新班次不修改
  1748 + rs.put("status", ResponseCode.SUCCESS);
  1749 + ts.add(sch);
  1750 + rs.put("ts", ts);
  1751 + } else if (sch.getFcsjActual() == null) {
1746 //刷新班次不修改 1752 //刷新班次不修改
1747 rs.put("status", ResponseCode.SUCCESS); 1753 rs.put("status", ResponseCode.SUCCESS);
1748 ts.add(sch); 1754 ts.add(sch);
src/main/resources/application-prod.properties
@@ -40,11 +40,10 @@ sso.http.url.auth= http://10.10.200.142:9112/prod-api/system/utilitySystem/check @@ -40,11 +40,10 @@ sso.http.url.auth= http://10.10.200.142:9112/prod-api/system/utilitySystem/check
40 dc.imgurl= /home/control/klimg 40 dc.imgurl= /home/control/klimg
41 dc.profile= profile 41 dc.profile= profile
42 42
43 -baidu.ak=AYiBOs3f9qBQFhdKFsaboX6CfObmKwRP 43 +baidu.ak=YIT2mnCsfWkpbYnlLLqJ18ravGLs3OJS
44 passengerFlow.url = http://192.168.168.32:9999/images/ 44 passengerFlow.url = http://192.168.168.32:9999/images/
45 45
46 electricity.importFile.path= /home/control/elecImportFile 46 electricity.importFile.path= /home/control/elecImportFile
47 -baidu.akyd=WnSDHZgtPbSbw2LfsH3KO3DDKWONmlYK  
48 report_register.complaint.url= http://10.10.200.113:8060/complaint/TsReport/input.do 47 report_register.complaint.url= http://10.10.200.113:8060/complaint/TsReport/input.do
49 48
50 path.speech.common = /home/control/speech/common/ 49 path.speech.common = /home/control/speech/common/
src/main/resources/application-test.properties
@@ -40,9 +40,8 @@ sso.http.url.auth= http://10.10.200.142:9112/prod-api/system/utilitySystem/check @@ -40,9 +40,8 @@ sso.http.url.auth= http://10.10.200.142:9112/prod-api/system/utilitySystem/check
40 dc.imgurl= E:/klimg 40 dc.imgurl= E:/klimg
41 dc.profile= profile 41 dc.profile= profile
42 42
43 -baidu.ak=AYiBOs3f9qBQFhdKFsaboX6CfObmKwRP 43 +baidu.ak=YIT2mnCsfWkpbYnlLLqJ18ravGLs3OJS
44 passengerFlow.url = http://127.0.0.1:9999/images/ 44 passengerFlow.url = http://127.0.0.1:9999/images/
45 -baidu.akyd=WnSDHZgtPbSbw2LfsH3KO3DDKWONmlYK  
46 electricity.importFile.path= E:/elecImportFile 45 electricity.importFile.path= E:/elecImportFile
47 46
48 report_register.complaint.url= http://192.168.168.172:8080/complaint/TsReport/input.do 47 report_register.complaint.url= http://192.168.168.172:8080/complaint/TsReport/input.do
src/main/resources/static/index.html
@@ -636,7 +636,7 @@ @@ -636,7 +636,7 @@
636 <!-- 地图相关 --> 636 <!-- 地图相关 -->
637 <!-- 百度 --> 637 <!-- 百度 -->
638 <script 638 <script
639 - src="//api.map.baidu.com/api?v=3.0&ak=za84VXA5QasXtkxfixJ4AIkdKXi2ib1W" 639 + src="//api.map.baidu.com/api?v=3.0&ak=1TgEKvYqohJyeGXnN6yHSSTb4psOarQwJ406ssE2HnNNJcnKGZ6BwXYfhOJawM2J"
640 data-exclude=1></script> 640 data-exclude=1></script>
641 <script 641 <script
642 src="//api.map.baidu.com/library/TrafficControl/1.4/src/TrafficControl_min.js" 642 src="//api.map.baidu.com/library/TrafficControl/1.4/src/TrafficControl_min.js"
src/main/resources/static/real_control_v2/js/zndd/data_zndd.js
@@ -46,6 +46,14 @@ var gb_dataZndd = (function (){ @@ -46,6 +46,14 @@ var gb_dataZndd = (function (){
46 configureDkl(); 46 configureDkl();
47 return; 47 return;
48 } 48 }
  49 + //实发撤销 -- 过滤个别线路
  50 + if (data.type == 'YCSF'){
  51 + if (YCSF(data.lineCode) == true){
  52 + configure();
  53 + }
  54 + return;
  55 + }
  56 +
49 //末二班车 57 //末二班车
50 if (data.type == 'DESCTWO'){ 58 if (data.type == 'DESCTWO'){
51 if (mo_two(data.lineCode) == true){ 59 if (mo_two(data.lineCode) == true){
@@ -134,6 +142,17 @@ var gb_dataZndd = (function (){ @@ -134,6 +142,17 @@ var gb_dataZndd = (function (){
134 center: false, 142 center: false,
135 bgclose: false 143 bgclose: false
136 } 144 }
  145 + //特别线路发车及不准点过滤掉
  146 +
  147 + function YCSF(line){
  148 + var t =[230814];
  149 +
  150 + for (var lines in t){
  151 + if(line == t[lines])
  152 + return false;
  153 + }
  154 + return true;
  155 + }
137 156
138 157
139 //芦潮港1路 新临专线,临港10路, 浦东107路, 浦东91路,1078路,1135路,南临专线,临港4路,浦东111路,浦东74路,临港13路,申港3路,浦东29路,新芦专线 158 //芦潮港1路 新临专线,临港10路, 浦东107路, 浦东91路,1078路,1135路,南临专线,临港4路,浦东111路,浦东74路,临港13路,申港3路,浦东29路,新芦专线
src/main/resources/static/real_control_v2/main.html
@@ -127,7 +127,7 @@ @@ -127,7 +127,7 @@
127 </script> 127 </script>
128 128
129 <!-- 地图相关 --> 129 <!-- 地图相关 -->
130 -<script src="//api.map.baidu.com/api?v=2.0&ak=za84VXA5QasXtkxfixJ4AIkdKXi2ib1W"></script> 130 +<script src="//api.map.baidu.com/api?v=2.0&ak=1TgEKvYqohJyeGXnN6yHSSTb4psOarQwJ406ssE2HnNNJcnKGZ6BwXYfhOJawM2J"></script>
131 <script src="//api.map.baidu.com/library/TrafficControl/1.4/src/TrafficControl_min.js"></script> 131 <script src="//api.map.baidu.com/library/TrafficControl/1.4/src/TrafficControl_min.js"></script>
132 <script src="/assets/js/baidu//MarkerClusterer.js" merge="plugins"></script> 132 <script src="/assets/js/baidu//MarkerClusterer.js" merge="plugins"></script>
133 <script src="/assets/js/CoordinateConverter.js" merge="plugins"></script> 133 <script src="/assets/js/CoordinateConverter.js" merge="plugins"></script>