Commit 3f0901f2472282c6a904dede0fa40d12bf22333a
Merge branch 'minhang' of http://222.66.0.204:8090//panzhaov5/bsth_control into minhang
Showing
9 changed files
with
822 additions
and
868 deletions
src/main/java/com/bsth/service/oil/impl/YlbServiceImpl.java
| @@ -130,20 +130,25 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | @@ -130,20 +130,25 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS | ||
| 130 | for (int i = 0; i < ylListBe.size(); i++) { | 130 | for (int i = 0; i < ylListBe.size(); i++) { |
| 131 | Ylb ylb=ylListBe.get(i); | 131 | Ylb ylb=ylListBe.get(i); |
| 132 | if(map.get("clZbh").toString().equals(ylb.getNbbm())){ | 132 | if(map.get("clZbh").toString().equals(ylb.getNbbm())){ |
| 133 | - if(ylb.getJzyl()>0){ | ||
| 134 | - t.setCzyl(ylb.getJzyl()); | ||
| 135 | - fage=false; | ||
| 136 | - break; | 133 | + if(ylb.getJzyl()!=null){ |
| 134 | + if(ylb.getJzyl()>0){ | ||
| 135 | + t.setCzyl(ylb.getJzyl()); | ||
| 136 | + fage=false; | ||
| 137 | + break; | ||
| 138 | + } | ||
| 137 | } | 139 | } |
| 140 | + | ||
| 138 | } | 141 | } |
| 139 | } | 142 | } |
| 140 | if(fage){ | 143 | if(fage){ |
| 141 | for (int y = 0; y < clyList.size(); y++) { | 144 | for (int y = 0; y < clyList.size(); y++) { |
| 142 | Cyl cyl=clyList.get(y); | 145 | Cyl cyl=clyList.get(y); |
| 143 | if(map.get("clZbh").toString().equals(cyl.getNbbm())){ | 146 | if(map.get("clZbh").toString().equals(cyl.getNbbm())){ |
| 144 | - t.setCzyl(cyl.getCyl()); | ||
| 145 | - fage=false; | ||
| 146 | - break; | 147 | + if(cyl.getCyl()!=null){ |
| 148 | + t.setCzyl(cyl.getCyl()); | ||
| 149 | + fage=false; | ||
| 150 | + break; | ||
| 151 | + } | ||
| 147 | } | 152 | } |
| 148 | } | 153 | } |
| 149 | } | 154 | } |
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
| @@ -1377,13 +1377,15 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -1377,13 +1377,15 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 1377 | map.put("addMileage", format.format(addMileage)); | 1377 | map.put("addMileage", format.format(addMileage)); |
| 1378 | map.put("yygl", format.format(yygl+addMileageYy)); | 1378 | map.put("yygl", format.format(yygl+addMileageYy)); |
| 1379 | map.put("ksgl", format.format(ksgl)); | 1379 | map.put("ksgl", format.format(ksgl)); |
| 1380 | - map.put("realMileage", format.format(yygl + ksgl + jcclc+addMileage)); | 1380 | + map.put("realMileage", format.format(yygl + ksgl + jcclc+addMileageYy)); |
| 1381 | +// map.put("realMileage", format.format(yygl + ksgl + jcclc+addMileage)); | ||
| 1381 | map.put("jhbc", jhbc); | 1382 | map.put("jhbc", jhbc); |
| 1382 | map.put("cjbc", cjbc); | 1383 | map.put("cjbc", cjbc); |
| 1383 | map.put("ljbc", ljbc); | 1384 | map.put("ljbc", ljbc); |
| 1384 | map.put("sjbc", jhbc - cjbc + ljbc); | 1385 | map.put("sjbc", jhbc - cjbc + ljbc); |
| 1385 | map.put("jcclc", jcclc); | 1386 | map.put("jcclc", jcclc); |
| 1386 | - map.put("zkslc", format.format(ksgl + jcclc+addMileageJc)); | 1387 | + map.put("zkslc", format.format(ksgl + jcclc)); |
| 1388 | +// map.put("zkslc", format.format(ksgl + jcclc+addMileageJc)); | ||
| 1387 | return map; | 1389 | return map; |
| 1388 | } | 1390 | } |
| 1389 | 1391 |
src/main/java/com/bsth/service/schedule/rules/plan/PlanCalcuParam_input.java
| 1 | -package com.bsth.service.schedule.rules.plan; | ||
| 2 | - | ||
| 3 | -import com.bsth.entity.schedule.SchedulePlan; | ||
| 4 | -import com.bsth.service.schedule.rules.shiftloop.ScheduleResults_output; | ||
| 5 | -import com.bsth.service.schedule.rules.ttinfo.TTInfoResults_output; | ||
| 6 | - | ||
| 7 | -/** | ||
| 8 | - * 排班规则-规则输入参数。 | ||
| 9 | - */ | ||
| 10 | -public class PlanCalcuParam_input { | ||
| 11 | - /** 线路Id */ | ||
| 12 | - private String xlId; | ||
| 13 | - /** 计划主对象 */ | ||
| 14 | - private SchedulePlan schedulePlan; | ||
| 15 | - /** 循环规则输出 */ | ||
| 16 | - private ScheduleResults_output scheduleResults_output; | ||
| 17 | - /** 时刻表选择规则输出 */ | ||
| 18 | - private TTInfoResults_output ttInfoResults_output; | ||
| 19 | - | ||
| 20 | - public PlanCalcuParam_input() { | ||
| 21 | - } | ||
| 22 | - public PlanCalcuParam_input( | ||
| 23 | - SchedulePlan schedulePlan, | ||
| 24 | - ScheduleResults_output scheduleResults_output, | ||
| 25 | - TTInfoResults_output ttInfoResults_output) { | ||
| 26 | - this.schedulePlan = schedulePlan; | ||
| 27 | - this.xlId = String.valueOf(schedulePlan.getXl().getId()); | ||
| 28 | - this.scheduleResults_output = scheduleResults_output; | ||
| 29 | - this.ttInfoResults_output = ttInfoResults_output; | ||
| 30 | - } | ||
| 31 | - | ||
| 32 | - public String getXlId() { | ||
| 33 | - return xlId; | ||
| 34 | - } | ||
| 35 | - | ||
| 36 | - public void setXlId(String xlId) { | ||
| 37 | - this.xlId = xlId; | ||
| 38 | - } | ||
| 39 | - | ||
| 40 | - public ScheduleResults_output getScheduleResults_output() { | ||
| 41 | - return scheduleResults_output; | ||
| 42 | - } | ||
| 43 | - | ||
| 44 | - public void setScheduleResults_output(ScheduleResults_output scheduleResults_output) { | ||
| 45 | - this.scheduleResults_output = scheduleResults_output; | ||
| 46 | - } | ||
| 47 | - | ||
| 48 | - public TTInfoResults_output getTtInfoResults_output() { | ||
| 49 | - return ttInfoResults_output; | ||
| 50 | - } | ||
| 51 | - | ||
| 52 | - public void setTtInfoResults_output(TTInfoResults_output ttInfoResults_output) { | ||
| 53 | - this.ttInfoResults_output = ttInfoResults_output; | ||
| 54 | - } | ||
| 55 | - | ||
| 56 | - public SchedulePlan getSchedulePlan() { | ||
| 57 | - return schedulePlan; | ||
| 58 | - } | ||
| 59 | - | ||
| 60 | - public void setSchedulePlan(SchedulePlan schedulePlan) { | ||
| 61 | - this.schedulePlan = schedulePlan; | ||
| 62 | - } | ||
| 63 | -} | 1 | +package com.bsth.service.schedule.rules.plan; |
| 2 | + | ||
| 3 | +import com.bsth.entity.schedule.SchedulePlan; | ||
| 4 | +import com.bsth.service.schedule.rules.shiftloop.ScheduleResults_output; | ||
| 5 | +import com.bsth.service.schedule.rules.ttinfo.TTInfoResults_output; | ||
| 6 | + | ||
| 7 | +/** | ||
| 8 | + * 排班规则-规则输入参数。 | ||
| 9 | + */ | ||
| 10 | +public class PlanCalcuParam_input { | ||
| 11 | + /** 线路Id */ | ||
| 12 | + private String xlId; | ||
| 13 | + /** 计划主对象 */ | ||
| 14 | + private SchedulePlan schedulePlan; | ||
| 15 | + /** 循环规则输出 */ | ||
| 16 | + private ScheduleResults_output scheduleResults_output; | ||
| 17 | + /** 时刻表选择规则输出 */ | ||
| 18 | + private TTInfoResults_output ttInfoResults_output; | ||
| 19 | + | ||
| 20 | + public PlanCalcuParam_input() { | ||
| 21 | + } | ||
| 22 | + public PlanCalcuParam_input( | ||
| 23 | + SchedulePlan schedulePlan, | ||
| 24 | + ScheduleResults_output scheduleResults_output, | ||
| 25 | + TTInfoResults_output ttInfoResults_output) { | ||
| 26 | + this.schedulePlan = schedulePlan; | ||
| 27 | + this.xlId = String.valueOf(schedulePlan.getXl().getId()); | ||
| 28 | + this.scheduleResults_output = scheduleResults_output; | ||
| 29 | + this.ttInfoResults_output = ttInfoResults_output; | ||
| 30 | + } | ||
| 31 | + | ||
| 32 | + public String getXlId() { | ||
| 33 | + return xlId; | ||
| 34 | + } | ||
| 35 | + | ||
| 36 | + public void setXlId(String xlId) { | ||
| 37 | + this.xlId = xlId; | ||
| 38 | + } | ||
| 39 | + | ||
| 40 | + public ScheduleResults_output getScheduleResults_output() { | ||
| 41 | + return scheduleResults_output; | ||
| 42 | + } | ||
| 43 | + | ||
| 44 | + public void setScheduleResults_output(ScheduleResults_output scheduleResults_output) { | ||
| 45 | + this.scheduleResults_output = scheduleResults_output; | ||
| 46 | + } | ||
| 47 | + | ||
| 48 | + public TTInfoResults_output getTtInfoResults_output() { | ||
| 49 | + return ttInfoResults_output; | ||
| 50 | + } | ||
| 51 | + | ||
| 52 | + public void setTtInfoResults_output(TTInfoResults_output ttInfoResults_output) { | ||
| 53 | + this.ttInfoResults_output = ttInfoResults_output; | ||
| 54 | + } | ||
| 55 | + | ||
| 56 | + public SchedulePlan getSchedulePlan() { | ||
| 57 | + return schedulePlan; | ||
| 58 | + } | ||
| 59 | + | ||
| 60 | + public void setSchedulePlan(SchedulePlan schedulePlan) { | ||
| 61 | + this.schedulePlan = schedulePlan; | ||
| 62 | + } | ||
| 63 | +} |
src/main/java/com/bsth/service/schedule/rules/shiftloop/GidFbTimeFunction.java
| 1 | -package com.bsth.service.schedule.rules.shiftloop; | ||
| 2 | - | ||
| 3 | -import com.bsth.entity.schedule.TTInfoDetail; | ||
| 4 | -import org.joda.time.LocalTime; | ||
| 5 | -import org.joda.time.format.DateTimeFormat; | ||
| 6 | -import org.kie.api.runtime.rule.AccumulateFunction; | ||
| 7 | - | ||
| 8 | -import java.io.*; | ||
| 9 | - | ||
| 10 | -/** | ||
| 11 | - * 时刻表路牌下的分班时间(起始时间)。 | ||
| 12 | - */ | ||
| 13 | -public class GidFbTimeFunction implements AccumulateFunction { | ||
| 14 | - @Override | ||
| 15 | - public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | ||
| 16 | - } | ||
| 17 | - | ||
| 18 | - @Override | ||
| 19 | - public void writeExternal(ObjectOutput out) throws IOException { | ||
| 20 | - } | ||
| 21 | - | ||
| 22 | - protected static class GidFbTimeData implements Externalizable { | ||
| 23 | - public LocalTime fbsj; | ||
| 24 | - public String fbsj_str; | ||
| 25 | - public TTInfoDetail ttInfoDetail; | ||
| 26 | - | ||
| 27 | - public GidFbTimeData() {} | ||
| 28 | - | ||
| 29 | - @Override | ||
| 30 | - public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | ||
| 31 | - fbsj_str = (String) in.readObject(); | ||
| 32 | - ttInfoDetail = (TTInfoDetail) in.readObject(); | ||
| 33 | - } | ||
| 34 | - | ||
| 35 | - @Override | ||
| 36 | - public void writeExternal(ObjectOutput out) throws IOException { | ||
| 37 | - out.writeObject(fbsj_str); | ||
| 38 | - out.writeObject(ttInfoDetail); | ||
| 39 | - } | ||
| 40 | - } | ||
| 41 | - | ||
| 42 | - @Override | ||
| 43 | - public Serializable createContext() { | ||
| 44 | - return new GidFbTimeData(); | ||
| 45 | - } | ||
| 46 | - | ||
| 47 | - @Override | ||
| 48 | - public void init(Serializable context) throws Exception { | ||
| 49 | - GidFbTimeData gidFbTimeData = (GidFbTimeData) context; | ||
| 50 | - gidFbTimeData.fbsj_str = "NULL"; // 注意:因为空的时间也要规则执行,所以返回一个表示空的字符串 | ||
| 51 | - } | ||
| 52 | - | ||
| 53 | - @Override | ||
| 54 | - public void accumulate(Serializable context, Object value) { | ||
| 55 | - GidFbTimeData gidFbTimeData = (GidFbTimeData) context; | ||
| 56 | - TTInfoDetail ttInfoDetail = (TTInfoDetail) value; | ||
| 57 | - | ||
| 58 | - // 1块路牌有多个分班班次,取最早的时间作为起始分班时间 | ||
| 59 | - if (ttInfoDetail.getIsFB()) { | ||
| 60 | - LocalTime localTime = LocalTime.parse(ttInfoDetail.getFcsj(), DateTimeFormat.forPattern("HH:mm")); | ||
| 61 | - | ||
| 62 | - if (gidFbTimeData.fbsj == null) { | ||
| 63 | - gidFbTimeData.fbsj = localTime; | ||
| 64 | - gidFbTimeData.fbsj_str = ttInfoDetail.getFcsj(); | ||
| 65 | - } else if (localTime.isBefore(gidFbTimeData.fbsj)) { | ||
| 66 | - gidFbTimeData.fbsj = localTime; | ||
| 67 | - gidFbTimeData.fbsj_str = ttInfoDetail.getFcsj(); | ||
| 68 | - } | ||
| 69 | - } | ||
| 70 | - } | ||
| 71 | - | ||
| 72 | - @Override | ||
| 73 | - public void reverse(Serializable serializable, Object o) throws Exception { | ||
| 74 | - | ||
| 75 | - } | ||
| 76 | - | ||
| 77 | - @Override | ||
| 78 | - public boolean supportsReverse() { | ||
| 79 | - return false; | ||
| 80 | - } | ||
| 81 | - | ||
| 82 | - @Override | ||
| 83 | - public Class<?> getResultType() { | ||
| 84 | - return String.class; | ||
| 85 | - } | ||
| 86 | - | ||
| 87 | - @Override | ||
| 88 | - public Object getResult(Serializable context) throws Exception { | ||
| 89 | - GidFbTimeData gidFbTimeData = (GidFbTimeData) context; | ||
| 90 | - return gidFbTimeData.fbsj_str; | ||
| 91 | - } | ||
| 92 | -} | 1 | +package com.bsth.service.schedule.rules.shiftloop; |
| 2 | + | ||
| 3 | +import com.bsth.entity.schedule.TTInfoDetail; | ||
| 4 | +import org.joda.time.LocalTime; | ||
| 5 | +import org.joda.time.format.DateTimeFormat; | ||
| 6 | +import org.kie.api.runtime.rule.AccumulateFunction; | ||
| 7 | + | ||
| 8 | +import java.io.*; | ||
| 9 | + | ||
| 10 | +/** | ||
| 11 | + * 时刻表路牌下的分班时间(起始时间)。 | ||
| 12 | + */ | ||
| 13 | +public class GidFbTimeFunction implements AccumulateFunction { | ||
| 14 | + @Override | ||
| 15 | + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | ||
| 16 | + } | ||
| 17 | + | ||
| 18 | + @Override | ||
| 19 | + public void writeExternal(ObjectOutput out) throws IOException { | ||
| 20 | + } | ||
| 21 | + | ||
| 22 | + protected static class GidFbTimeData implements Externalizable { | ||
| 23 | + public LocalTime fbsj; | ||
| 24 | + public String fbsj_str; | ||
| 25 | + public TTInfoDetail ttInfoDetail; | ||
| 26 | + | ||
| 27 | + public GidFbTimeData() {} | ||
| 28 | + | ||
| 29 | + @Override | ||
| 30 | + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | ||
| 31 | + fbsj_str = (String) in.readObject(); | ||
| 32 | + ttInfoDetail = (TTInfoDetail) in.readObject(); | ||
| 33 | + } | ||
| 34 | + | ||
| 35 | + @Override | ||
| 36 | + public void writeExternal(ObjectOutput out) throws IOException { | ||
| 37 | + out.writeObject(fbsj_str); | ||
| 38 | + out.writeObject(ttInfoDetail); | ||
| 39 | + } | ||
| 40 | + } | ||
| 41 | + | ||
| 42 | + @Override | ||
| 43 | + public Serializable createContext() { | ||
| 44 | + return new GidFbTimeData(); | ||
| 45 | + } | ||
| 46 | + | ||
| 47 | + @Override | ||
| 48 | + public void init(Serializable context) throws Exception { | ||
| 49 | + GidFbTimeData gidFbTimeData = (GidFbTimeData) context; | ||
| 50 | + gidFbTimeData.fbsj_str = "NULL"; // 注意:因为空的时间也要规则执行,所以返回一个表示空的字符串 | ||
| 51 | + } | ||
| 52 | + | ||
| 53 | + @Override | ||
| 54 | + public void accumulate(Serializable context, Object value) { | ||
| 55 | + GidFbTimeData gidFbTimeData = (GidFbTimeData) context; | ||
| 56 | + TTInfoDetail ttInfoDetail = (TTInfoDetail) value; | ||
| 57 | + | ||
| 58 | + // 1块路牌有多个分班班次,取最早的时间作为起始分班时间 | ||
| 59 | + if (ttInfoDetail.getIsFB()) { | ||
| 60 | + LocalTime localTime = LocalTime.parse(ttInfoDetail.getFcsj(), DateTimeFormat.forPattern("HH:mm")); | ||
| 61 | + | ||
| 62 | + if (gidFbTimeData.fbsj == null) { | ||
| 63 | + gidFbTimeData.fbsj = localTime; | ||
| 64 | + gidFbTimeData.fbsj_str = ttInfoDetail.getFcsj(); | ||
| 65 | + } else if (localTime.isBefore(gidFbTimeData.fbsj)) { | ||
| 66 | + gidFbTimeData.fbsj = localTime; | ||
| 67 | + gidFbTimeData.fbsj_str = ttInfoDetail.getFcsj(); | ||
| 68 | + } | ||
| 69 | + } | ||
| 70 | + } | ||
| 71 | + | ||
| 72 | + @Override | ||
| 73 | + public void reverse(Serializable serializable, Object o) throws Exception { | ||
| 74 | + | ||
| 75 | + } | ||
| 76 | + | ||
| 77 | + @Override | ||
| 78 | + public boolean supportsReverse() { | ||
| 79 | + return false; | ||
| 80 | + } | ||
| 81 | + | ||
| 82 | + @Override | ||
| 83 | + public Class<?> getResultType() { | ||
| 84 | + return String.class; | ||
| 85 | + } | ||
| 86 | + | ||
| 87 | + @Override | ||
| 88 | + public Object getResult(Serializable context) throws Exception { | ||
| 89 | + GidFbTimeData gidFbTimeData = (GidFbTimeData) context; | ||
| 90 | + return gidFbTimeData.fbsj_str; | ||
| 91 | + } | ||
| 92 | +} |
src/main/java/com/bsth/service/schedule/rules/shiftloop/GidsCountFunction.java
| 1 | -package com.bsth.service.schedule.rules.shiftloop; | ||
| 2 | - | ||
| 3 | -import com.bsth.entity.schedule.TTInfoDetail; | ||
| 4 | -import org.kie.api.runtime.rule.AccumulateFunction; | ||
| 5 | - | ||
| 6 | -import java.io.*; | ||
| 7 | -import java.util.ArrayList; | ||
| 8 | -import java.util.HashSet; | ||
| 9 | -import java.util.List; | ||
| 10 | -import java.util.Set; | ||
| 11 | - | ||
| 12 | -/** | ||
| 13 | - * 计算时刻表里的路爬列表。 | ||
| 14 | - */ | ||
| 15 | -public class GidsCountFunction implements AccumulateFunction { | ||
| 16 | - @Override | ||
| 17 | - public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | ||
| 18 | - } | ||
| 19 | - | ||
| 20 | - @Override | ||
| 21 | - public void writeExternal(ObjectOutput out) throws IOException { | ||
| 22 | - } | ||
| 23 | - | ||
| 24 | - protected static class GidsCountData implements Externalizable { | ||
| 25 | - public List<String> gids = new ArrayList<>(); | ||
| 26 | - public Set<String> gids_temp = new HashSet<>(); | ||
| 27 | - public TTInfoDetail ttInfoDetail; | ||
| 28 | - | ||
| 29 | - public GidsCountData() {} | ||
| 30 | - | ||
| 31 | - @Override | ||
| 32 | - public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | ||
| 33 | - gids = (List<String>) in.readObject(); | ||
| 34 | - ttInfoDetail = (TTInfoDetail) in.readObject(); | ||
| 35 | - } | ||
| 36 | - | ||
| 37 | - @Override | ||
| 38 | - public void writeExternal(ObjectOutput out) throws IOException { | ||
| 39 | - out.writeObject(gids); | ||
| 40 | - out.writeObject(ttInfoDetail); | ||
| 41 | - } | ||
| 42 | - } | ||
| 43 | - | ||
| 44 | - @Override | ||
| 45 | - public Serializable createContext() { | ||
| 46 | - return new GidsCountData(); | ||
| 47 | - } | ||
| 48 | - | ||
| 49 | - @Override | ||
| 50 | - public void init(Serializable context) throws Exception { | ||
| 51 | - GidsCountData gidsCountData = (GidsCountData) context; | ||
| 52 | - gidsCountData.gids = new ArrayList<>(); | ||
| 53 | - gidsCountData.gids_temp = new HashSet<>(); | ||
| 54 | - } | ||
| 55 | - | ||
| 56 | - @Override | ||
| 57 | - public void accumulate(Serializable context, Object value) { | ||
| 58 | - GidsCountData gidsCountData = (GidsCountData) context; | ||
| 59 | - TTInfoDetail ttInfoDetail = (TTInfoDetail) value; | ||
| 60 | - | ||
| 61 | - if (ttInfoDetail.getLp() != null) { | ||
| 62 | - gidsCountData.gids_temp.add( | ||
| 63 | - String.valueOf(ttInfoDetail.getLp().getId())); | ||
| 64 | - gidsCountData.gids.clear(); | ||
| 65 | - gidsCountData.gids.addAll(gidsCountData.gids_temp); | ||
| 66 | - } | ||
| 67 | - | ||
| 68 | - // TODO:以后还需要按照路牌排序 | ||
| 69 | - } | ||
| 70 | - | ||
| 71 | - @Override | ||
| 72 | - public void reverse(Serializable serializable, Object o) throws Exception { | ||
| 73 | - | ||
| 74 | - } | ||
| 75 | - | ||
| 76 | - @Override | ||
| 77 | - public boolean supportsReverse() { | ||
| 78 | - return false; | ||
| 79 | - } | ||
| 80 | - | ||
| 81 | - @Override | ||
| 82 | - public Object getResult(Serializable context) throws Exception { | ||
| 83 | - GidsCountData gidsCountData = (GidsCountData) context; | ||
| 84 | - return gidsCountData.gids; | ||
| 85 | - | ||
| 86 | - } | ||
| 87 | - | ||
| 88 | - @Override | ||
| 89 | - public Class<?> getResultType() { | ||
| 90 | - return List.class; | ||
| 91 | - } | ||
| 92 | -} | 1 | +package com.bsth.service.schedule.rules.shiftloop; |
| 2 | + | ||
| 3 | +import com.bsth.entity.schedule.TTInfoDetail; | ||
| 4 | +import org.kie.api.runtime.rule.AccumulateFunction; | ||
| 5 | + | ||
| 6 | +import java.io.*; | ||
| 7 | +import java.util.ArrayList; | ||
| 8 | +import java.util.HashSet; | ||
| 9 | +import java.util.List; | ||
| 10 | +import java.util.Set; | ||
| 11 | + | ||
| 12 | +/** | ||
| 13 | + * 计算时刻表里的路爬列表。 | ||
| 14 | + */ | ||
| 15 | +public class GidsCountFunction implements AccumulateFunction { | ||
| 16 | + @Override | ||
| 17 | + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | ||
| 18 | + } | ||
| 19 | + | ||
| 20 | + @Override | ||
| 21 | + public void writeExternal(ObjectOutput out) throws IOException { | ||
| 22 | + } | ||
| 23 | + | ||
| 24 | + protected static class GidsCountData implements Externalizable { | ||
| 25 | + public List<String> gids = new ArrayList<>(); | ||
| 26 | + public Set<String> gids_temp = new HashSet<>(); | ||
| 27 | + public TTInfoDetail ttInfoDetail; | ||
| 28 | + | ||
| 29 | + public GidsCountData() {} | ||
| 30 | + | ||
| 31 | + @Override | ||
| 32 | + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | ||
| 33 | + gids = (List<String>) in.readObject(); | ||
| 34 | + ttInfoDetail = (TTInfoDetail) in.readObject(); | ||
| 35 | + } | ||
| 36 | + | ||
| 37 | + @Override | ||
| 38 | + public void writeExternal(ObjectOutput out) throws IOException { | ||
| 39 | + out.writeObject(gids); | ||
| 40 | + out.writeObject(ttInfoDetail); | ||
| 41 | + } | ||
| 42 | + } | ||
| 43 | + | ||
| 44 | + @Override | ||
| 45 | + public Serializable createContext() { | ||
| 46 | + return new GidsCountData(); | ||
| 47 | + } | ||
| 48 | + | ||
| 49 | + @Override | ||
| 50 | + public void init(Serializable context) throws Exception { | ||
| 51 | + GidsCountData gidsCountData = (GidsCountData) context; | ||
| 52 | + gidsCountData.gids = new ArrayList<>(); | ||
| 53 | + gidsCountData.gids_temp = new HashSet<>(); | ||
| 54 | + } | ||
| 55 | + | ||
| 56 | + @Override | ||
| 57 | + public void accumulate(Serializable context, Object value) { | ||
| 58 | + GidsCountData gidsCountData = (GidsCountData) context; | ||
| 59 | + TTInfoDetail ttInfoDetail = (TTInfoDetail) value; | ||
| 60 | + | ||
| 61 | + if (ttInfoDetail.getLp() != null) { | ||
| 62 | + gidsCountData.gids_temp.add( | ||
| 63 | + String.valueOf(ttInfoDetail.getLp().getId())); | ||
| 64 | + gidsCountData.gids.clear(); | ||
| 65 | + gidsCountData.gids.addAll(gidsCountData.gids_temp); | ||
| 66 | + } | ||
| 67 | + | ||
| 68 | + // TODO:以后还需要按照路牌排序 | ||
| 69 | + } | ||
| 70 | + | ||
| 71 | + @Override | ||
| 72 | + public void reverse(Serializable serializable, Object o) throws Exception { | ||
| 73 | + | ||
| 74 | + } | ||
| 75 | + | ||
| 76 | + @Override | ||
| 77 | + public boolean supportsReverse() { | ||
| 78 | + return false; | ||
| 79 | + } | ||
| 80 | + | ||
| 81 | + @Override | ||
| 82 | + public Object getResult(Serializable context) throws Exception { | ||
| 83 | + GidsCountData gidsCountData = (GidsCountData) context; | ||
| 84 | + return gidsCountData.gids; | ||
| 85 | + | ||
| 86 | + } | ||
| 87 | + | ||
| 88 | + @Override | ||
| 89 | + public Class<?> getResultType() { | ||
| 90 | + return List.class; | ||
| 91 | + } | ||
| 92 | +} |
src/main/resources/rules/plan.drl
| 1 | -package com.bsth.service.schedule.plan; | ||
| 2 | - | ||
| 3 | -import org.joda.time.*; | ||
| 4 | -import java.util.*; | ||
| 5 | - | ||
| 6 | -import com.bsth.service.schedule.rules.plan.PlanCalcuParam_input; | ||
| 7 | -import com.bsth.service.schedule.rules.plan.PlanResult; | ||
| 8 | - | ||
| 9 | -import com.bsth.service.schedule.TTInfoService; | ||
| 10 | -import com.bsth.service.schedule.TTInfoDetailService; | ||
| 11 | -import com.bsth.service.schedule.CarConfigInfoService; | ||
| 12 | -import com.bsth.service.schedule.EmployeeConfigInfoService; | ||
| 13 | -import com.bsth.service.LineService; | ||
| 14 | -import com.bsth.service.BusinessService; | ||
| 15 | - | ||
| 16 | -import com.bsth.service.schedule.rules.shiftloop.ScheduleResult_output; | ||
| 17 | -import com.bsth.service.schedule.rules.shiftloop.ScheduleResults_output; | ||
| 18 | -import com.bsth.service.schedule.rules.ttinfo.TTInfoResult_output; | ||
| 19 | -import com.bsth.service.schedule.rules.ttinfo.TTInfoResults_output; | ||
| 20 | -import com.bsth.entity.Line; | ||
| 21 | -import com.bsth.entity.Business; | ||
| 22 | - | ||
| 23 | -import com.bsth.entity.schedule.CarConfigInfo; | ||
| 24 | -import com.bsth.entity.schedule.EmployeeConfigInfo; | ||
| 25 | -import com.bsth.entity.schedule.TTInfo; | ||
| 26 | -import com.bsth.entity.schedule.TTInfoDetail; | ||
| 27 | -import com.bsth.entity.schedule.SchedulePlanInfo; | ||
| 28 | - | ||
| 29 | -import org.slf4j.Logger | ||
| 30 | -import org.joda.time.format.DateTimeFormat | ||
| 31 | -import org.apache.commons.lang3.StringUtils; | ||
| 32 | - | ||
| 33 | - | ||
| 34 | -// 全局日志类(一般使用调用此规则的service类) | ||
| 35 | -global Logger log; | ||
| 36 | -global TTInfoDetailService tTInfoDetailService; | ||
| 37 | -global TTInfoService tTInfoService; | ||
| 38 | -global CarConfigInfoService carConfigInfoService; | ||
| 39 | -global EmployeeConfigInfoService employeeConfigInfoService; | ||
| 40 | -global LineService lineService; | ||
| 41 | -global BusinessService businessService; | ||
| 42 | - | ||
| 43 | -// 输出 | ||
| 44 | -global PlanResult planResult; | ||
| 45 | - | ||
| 46 | -function Map ttidParams(String ttid) { | ||
| 47 | - Map param = new HashMap(); | ||
| 48 | - param.put("ttinfo.id_eq", Long.parseLong(ttid)); | ||
| 49 | - return param; | ||
| 50 | -} | ||
| 51 | - | ||
| 52 | -function Map xlidParams(String xlid) { | ||
| 53 | - Map param = new HashMap(); | ||
| 54 | - param.put("xl.id_eq", Integer.valueOf(xlid)); | ||
| 55 | - return param; | ||
| 56 | -} | ||
| 57 | - | ||
| 58 | -function List ecList(EmployeeConfigInfoService service, String ecids) { | ||
| 59 | - List<String> ids = Arrays.asList(ecids.split("-")); | ||
| 60 | - List rst = new ArrayList(); | ||
| 61 | - for (int i = 0; i < ids.size(); i++) { | ||
| 62 | - rst.add(service.findById(Long.parseLong(ids.get(i)))); | ||
| 63 | - } | ||
| 64 | - return rst; | ||
| 65 | -} | ||
| 66 | - | ||
| 67 | -function LocalTime fcsjTime(String fcsj) { | ||
| 68 | - if ("NULL".equals(fcsj)) { | ||
| 69 | - return null; | ||
| 70 | - } | ||
| 71 | - return LocalTime.parse(fcsj, DateTimeFormat.forPattern("HH:mm")); | ||
| 72 | -} | ||
| 73 | - | ||
| 74 | -function String ttInfoId_sd(Map map, DateTime sd) { | ||
| 75 | - TTInfoResult_output ttInfoResult_output = (TTInfoResult_output) map.get(sd); | ||
| 76 | - return ttInfoResult_output.getTtInfoId(); | ||
| 77 | -} | ||
| 78 | - | ||
| 79 | -/* | ||
| 80 | - 规则说明: | ||
| 81 | - 根据循环规则输出,时刻表选择规则输出,组合计算排班明细 | ||
| 82 | -*/ | ||
| 83 | - | ||
| 84 | -//-------------------- 第一阶段、计算迭代数据 -----------------// | ||
| 85 | -declare Loop_result | ||
| 86 | - xlId: String // 线路id | ||
| 87 | - | ||
| 88 | - ruleLoop: List // 每天分配的规则 List<ScheduleResult_output> | ||
| 89 | - | ||
| 90 | - ttInfoMapLoop_temp: Map // 每天分配的时刻表 Map<DataTime, Collection<TTInfoResult_output>> | ||
| 91 | - ttInfoMapLoop: Map // 每天分配的时刻表 Map<DataTime, TTInfoResult_output> | ||
| 92 | - ttInfoMap: Map // 总共用到的时刻表 Map<id, TTInfoResult_output> | ||
| 93 | -end | ||
| 94 | - | ||
| 95 | -rule "calcu_step1_Loop_result" | ||
| 96 | - salience 1000 | ||
| 97 | - when | ||
| 98 | - $param: PlanCalcuParam_input($xlId: xlId) | ||
| 99 | - then | ||
| 100 | - Loop_result loop_result = new Loop_result(); | ||
| 101 | - loop_result.setXlId($xlId); | ||
| 102 | - loop_result.setRuleLoop($param.getScheduleResults_output().getResults()); | ||
| 103 | - | ||
| 104 | - loop_result.setTtInfoMapLoop(new HashMap()); | ||
| 105 | - loop_result.setTtInfoMap(new HashMap()); | ||
| 106 | - | ||
| 107 | - com.google.common.collect.Multimap ttInfoMap_temp = | ||
| 108 | - (com.google.common.collect.Multimap) | ||
| 109 | - $param.getTtInfoResults_output().getResults().get( | ||
| 110 | - String.valueOf($xlId)); | ||
| 111 | - | ||
| 112 | - loop_result.setTtInfoMapLoop_temp(ttInfoMap_temp.asMap()); | ||
| 113 | - | ||
| 114 | - insert(loop_result); | ||
| 115 | - | ||
| 116 | - log.info("calcu_step1_Loop_result"); | ||
| 117 | -end | ||
| 118 | - | ||
| 119 | -rule "calcu_step2_loop_result" | ||
| 120 | - salience 1000 | ||
| 121 | - no-loop | ||
| 122 | - when | ||
| 123 | - $param: PlanCalcuParam_input($xlId: xlId) | ||
| 124 | - $lr: Loop_result(xlId == $xlId) | ||
| 125 | - $sd: DateTime() from $lr.ttInfoMapLoop_temp.keySet() | ||
| 126 | - then | ||
| 127 | - // 当天时刻表只取第一张 TODO: | ||
| 128 | - Collection col = (Collection) $lr.getTtInfoMapLoop_temp().get($sd); | ||
| 129 | - Iterator iter = col.iterator(); | ||
| 130 | - TTInfoResult_output ttInfo_result = (TTInfoResult_output) iter.next(); | ||
| 131 | - $lr.getTtInfoMapLoop().put($sd, ttInfo_result); | ||
| 132 | - | ||
| 133 | - // 总共使用的时刻表 | ||
| 134 | - $lr.getTtInfoMap().put(ttInfo_result.getTtInfoId(), ttInfo_result); | ||
| 135 | - | ||
| 136 | - update($lr); | ||
| 137 | -end | ||
| 138 | - | ||
| 139 | -//-------------------- 第二阶段、将时刻表班次,车辆配置,人员配置信息载入 -----------------// | ||
| 140 | - | ||
| 141 | -//--------------- 车辆配置信息载入 -------------// | ||
| 142 | -declare CarConfig_Wrap | ||
| 143 | - id: String // 车辆配置id(cast字符串-方便比较) | ||
| 144 | - | ||
| 145 | - self: CarConfigInfo // 原始数据 | ||
| 146 | -end | ||
| 147 | - | ||
| 148 | -rule "calcu_CarConfig_Wrap" | ||
| 149 | - salience 800 | ||
| 150 | - when | ||
| 151 | - $lr: Loop_result($xlId: xlId) | ||
| 152 | - $ccf: CarConfigInfo() from carConfigInfoService.list(xlidParams($xlId)) | ||
| 153 | - then | ||
| 154 | - CarConfig_Wrap carConfig_wrap = new CarConfig_Wrap(); | ||
| 155 | - carConfig_wrap.setId(String.valueOf($ccf.getId())); | ||
| 156 | - carConfig_wrap.setSelf($ccf); | ||
| 157 | - | ||
| 158 | - insert(carConfig_wrap); | ||
| 159 | -end | ||
| 160 | - | ||
| 161 | -//--------------- 人员配置信息载入 --------------// | ||
| 162 | -declare EmployeeConfig_Wrap | ||
| 163 | - id: String // 人员配置id(cast字符串-方便比较) | ||
| 164 | - | ||
| 165 | - self: EmployeeConfigInfo // 原始数据 | ||
| 166 | -end | ||
| 167 | - | ||
| 168 | -rule "calcu_EmployeeConfig_Wrap" | ||
| 169 | - salience 800 | ||
| 170 | - when | ||
| 171 | - $lr: Loop_result($xlId: xlId) | ||
| 172 | - $eci: EmployeeConfigInfo() from employeeConfigInfoService.list(xlidParams($xlId)) | ||
| 173 | - then | ||
| 174 | - EmployeeConfig_Wrap employeeConfig_wrap = new EmployeeConfig_Wrap(); | ||
| 175 | - employeeConfig_wrap.setId(String.valueOf($eci.getId())); | ||
| 176 | - employeeConfig_wrap.setSelf($eci); | ||
| 177 | - | ||
| 178 | - insert(employeeConfig_wrap); | ||
| 179 | -end | ||
| 180 | - | ||
| 181 | -//----------------- 时刻表班次信息载入 -----------------// | ||
| 182 | -declare TTInfo_gid_stat | ||
| 183 | - xlId: String // 线路id(cast字符串-方便比较) | ||
| 184 | - ttInfoId: String // 时刻表id(cast字符串-方便比较) | ||
| 185 | - gid: String // 路牌id(cast字符串-方便比较) | ||
| 186 | - | ||
| 187 | - maxFcno: Integer // 最大发车顺序号 | ||
| 188 | - | ||
| 189 | - fbTime: LocalTime // 分班时间 | ||
| 190 | -end | ||
| 191 | - | ||
| 192 | -rule "calcu_TTInfo_gid_stat" | ||
| 193 | - salience 800 | ||
| 194 | - when | ||
| 195 | - $lr: Loop_result($xlId: xlId) | ||
| 196 | - $ttInfoId: String() from $lr.getTtInfoMap().keySet() | ||
| 197 | - $gids: List() from accumulate ($ttd: TTInfoDetail() from tTInfoDetailService.list(ttidParams($ttInfoId)), gidscount($ttd)) | ||
| 198 | - $gid: String() from $gids | ||
| 199 | - $fbtime_str: String() from accumulate ($ttd: TTInfoDetail(lp.id.toString() == $gid) from tTInfoDetailService.list(ttidParams($ttInfoId)), gidfbtime($ttd)) | ||
| 200 | - $maxfcno: Double() from accumulate ($ttd: TTInfoDetail(lp.id.toString() == $gid) from tTInfoDetailService.list(ttidParams($ttInfoId)), max($ttd.getFcno())) | ||
| 201 | - then | ||
| 202 | - TTInfo_gid_stat ttInfo_gid_stat = new TTInfo_gid_stat(); | ||
| 203 | - ttInfo_gid_stat.setXlId($xlId); | ||
| 204 | - ttInfo_gid_stat.setTtInfoId($ttInfoId); | ||
| 205 | - ttInfo_gid_stat.setGid($gid); | ||
| 206 | - | ||
| 207 | - ttInfo_gid_stat.setMaxFcno($maxfcno.intValue()); | ||
| 208 | - ttInfo_gid_stat.setFbTime(fcsjTime($fbtime_str)); | ||
| 209 | - | ||
| 210 | - insert(ttInfo_gid_stat); | ||
| 211 | - | ||
| 212 | - log.info("xlid={},ttid={},gid={},maxfcno={},fbtime={}", | ||
| 213 | - $xlId, $ttInfoId, $gid, ttInfo_gid_stat.getMaxFcno(), ttInfo_gid_stat.getFbTime()); | ||
| 214 | - | ||
| 215 | -end | ||
| 216 | - | ||
| 217 | -declare TTInfoDetail_Wrap | ||
| 218 | - xlId: String // 线路id(cast字符串-方便比较) | ||
| 219 | - ttInfoId: String // 时刻表id(cast字符串-方便比较) | ||
| 220 | - gid: String // 路牌id(cast字符串-方便比较) | ||
| 221 | - | ||
| 222 | - isFirstBc: Boolean = false // 是否是当前路牌的第一个班次 | ||
| 223 | - isLastBc: Boolean = false // 是否是当前路牌的最后一个班次 | ||
| 224 | - isFb: Boolean = false // 是否分班 | ||
| 225 | - | ||
| 226 | - self: TTInfoDetail // 原始数据 | ||
| 227 | -end | ||
| 228 | - | ||
| 229 | -rule "calcu_TTInfoDetail_Wrap" | ||
| 230 | - salience 800 | ||
| 231 | - when | ||
| 232 | - $lr: Loop_result($xlId: xlId) | ||
| 233 | - $ttInfoId: String() from $lr.getTtInfoMap().keySet() | ||
| 234 | - $ttInfoStat: TTInfo_gid_stat( | ||
| 235 | - ttInfoId == $ttInfoId, | ||
| 236 | - $gid: gid, $maxFcno: maxFcno) | ||
| 237 | - $ttInfoDetail: TTInfoDetail(lp.id.toString() == $gid) from tTInfoDetailService.list(ttidParams($ttInfoId)) | ||
| 238 | - then | ||
| 239 | - TTInfoDetail_Wrap ttInfoDetail_wrap = new TTInfoDetail_Wrap(); | ||
| 240 | - ttInfoDetail_wrap.setXlId($xlId); | ||
| 241 | - ttInfoDetail_wrap.setTtInfoId($ttInfoId); | ||
| 242 | - ttInfoDetail_wrap.setGid($gid); | ||
| 243 | - ttInfoDetail_wrap.setIsFirstBc(1 == $ttInfoDetail.getFcno()); | ||
| 244 | - ttInfoDetail_wrap.setIsLastBc($maxFcno == $ttInfoDetail.getFcno()); | ||
| 245 | - | ||
| 246 | - LocalTime fcsj = fcsjTime($ttInfoDetail.getFcsj()); | ||
| 247 | - LocalTime fbsj = $ttInfoStat.getFbTime(); | ||
| 248 | - ttInfoDetail_wrap.setIsFb(fbsj == null ? false : (fcsj.isEqual(fbsj) || fcsj.isAfter(fbsj))); | ||
| 249 | - | ||
| 250 | - ttInfoDetail_wrap.setSelf($ttInfoDetail); | ||
| 251 | - | ||
| 252 | - insert(ttInfoDetail_wrap); | ||
| 253 | - | ||
| 254 | - log.info("xlid={},ttid={},gid={},isFirstBc={},isLastBc={},isFb={},fcsj={}", | ||
| 255 | - $xlId, $ttInfoId, $gid, | ||
| 256 | - ttInfoDetail_wrap.getIsFirstBc(), | ||
| 257 | - ttInfoDetail_wrap.getIsLastBc(), | ||
| 258 | - ttInfoDetail_wrap.getIsFb(), | ||
| 259 | - $ttInfoDetail.getFcsj()); | ||
| 260 | -end | ||
| 261 | - | ||
| 262 | -//-------------------- 第三阶段、合并计算SchedulePlanInfo -----------------// | ||
| 263 | - | ||
| 264 | -rule "Calcu_SchedulePlanInfo" | ||
| 265 | - salience 600 | ||
| 266 | - when | ||
| 267 | - $param: PlanCalcuParam_input($xlId: xlId) | ||
| 268 | - $lr: Loop_result(xlId == $xlId) | ||
| 269 | - $sro: ScheduleResult_output($sd: sd, $gid: guideboardId) from $lr.getRuleLoop() | ||
| 270 | - CarConfig_Wrap(id == $sro.carConfigId, $cc: self) | ||
| 271 | - TTInfoDetail_Wrap( | ||
| 272 | - ttInfoId == ttInfoId_sd($lr.getTtInfoMapLoop(), $sd), | ||
| 273 | - gid == $gid, | ||
| 274 | - $isFb: isFb, $isFirstBc: isFirstBc, $isLastBc: isLastBc, | ||
| 275 | - $ttInfoDetail: self | ||
| 276 | - ) | ||
| 277 | - then | ||
| 278 | - // 线路 | ||
| 279 | - Line xl = lineService.findById(Integer.valueOf($xlId)); | ||
| 280 | - | ||
| 281 | - SchedulePlanInfo schedulePlanInfo = new SchedulePlanInfo( | ||
| 282 | - xl, | ||
| 283 | - $sro, | ||
| 284 | - $ttInfoDetail, | ||
| 285 | - $isFb, | ||
| 286 | - $cc, | ||
| 287 | - ecList(employeeConfigInfoService, $sro.getEmployeeConfigId()), | ||
| 288 | - $param.getSchedulePlan(), | ||
| 289 | - $isFirstBc, | ||
| 290 | - $isLastBc | ||
| 291 | - ); | ||
| 292 | - | ||
| 293 | - // 获取公司,分公司信息 | ||
| 294 | - String gsbm = xl.getCompany(); | ||
| 295 | - String fgsbm = xl.getBrancheCompany(); | ||
| 296 | - Business gs = null; | ||
| 297 | - Business fgs = null; | ||
| 298 | - | ||
| 299 | - Map<String, Object> param = new HashMap<>(); | ||
| 300 | - | ||
| 301 | - if (StringUtils.isNotEmpty(gsbm)) { | ||
| 302 | - param.clear(); | ||
| 303 | - param.put("businessCode_eq", gsbm); | ||
| 304 | - Iterator<Business> businessIterator = businessService.list(param).iterator(); | ||
| 305 | - if (businessIterator.hasNext()) { | ||
| 306 | - gs = businessIterator.next(); | ||
| 307 | - } | ||
| 308 | - } | ||
| 309 | - if (StringUtils.isNotEmpty(gsbm) && StringUtils.isNotEmpty(fgsbm)) { | ||
| 310 | - param.clear();; | ||
| 311 | - param.put("upCode_eq", gsbm); | ||
| 312 | - param.put("businessCode_eq", fgsbm); | ||
| 313 | - Iterator<Business> businessIterator = businessService.list(param).iterator(); | ||
| 314 | - if (businessIterator.hasNext()) { | ||
| 315 | - fgs = businessIterator.next(); | ||
| 316 | - } | ||
| 317 | - } | ||
| 318 | - | ||
| 319 | - if (gs != null) { | ||
| 320 | - schedulePlanInfo.setGsBm(gs.getBusinessCode()); | ||
| 321 | - schedulePlanInfo.setGsName(gs.getBusinessName()); | ||
| 322 | - } | ||
| 323 | - if (fgs != null) { | ||
| 324 | - schedulePlanInfo.setFgsBm(fgs.getBusinessCode()); | ||
| 325 | - schedulePlanInfo.setFgsName(fgs.getBusinessName()); | ||
| 326 | - } | ||
| 327 | - | ||
| 328 | - // 操作人,操作时间 | ||
| 329 | - schedulePlanInfo.setCreateBy($param.getSchedulePlan().getCreateBy()); | ||
| 330 | - schedulePlanInfo.setCreateDate($param.getSchedulePlan().getCreateDate()); | ||
| 331 | - schedulePlanInfo.setUpdateBy($param.getSchedulePlan().getUpdateBy()); | ||
| 332 | - schedulePlanInfo.setUpdateDate($param.getSchedulePlan().getUpdateDate()); | ||
| 333 | - | ||
| 334 | - // TODO: | ||
| 335 | - $param.getSchedulePlan().setTtInfo($ttInfoDetail.getTtinfo()); | ||
| 336 | - | ||
| 337 | - // result 输出 | ||
| 338 | - planResult.getSchedulePlanInfos().add(schedulePlanInfo); | ||
| 339 | - | ||
| 340 | - log.info("gid={},ecid={},ttInfoId={}", | ||
| 341 | - $gid, ecList(employeeConfigInfoService, $sro.getEmployeeConfigId()), | ||
| 342 | - ttInfoId_sd($lr.getTtInfoMapLoop(), $sd)); | ||
| 343 | - | ||
| 344 | -end | ||
| 345 | - | ||
| 346 | - | ||
| 347 | - | ||
| 348 | - | ||
| 349 | - | ||
| 350 | - | ||
| 351 | - | ||
| 352 | - | ||
| 353 | - | ||
| 354 | - | ||
| 355 | - | ||
| 356 | - | ||
| 357 | - | ||
| 358 | - | ||
| 359 | - | 1 | +package com.bsth.service.schedule.plan; |
| 2 | + | ||
| 3 | +import org.joda.time.*; | ||
| 4 | +import java.util.*; | ||
| 5 | + | ||
| 6 | +import com.bsth.service.schedule.rules.plan.PlanCalcuParam_input; | ||
| 7 | +import com.bsth.service.schedule.rules.plan.PlanResult; | ||
| 8 | + | ||
| 9 | +import com.bsth.service.schedule.TTInfoService; | ||
| 10 | +import com.bsth.service.schedule.TTInfoDetailService; | ||
| 11 | +import com.bsth.service.schedule.CarConfigInfoService; | ||
| 12 | +import com.bsth.service.schedule.EmployeeConfigInfoService; | ||
| 13 | +import com.bsth.service.LineService; | ||
| 14 | +import com.bsth.service.BusinessService; | ||
| 15 | + | ||
| 16 | +import com.bsth.service.schedule.rules.shiftloop.ScheduleResult_output; | ||
| 17 | +import com.bsth.service.schedule.rules.shiftloop.ScheduleResults_output; | ||
| 18 | +import com.bsth.service.schedule.rules.ttinfo.TTInfoResult_output; | ||
| 19 | +import com.bsth.service.schedule.rules.ttinfo.TTInfoResults_output; | ||
| 20 | +import com.bsth.entity.Line; | ||
| 21 | +import com.bsth.entity.Business; | ||
| 22 | + | ||
| 23 | +import com.bsth.entity.schedule.CarConfigInfo; | ||
| 24 | +import com.bsth.entity.schedule.EmployeeConfigInfo; | ||
| 25 | +import com.bsth.entity.schedule.TTInfo; | ||
| 26 | +import com.bsth.entity.schedule.TTInfoDetail; | ||
| 27 | +import com.bsth.entity.schedule.SchedulePlanInfo; | ||
| 28 | + | ||
| 29 | +import org.slf4j.Logger | ||
| 30 | +import org.joda.time.format.DateTimeFormat | ||
| 31 | +import org.apache.commons.lang3.StringUtils; | ||
| 32 | + | ||
| 33 | + | ||
| 34 | +// 全局日志类(一般使用调用此规则的service类) | ||
| 35 | +global Logger log; | ||
| 36 | +global TTInfoDetailService tTInfoDetailService; | ||
| 37 | +global TTInfoService tTInfoService; | ||
| 38 | +global CarConfigInfoService carConfigInfoService; | ||
| 39 | +global EmployeeConfigInfoService employeeConfigInfoService; | ||
| 40 | +global LineService lineService; | ||
| 41 | +global BusinessService businessService; | ||
| 42 | + | ||
| 43 | +// 输出 | ||
| 44 | +global PlanResult planResult; | ||
| 45 | + | ||
| 46 | +function Map ttidParams(String ttid) { | ||
| 47 | + Map param = new HashMap(); | ||
| 48 | + param.put("ttinfo.id_eq", Long.parseLong(ttid)); | ||
| 49 | + return param; | ||
| 50 | +} | ||
| 51 | + | ||
| 52 | +function Map xlidParams(String xlid) { | ||
| 53 | + Map param = new HashMap(); | ||
| 54 | + param.put("xl.id_eq", Integer.valueOf(xlid)); | ||
| 55 | + return param; | ||
| 56 | +} | ||
| 57 | + | ||
| 58 | +function List ecList(EmployeeConfigInfoService service, String ecids) { | ||
| 59 | + List<String> ids = Arrays.asList(ecids.split("-")); | ||
| 60 | + List rst = new ArrayList(); | ||
| 61 | + for (int i = 0; i < ids.size(); i++) { | ||
| 62 | + rst.add(service.findById(Long.parseLong(ids.get(i)))); | ||
| 63 | + } | ||
| 64 | + return rst; | ||
| 65 | +} | ||
| 66 | + | ||
| 67 | +function LocalTime fcsjTime(String fcsj) { | ||
| 68 | + if ("NULL".equals(fcsj)) { | ||
| 69 | + return null; | ||
| 70 | + } | ||
| 71 | + return LocalTime.parse(fcsj, DateTimeFormat.forPattern("HH:mm")); | ||
| 72 | +} | ||
| 73 | + | ||
| 74 | +function String ttInfoId_sd(Map map, DateTime sd) { | ||
| 75 | + TTInfoResult_output ttInfoResult_output = (TTInfoResult_output) map.get(sd); | ||
| 76 | + return ttInfoResult_output.getTtInfoId(); | ||
| 77 | +} | ||
| 78 | + | ||
| 79 | +/* | ||
| 80 | + 规则说明: | ||
| 81 | + 根据循环规则输出,时刻表选择规则输出,组合计算排班明细 | ||
| 82 | +*/ | ||
| 83 | + | ||
| 84 | +//-------------------- 第一阶段、计算迭代数据 -----------------// | ||
| 85 | +declare Loop_result | ||
| 86 | + xlId: String // 线路id | ||
| 87 | + | ||
| 88 | + ruleLoop: List // 每天分配的规则 List<ScheduleResult_output> | ||
| 89 | + | ||
| 90 | + ttInfoMapLoop_temp: Map // 每天分配的时刻表 Map<DataTime, Collection<TTInfoResult_output>> | ||
| 91 | + ttInfoMapLoop: Map // 每天分配的时刻表 Map<DataTime, TTInfoResult_output> | ||
| 92 | + ttInfoMap: Map // 总共用到的时刻表 Map<id, TTInfoResult_output> | ||
| 93 | +end | ||
| 94 | + | ||
| 95 | +rule "calcu_step1_Loop_result" | ||
| 96 | + salience 1000 | ||
| 97 | + when | ||
| 98 | + $param: PlanCalcuParam_input($xlId: xlId) | ||
| 99 | + then | ||
| 100 | + Loop_result loop_result = new Loop_result(); | ||
| 101 | + loop_result.setXlId($xlId); | ||
| 102 | + loop_result.setRuleLoop($param.getScheduleResults_output().getResults()); | ||
| 103 | + | ||
| 104 | + loop_result.setTtInfoMapLoop(new HashMap()); | ||
| 105 | + loop_result.setTtInfoMap(new HashMap()); | ||
| 106 | + | ||
| 107 | + com.google.common.collect.Multimap ttInfoMap_temp = | ||
| 108 | + (com.google.common.collect.Multimap) | ||
| 109 | + $param.getTtInfoResults_output().getResults().get( | ||
| 110 | + String.valueOf($xlId)); | ||
| 111 | + | ||
| 112 | + loop_result.setTtInfoMapLoop_temp(ttInfoMap_temp.asMap()); | ||
| 113 | + | ||
| 114 | + insert(loop_result); | ||
| 115 | + | ||
| 116 | + log.info("calcu_step1_Loop_result"); | ||
| 117 | +end | ||
| 118 | + | ||
| 119 | +rule "calcu_step2_loop_result" | ||
| 120 | + salience 1000 | ||
| 121 | + no-loop | ||
| 122 | + when | ||
| 123 | + $param: PlanCalcuParam_input($xlId: xlId) | ||
| 124 | + $lr: Loop_result(xlId == $xlId) | ||
| 125 | + $sd: DateTime() from $lr.ttInfoMapLoop_temp.keySet() | ||
| 126 | + then | ||
| 127 | + // 当天时刻表只取第一张 TODO: | ||
| 128 | + Collection col = (Collection) $lr.getTtInfoMapLoop_temp().get($sd); | ||
| 129 | + Iterator iter = col.iterator(); | ||
| 130 | + TTInfoResult_output ttInfo_result = (TTInfoResult_output) iter.next(); | ||
| 131 | + $lr.getTtInfoMapLoop().put($sd, ttInfo_result); | ||
| 132 | + | ||
| 133 | + // 总共使用的时刻表 | ||
| 134 | + $lr.getTtInfoMap().put(ttInfo_result.getTtInfoId(), ttInfo_result); | ||
| 135 | + | ||
| 136 | + update($lr); | ||
| 137 | +end | ||
| 138 | + | ||
| 139 | +//-------------------- 第二阶段、将时刻表班次,车辆配置,人员配置信息载入 -----------------// | ||
| 140 | + | ||
| 141 | +//--------------- 车辆配置信息载入 -------------// | ||
| 142 | +declare CarConfig_Wrap | ||
| 143 | + id: String // 车辆配置id(cast字符串-方便比较) | ||
| 144 | + | ||
| 145 | + self: CarConfigInfo // 原始数据 | ||
| 146 | +end | ||
| 147 | + | ||
| 148 | +rule "calcu_CarConfig_Wrap" | ||
| 149 | + salience 800 | ||
| 150 | + when | ||
| 151 | + $lr: Loop_result($xlId: xlId) | ||
| 152 | + $ccf: CarConfigInfo() from carConfigInfoService.list(xlidParams($xlId)) | ||
| 153 | + then | ||
| 154 | + CarConfig_Wrap carConfig_wrap = new CarConfig_Wrap(); | ||
| 155 | + carConfig_wrap.setId(String.valueOf($ccf.getId())); | ||
| 156 | + carConfig_wrap.setSelf($ccf); | ||
| 157 | + | ||
| 158 | + insert(carConfig_wrap); | ||
| 159 | +end | ||
| 160 | + | ||
| 161 | +//--------------- 人员配置信息载入 --------------// | ||
| 162 | +declare EmployeeConfig_Wrap | ||
| 163 | + id: String // 人员配置id(cast字符串-方便比较) | ||
| 164 | + | ||
| 165 | + self: EmployeeConfigInfo // 原始数据 | ||
| 166 | +end | ||
| 167 | + | ||
| 168 | +rule "calcu_EmployeeConfig_Wrap" | ||
| 169 | + salience 800 | ||
| 170 | + when | ||
| 171 | + $lr: Loop_result($xlId: xlId) | ||
| 172 | + $eci: EmployeeConfigInfo() from employeeConfigInfoService.list(xlidParams($xlId)) | ||
| 173 | + then | ||
| 174 | + EmployeeConfig_Wrap employeeConfig_wrap = new EmployeeConfig_Wrap(); | ||
| 175 | + employeeConfig_wrap.setId(String.valueOf($eci.getId())); | ||
| 176 | + employeeConfig_wrap.setSelf($eci); | ||
| 177 | + | ||
| 178 | + insert(employeeConfig_wrap); | ||
| 179 | +end | ||
| 180 | + | ||
| 181 | +//----------------- 时刻表班次信息载入 -----------------// | ||
| 182 | +declare TTInfo_gid_stat | ||
| 183 | + xlId: String // 线路id(cast字符串-方便比较) | ||
| 184 | + ttInfoId: String // 时刻表id(cast字符串-方便比较) | ||
| 185 | + gid: String // 路牌id(cast字符串-方便比较) | ||
| 186 | + | ||
| 187 | + maxFcno: Integer // 最大发车顺序号 | ||
| 188 | + | ||
| 189 | + fbTime: LocalTime // 分班时间 | ||
| 190 | +end | ||
| 191 | + | ||
| 192 | +rule "calcu_TTInfo_gid_stat" | ||
| 193 | + salience 800 | ||
| 194 | + when | ||
| 195 | + $lr: Loop_result($xlId: xlId) | ||
| 196 | + $ttInfoId: String() from $lr.getTtInfoMap().keySet() | ||
| 197 | + $gids: List() from accumulate ($ttd: TTInfoDetail() from tTInfoDetailService.list(ttidParams($ttInfoId)), gidscount($ttd)) | ||
| 198 | + $gid: String() from $gids | ||
| 199 | + $fbtime_str: String() from accumulate ($ttd: TTInfoDetail(lp.id.toString() == $gid) from tTInfoDetailService.list(ttidParams($ttInfoId)), gidfbtime($ttd)) | ||
| 200 | + $maxfcno: Double() from accumulate ($ttd: TTInfoDetail(lp.id.toString() == $gid) from tTInfoDetailService.list(ttidParams($ttInfoId)), max($ttd.getFcno())) | ||
| 201 | + then | ||
| 202 | + TTInfo_gid_stat ttInfo_gid_stat = new TTInfo_gid_stat(); | ||
| 203 | + ttInfo_gid_stat.setXlId($xlId); | ||
| 204 | + ttInfo_gid_stat.setTtInfoId($ttInfoId); | ||
| 205 | + ttInfo_gid_stat.setGid($gid); | ||
| 206 | + | ||
| 207 | + ttInfo_gid_stat.setMaxFcno($maxfcno.intValue()); | ||
| 208 | + ttInfo_gid_stat.setFbTime(fcsjTime($fbtime_str)); | ||
| 209 | + | ||
| 210 | + insert(ttInfo_gid_stat); | ||
| 211 | + | ||
| 212 | + log.info("xlid={},ttid={},gid={},maxfcno={},fbtime={}", | ||
| 213 | + $xlId, $ttInfoId, $gid, ttInfo_gid_stat.getMaxFcno(), ttInfo_gid_stat.getFbTime()); | ||
| 214 | + | ||
| 215 | +end | ||
| 216 | + | ||
| 217 | +declare TTInfoDetail_Wrap | ||
| 218 | + xlId: String // 线路id(cast字符串-方便比较) | ||
| 219 | + ttInfoId: String // 时刻表id(cast字符串-方便比较) | ||
| 220 | + gid: String // 路牌id(cast字符串-方便比较) | ||
| 221 | + | ||
| 222 | + isFirstBc: Boolean = false // 是否是当前路牌的第一个班次 | ||
| 223 | + isLastBc: Boolean = false // 是否是当前路牌的最后一个班次 | ||
| 224 | + isFb: Boolean = false // 是否分班 | ||
| 225 | + | ||
| 226 | + self: TTInfoDetail // 原始数据 | ||
| 227 | +end | ||
| 228 | + | ||
| 229 | +rule "calcu_TTInfoDetail_Wrap" | ||
| 230 | + salience 800 | ||
| 231 | + when | ||
| 232 | + $lr: Loop_result($xlId: xlId) | ||
| 233 | + $ttInfoId: String() from $lr.getTtInfoMap().keySet() | ||
| 234 | + $ttInfoStat: TTInfo_gid_stat( | ||
| 235 | + ttInfoId == $ttInfoId, | ||
| 236 | + $gid: gid, $maxFcno: maxFcno) | ||
| 237 | + $ttInfoDetail: TTInfoDetail(lp.id.toString() == $gid) from tTInfoDetailService.list(ttidParams($ttInfoId)) | ||
| 238 | + then | ||
| 239 | + TTInfoDetail_Wrap ttInfoDetail_wrap = new TTInfoDetail_Wrap(); | ||
| 240 | + ttInfoDetail_wrap.setXlId($xlId); | ||
| 241 | + ttInfoDetail_wrap.setTtInfoId($ttInfoId); | ||
| 242 | + ttInfoDetail_wrap.setGid($gid); | ||
| 243 | + ttInfoDetail_wrap.setIsFirstBc(1 == $ttInfoDetail.getFcno()); | ||
| 244 | + ttInfoDetail_wrap.setIsLastBc($maxFcno == $ttInfoDetail.getFcno()); | ||
| 245 | + | ||
| 246 | + LocalTime fcsj = fcsjTime($ttInfoDetail.getFcsj()); | ||
| 247 | + LocalTime fbsj = $ttInfoStat.getFbTime(); | ||
| 248 | + ttInfoDetail_wrap.setIsFb(fbsj == null ? false : (fcsj.isEqual(fbsj) || fcsj.isAfter(fbsj))); | ||
| 249 | + | ||
| 250 | + ttInfoDetail_wrap.setSelf($ttInfoDetail); | ||
| 251 | + | ||
| 252 | + insert(ttInfoDetail_wrap); | ||
| 253 | + | ||
| 254 | + log.info("xlid={},ttid={},gid={},isFirstBc={},isLastBc={},isFb={},fcsj={}", | ||
| 255 | + $xlId, $ttInfoId, $gid, | ||
| 256 | + ttInfoDetail_wrap.getIsFirstBc(), | ||
| 257 | + ttInfoDetail_wrap.getIsLastBc(), | ||
| 258 | + ttInfoDetail_wrap.getIsFb(), | ||
| 259 | + $ttInfoDetail.getFcsj()); | ||
| 260 | +end | ||
| 261 | + | ||
| 262 | +//-------------------- 第三阶段、合并计算SchedulePlanInfo -----------------// | ||
| 263 | + | ||
| 264 | +rule "Calcu_SchedulePlanInfo" | ||
| 265 | + salience 600 | ||
| 266 | + when | ||
| 267 | + $param: PlanCalcuParam_input($xlId: xlId) | ||
| 268 | + $lr: Loop_result(xlId == $xlId) | ||
| 269 | + $sro: ScheduleResult_output($sd: sd, $gid: guideboardId) from $lr.getRuleLoop() | ||
| 270 | + CarConfig_Wrap(id == $sro.carConfigId, $cc: self) | ||
| 271 | + TTInfoDetail_Wrap( | ||
| 272 | + ttInfoId == ttInfoId_sd($lr.getTtInfoMapLoop(), $sd), | ||
| 273 | + gid == $gid, | ||
| 274 | + $isFb: isFb, $isFirstBc: isFirstBc, $isLastBc: isLastBc, | ||
| 275 | + $ttInfoDetail: self | ||
| 276 | + ) | ||
| 277 | + then | ||
| 278 | + // 线路 | ||
| 279 | + Line xl = lineService.findById(Integer.valueOf($xlId)); | ||
| 280 | + | ||
| 281 | + SchedulePlanInfo schedulePlanInfo = new SchedulePlanInfo( | ||
| 282 | + xl, | ||
| 283 | + $sro, | ||
| 284 | + $ttInfoDetail, | ||
| 285 | + $isFb, | ||
| 286 | + $cc, | ||
| 287 | + ecList(employeeConfigInfoService, $sro.getEmployeeConfigId()), | ||
| 288 | + $param.getSchedulePlan(), | ||
| 289 | + $isFirstBc, | ||
| 290 | + $isLastBc | ||
| 291 | + ); | ||
| 292 | + | ||
| 293 | + // 获取公司,分公司信息 | ||
| 294 | + String gsbm = xl.getCompany(); | ||
| 295 | + String fgsbm = xl.getBrancheCompany(); | ||
| 296 | + Business gs = null; | ||
| 297 | + Business fgs = null; | ||
| 298 | + | ||
| 299 | + Map<String, Object> param = new HashMap<>(); | ||
| 300 | + | ||
| 301 | + if (StringUtils.isNotEmpty(gsbm)) { | ||
| 302 | + param.clear(); | ||
| 303 | + param.put("businessCode_eq", gsbm); | ||
| 304 | + Iterator<Business> businessIterator = businessService.list(param).iterator(); | ||
| 305 | + if (businessIterator.hasNext()) { | ||
| 306 | + gs = businessIterator.next(); | ||
| 307 | + } | ||
| 308 | + } | ||
| 309 | + if (StringUtils.isNotEmpty(gsbm) && StringUtils.isNotEmpty(fgsbm)) { | ||
| 310 | + param.clear();; | ||
| 311 | + param.put("upCode_eq", gsbm); | ||
| 312 | + param.put("businessCode_eq", fgsbm); | ||
| 313 | + Iterator<Business> businessIterator = businessService.list(param).iterator(); | ||
| 314 | + if (businessIterator.hasNext()) { | ||
| 315 | + fgs = businessIterator.next(); | ||
| 316 | + } | ||
| 317 | + } | ||
| 318 | + | ||
| 319 | + if (gs != null) { | ||
| 320 | + schedulePlanInfo.setGsBm(gs.getBusinessCode()); | ||
| 321 | + schedulePlanInfo.setGsName(gs.getBusinessName()); | ||
| 322 | + } | ||
| 323 | + if (fgs != null) { | ||
| 324 | + schedulePlanInfo.setFgsBm(fgs.getBusinessCode()); | ||
| 325 | + schedulePlanInfo.setFgsName(fgs.getBusinessName()); | ||
| 326 | + } | ||
| 327 | + | ||
| 328 | + // 操作人,操作时间 | ||
| 329 | + schedulePlanInfo.setCreateBy($param.getSchedulePlan().getCreateBy()); | ||
| 330 | + schedulePlanInfo.setCreateDate($param.getSchedulePlan().getCreateDate()); | ||
| 331 | + schedulePlanInfo.setUpdateBy($param.getSchedulePlan().getUpdateBy()); | ||
| 332 | + schedulePlanInfo.setUpdateDate($param.getSchedulePlan().getUpdateDate()); | ||
| 333 | + | ||
| 334 | + // TODO: | ||
| 335 | + $param.getSchedulePlan().setTtInfo($ttInfoDetail.getTtinfo()); | ||
| 336 | + | ||
| 337 | + // result 输出 | ||
| 338 | + planResult.getSchedulePlanInfos().add(schedulePlanInfo); | ||
| 339 | + | ||
| 340 | + log.info("gid={},ecid={},ttInfoId={}", | ||
| 341 | + $gid, ecList(employeeConfigInfoService, $sro.getEmployeeConfigId()), | ||
| 342 | + ttInfoId_sd($lr.getTtInfoMapLoop(), $sd)); | ||
| 343 | + | ||
| 344 | +end | ||
| 345 | + | ||
| 346 | + | ||
| 347 | + | ||
| 348 | + | ||
| 349 | + | ||
| 350 | + | ||
| 351 | + | ||
| 352 | + | ||
| 353 | + | ||
| 354 | + | ||
| 355 | + | ||
| 356 | + | ||
| 357 | + | ||
| 358 | + | ||
| 359 | + |
src/main/resources/static/pages/forms/statement/waybill.html
src/main/resources/static/pages/forms/statement/waybillBf.html
| @@ -22,90 +22,48 @@ | @@ -22,90 +22,48 @@ | ||
| 22 | </div> | 22 | </div> |
| 23 | </div> | 23 | </div> |
| 24 | 24 | ||
| 25 | - | ||
| 26 | <div class="row"> | 25 | <div class="row"> |
| 27 | - | ||
| 28 | <div class="col-md-12"> | 26 | <div class="col-md-12"> |
| 29 | - | ||
| 30 | <div class="portlet light porttlet-fit bordered"> | 27 | <div class="portlet light porttlet-fit bordered"> |
| 31 | - | ||
| 32 | <div class="portlet-title"> | 28 | <div class="portlet-title"> |
| 33 | - | ||
| 34 | <form class="form-inline" action=""> | 29 | <form class="form-inline" action=""> |
| 35 | - | ||
| 36 | <div style="display: inline-block;"> | 30 | <div style="display: inline-block;"> |
| 37 | - | ||
| 38 | <span class="item-label" style="width: 80px;">线路: </span> | 31 | <span class="item-label" style="width: 80px;">线路: </span> |
| 39 | <select class="form-control" name="line" id="line" style="width: 180px;"></select> | 32 | <select class="form-control" name="line" id="line" style="width: 180px;"></select> |
| 40 | - | ||
| 41 | </div> | 33 | </div> |
| 42 | - | ||
| 43 | <div style="display: inline-block;margin-left: 15px;"> | 34 | <div style="display: inline-block;margin-left: 15px;"> |
| 44 | - | ||
| 45 | <span class="item-label" style="width: 80px;">时间: </span> | 35 | <span class="item-label" style="width: 80px;">时间: </span> |
| 46 | - | ||
| 47 | <input class="form-control" type="text" id="date" style="width: 180px;"/> | 36 | <input class="form-control" type="text" id="date" style="width: 180px;"/> |
| 48 | - | ||
| 49 | </div> | 37 | </div> |
| 50 | - | ||
| 51 | <div class="form-group" style="display: inline-block;margin-left: 15px;"> | 38 | <div class="form-group" style="display: inline-block;margin-left: 15px;"> |
| 52 | - | ||
| 53 | <input class="btn btn-default" type="button" id="query" value="查询"/> | 39 | <input class="btn btn-default" type="button" id="query" value="查询"/> |
| 54 | - | ||
| 55 | <input class="btn btn-default" type="button" id="export" value="导出"/> | 40 | <input class="btn btn-default" type="button" id="export" value="导出"/> |
| 56 | - | ||
| 57 | <input class="btn btn-default" type="button" id="print" value="打印"/> | 41 | <input class="btn btn-default" type="button" id="print" value="打印"/> |
| 58 | - | ||
| 59 | <input class="btn btn-default" type="button" id="exportMore" value="批量导出"/> | 42 | <input class="btn btn-default" type="button" id="exportMore" value="批量导出"/> |
| 60 | - | ||
| 61 | </div> | 43 | </div> |
| 62 | - | ||
| 63 | </form> | 44 | </form> |
| 64 | - | ||
| 65 | </div> | 45 | </div> |
| 66 | - | ||
| 67 | <div class="portlet-body"> | 46 | <div class="portlet-body"> |
| 68 | - | ||
| 69 | <div class="row"> | 47 | <div class="row"> |
| 70 | - | ||
| 71 | <div class="col-md-3"> | 48 | <div class="col-md-3"> |
| 72 | - | ||
| 73 | <div class="" style="margin-top: 10px;overflow:auto;height: 860px"> | 49 | <div class="" style="margin-top: 10px;overflow:auto;height: 860px"> |
| 74 | - | ||
| 75 | <table class="table table-bordered table-hover table-checkable pre-scrollable" id="info"> | 50 | <table class="table table-bordered table-hover table-checkable pre-scrollable" id="info"> |
| 76 | - | ||
| 77 | <thead> | 51 | <thead> |
| 78 | - | ||
| 79 | <tr class="hidden"> | 52 | <tr class="hidden"> |
| 80 | - | ||
| 81 | - <th>人员</th> | ||
| 82 | - | ||
| 83 | - <th>自编号</th> | ||
| 84 | - | ||
| 85 | - <th>路牌</th> | ||
| 86 | - | 53 | + <th class="rypx" style="cursor:pointer ">人员</th> |
| 54 | + <th class="zbhpx" style="cursor:pointer ">自编号</th> | ||
| 55 | + <th class="lppx" style="cursor:pointer ">路牌</th> | ||
| 87 | </tr> | 56 | </tr> |
| 88 | - | ||
| 89 | </thead> | 57 | </thead> |
| 90 | - | ||
| 91 | <tbody> | 58 | <tbody> |
| 92 | - | ||
| 93 | 59 | ||
| 94 | - | ||
| 95 | </tbody> | 60 | </tbody> |
| 96 | - | ||
| 97 | </table> | 61 | </table> |
| 98 | - | ||
| 99 | </div> | 62 | </div> |
| 100 | - | ||
| 101 | </div> | 63 | </div> |
| 102 | - | ||
| 103 | <div class="col-md-9" id="printArea"> | 64 | <div class="col-md-9" id="printArea"> |
| 104 | - | ||
| 105 | <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 906px"> | 65 | <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 906px"> |
| 106 | - | ||
| 107 | <table class="table table-bordered table-checkable" id="forms"> | 66 | <table class="table table-bordered table-checkable" id="forms"> |
| 108 | - | ||
| 109 | <tbody class="ludan_1"> | 67 | <tbody class="ludan_1"> |
| 110 | 68 | ||
| 111 | </tbody> | 69 | </tbody> |
| @@ -118,45 +76,46 @@ | @@ -118,45 +76,46 @@ | ||
| 118 | <tbody class="ludan_4"> | 76 | <tbody class="ludan_4"> |
| 119 | 77 | ||
| 120 | </tbody> | 78 | </tbody> |
| 121 | - | ||
| 122 | </table> | 79 | </table> |
| 123 | - | ||
| 124 | </div> | 80 | </div> |
| 125 | - | ||
| 126 | </div> | 81 | </div> |
| 127 | - | ||
| 128 | </div> | 82 | </div> |
| 129 | - | ||
| 130 | </div> | 83 | </div> |
| 131 | - | ||
| 132 | </div> | 84 | </div> |
| 133 | - | ||
| 134 | </div> | 85 | </div> |
| 135 | - | ||
| 136 | </div> | 86 | </div> |
| 137 | 87 | ||
| 138 | - | ||
| 139 | - | ||
| 140 | <script> | 88 | <script> |
| 141 | - | ||
| 142 | $(function(){ | 89 | $(function(){ |
| 143 | - | ||
| 144 | // 关闭左侧栏 | 90 | // 关闭左侧栏 |
| 145 | - | ||
| 146 | if (!$('body').hasClass('page-sidebar-closed')) | 91 | if (!$('body').hasClass('page-sidebar-closed')) |
| 147 | - | ||
| 148 | $('.menu-toggler.sidebar-toggler').click(); | 92 | $('.menu-toggler.sidebar-toggler').click(); |
| 149 | 93 | ||
| 150 | - | ||
| 151 | $("#date").datetimepicker({ | 94 | $("#date").datetimepicker({ |
| 152 | - | ||
| 153 | format : 'YYYY-MM-DD', | 95 | format : 'YYYY-MM-DD', |
| 154 | - | ||
| 155 | locale : 'zh-cn' | 96 | locale : 'zh-cn' |
| 156 | - | ||
| 157 | }); | 97 | }); |
| 98 | + | ||
| 99 | + var d = new Date(); | ||
| 100 | + var year = d.getFullYear(); | ||
| 101 | + var month = d.getMonth() + 1; | ||
| 102 | + var day = d.getDate(); | ||
| 103 | + if(month < 10) | ||
| 104 | + month = "0" + month; | ||
| 105 | + if(day < 10) | ||
| 106 | + day = "0" + day; | ||
| 107 | + $("#date").val(year + "-" + month + "-" + day); | ||
| 108 | + $.get('/basic/lineCode2Name',function(result){ | ||
| 109 | + var data=[]; | ||
| 110 | + | ||
| 111 | + for(var code in result){ | ||
| 112 | + data.push({id: code, text: result[code]}); | ||
| 113 | + } | ||
| 114 | + initPinYinSelect2('#line',data,''); | ||
| 115 | + | ||
| 116 | + }) | ||
| 158 | 117 | ||
| 159 | - $('#line').select2({ | 118 | + /* $('#line').select2({ |
| 160 | ajax: { | 119 | ajax: { |
| 161 | url: '/realSchedule/findLine', | 120 | url: '/realSchedule/findLine', |
| 162 | type: 'post', | 121 | type: 'post', |
| @@ -194,80 +153,163 @@ | @@ -194,80 +153,163 @@ | ||
| 194 | } | 153 | } |
| 195 | } | 154 | } |
| 196 | }); | 155 | }); |
| 156 | + */ | ||
| 197 | 157 | ||
| 198 | var date = ''; | 158 | var date = ''; |
| 199 | - | 159 | + var line =''; |
| 200 | $("#query").on("click",function(){ | 160 | $("#query").on("click",function(){ |
| 201 | - | ||
| 202 | - var line = $("#line").val(); | ||
| 203 | - | 161 | + line = $("#line").val(); |
| 204 | date = $("#date").val(); | 162 | date = $("#date").val(); |
| 205 | $(".hidden").removeClass("hidden"); | 163 | $(".hidden").removeClass("hidden"); |
| 206 | - | ||
| 207 | - $get('/realSchedule/queryUserInfo',{line:line,date:date},function(result){ | ||
| 208 | - | 164 | + $get('/realSchedule/queryUserInfo',{line:line,date:date,state:2},function(result){ |
| 209 | // 把数据填充到模版中 | 165 | // 把数据填充到模版中 |
| 210 | - | ||
| 211 | var tbodyHtml = template('list_info',{list:result}); | 166 | var tbodyHtml = template('list_info',{list:result}); |
| 212 | - | ||
| 213 | // 把渲染好的模版html文本追加到表格中 | 167 | // 把渲染好的模版html文本追加到表格中 |
| 214 | - | ||
| 215 | $('#info tbody').html(tbodyHtml); | 168 | $('#info tbody').html(tbodyHtml); |
| 216 | - | ||
| 217 | }); | 169 | }); |
| 218 | - | ||
| 219 | }); | 170 | }); |
| 171 | + var type="desc"; | ||
| 172 | + $(".rypx").on("click",function(){ | ||
| 173 | + line = $("#line").val(); | ||
| 174 | + date = $("#date").val(); | ||
| 175 | + $(".hidden").removeClass("hidden"); | ||
| 176 | + $get('/realSchedule/queryUserInfoPx',{line:line,date:date,state:"j_Gh",type:type},function(result){ | ||
| 177 | + if(type=="desc"){ | ||
| 178 | + type ="asc"; | ||
| 179 | + }else{ | ||
| 180 | + type ="desc"; | ||
| 181 | + } | ||
| 182 | + // 把数据填充到模版中 | ||
| 183 | + var tbodyHtml = template('list_info_px',{list:result}); | ||
| 184 | + // 把渲染好的模版html文本追加到表格中 | ||
| 185 | + $('#info tbody').html(tbodyHtml); | ||
| 186 | + }); | ||
| 187 | + }) | ||
| 188 | + | ||
| 189 | + $(".zbhpx").on("click",function(){ | ||
| 190 | + line = $("#line").val(); | ||
| 191 | + date = $("#date").val(); | ||
| 192 | + $(".hidden").removeClass("hidden"); | ||
| 193 | + $get('/realSchedule/queryUserInfoPx',{line:line,date:date,state:"clZbh",type:type},function(result){ | ||
| 194 | + if(type=="desc"){ | ||
| 195 | + type ="asc"; | ||
| 196 | + }else{ | ||
| 197 | + type ="desc"; | ||
| 198 | + } | ||
| 199 | + // 把数据填充到模版中 | ||
| 200 | + var tbodyHtml = template('list_info_px',{list:result}); | ||
| 201 | + // 把渲染好的模版html文本追加到表格中 | ||
| 202 | + $('#info tbody').html(tbodyHtml); | ||
| 203 | + }); | ||
| 204 | + }) | ||
| 205 | + | ||
| 206 | + $(".lppx").on("click",function(){ | ||
| 207 | + line = $("#line").val(); | ||
| 208 | + date = $("#date").val(); | ||
| 209 | + $(".hidden").removeClass("hidden"); | ||
| 210 | + $get('/realSchedule/queryUserInfoPx',{line:line,date:date,state:"lpName",type:type},function(result){ | ||
| 211 | + if(type=="desc"){ | ||
| 212 | + type ="asc"; | ||
| 213 | + }else{ | ||
| 214 | + type ="desc"; | ||
| 215 | + } | ||
| 216 | + // 把数据填充到模版中 | ||
| 217 | + var tbodyHtml = template('list_info_px',{list:result}); | ||
| 218 | + // 把渲染好的模版html文本追加到表格中 | ||
| 219 | + $('#info tbody').html(tbodyHtml); | ||
| 220 | + }); | ||
| 221 | + }) | ||
| 220 | 222 | ||
| 221 | var params = new Array(); | 223 | var params = new Array(); |
| 222 | var jName = ''; | 224 | var jName = ''; |
| 223 | - | ||
| 224 | $("#info tbody").on("click","tr",function(){ | 225 | $("#info tbody").on("click","tr",function(){ |
| 225 | if($(this).children().size() < 2){ | 226 | if($(this).children().size() < 2){ |
| 226 | return; | 227 | return; |
| 227 | } | 228 | } |
| 228 | - | ||
| 229 | 229 | ||
| 230 | - | ||
| 231 | $(this).children().each(function(index){ | 230 | $(this).children().each(function(index){ |
| 232 | - | ||
| 233 | params[index] = $(this).text(); | 231 | params[index] = $(this).text(); |
| 234 | - | ||
| 235 | }); | 232 | }); |
| 236 | jName = params[0].split("\\")[0]; | 233 | jName = params[0].split("\\")[0]; |
| 237 | var id = $("#"+params[1]).val(); | 234 | var id = $("#"+params[1]).val(); |
| 238 | - $get('/realSchedule/'+id,null,function(result){ | 235 | + $get('/realSchedule/MapById',{id:id},function(result){ |
| 239 | result.scheduleDate = moment(result.scheduleDate).format("YYYY/MM/DD"); | 236 | result.scheduleDate = moment(result.scheduleDate).format("YYYY/MM/DD"); |
| 240 | var ludan_1 = template('ludan_1',result); | 237 | var ludan_1 = template('ludan_1',result); |
| 241 | - //var ludan_4 = template('ludan_4',result); | ||
| 242 | // 把渲染好的模版html文本追加到表格中 | 238 | // 把渲染好的模版html文本追加到表格中 |
| 243 | $('#forms .ludan_1').html(ludan_1); | 239 | $('#forms .ludan_1').html(ludan_1); |
| 244 | - //$('#forms .ludan_4').html(ludan_4); | ||
| 245 | }); | 240 | }); |
| 246 | - | ||
| 247 | - $post('/realSchedule/queryListWaybill',{jName:jName,clZbh:params[1],lpName:params[2],date:date},function(result){ | 241 | + $get('/realSchedule/queryListWaybill',{jName:jName,clZbh:params[1],lpName:params[2],date:date,line:line},function(result){ |
| 248 | getTime(result); | 242 | getTime(result); |
| 249 | - | ||
| 250 | var ludan_2 = template('ludan_2',{list:result}); | 243 | var ludan_2 = template('ludan_2',{list:result}); |
| 251 | - | ||
| 252 | // 把渲染好的模版html文本追加到表格中 | 244 | // 把渲染好的模版html文本追加到表格中 |
| 253 | - | ||
| 254 | $('#forms .ludan_2').html(ludan_2); | 245 | $('#forms .ludan_2').html(ludan_2); |
| 255 | - | ||
| 256 | }); | 246 | }); |
| 257 | - $post('/realSchedule/findKMBC',{jName:jName,clZbh:params[1],lpName:params[2],date:date},function(result){ | 247 | + $get('/realSchedule/findKMBC',{jName:jName,clZbh:params[1],lpName:params[2],date:date,line:line},function(result){ |
| 248 | + | ||
| 249 | + var gl=accAdd(result.ksgl,result.jcclc); | ||
| 250 | + result.ljgl=gl; | ||
| 251 | + | ||
| 252 | + var ljjcc1=accAdd(result.ksgl,result.jcclc); | ||
| 253 | + //临加进出场公里 | ||
| 254 | + var ljjcc=numSubtr(result.zkslc,ljjcc1); | ||
| 255 | + result.zlcgl=numSubtr(result.realMileage,ljjcc); | ||
| 256 | + | ||
| 258 | var ludan_3 = template('ludan_3',result); | 257 | var ludan_3 = template('ludan_3',result); |
| 259 | $('#forms .ludan_3').html(ludan_3); | 258 | $('#forms .ludan_3').html(ludan_3); |
| 260 | }); | 259 | }); |
| 261 | 260 | ||
| 262 | - | ||
| 263 | }); | 261 | }); |
| 264 | 262 | ||
| 263 | + var accAdd = function (a, b) { | ||
| 264 | + var c, d, e; | ||
| 265 | + try { | ||
| 266 | + c = a.toString().split(".")[1].length; | ||
| 267 | + } catch (f) { | ||
| 268 | + c = 0; | ||
| 269 | + } | ||
| 270 | + try { | ||
| 271 | + d = b.toString().split(".")[1].length; | ||
| 272 | + } catch (f) { | ||
| 273 | + d = 0; | ||
| 274 | + } | ||
| 275 | + return e = Math.pow(10, Math.max(c, d)), (mul(a, e) + mul(b, e)) / e; | ||
| 276 | + }; | ||
| 277 | + | ||
| 278 | + var numSubtr = function (a, b) { | ||
| 279 | + var c, d, e; | ||
| 280 | + try { | ||
| 281 | + c = a.toString().split(".")[1].length; | ||
| 282 | + } catch (f) { | ||
| 283 | + c = 0; | ||
| 284 | + } | ||
| 285 | + try { | ||
| 286 | + d = b.toString().split(".")[1].length; | ||
| 287 | + } catch (f) { | ||
| 288 | + d = 0; | ||
| 289 | + } | ||
| 290 | + return e = Math.pow(10, Math.max(c, d)), (a * e - b * e) / e; | ||
| 291 | + }; | ||
| 292 | + | ||
| 293 | + function mul(a, b) { | ||
| 294 | + var c = 0, | ||
| 295 | + d = a.toString(), | ||
| 296 | + e = b.toString(); | ||
| 297 | + try { | ||
| 298 | + c += d.split(".")[1].length; | ||
| 299 | + } catch (f) { | ||
| 300 | + } | ||
| 301 | + try { | ||
| 302 | + c += e.split(".")[1].length; | ||
| 303 | + } catch (f) { | ||
| 304 | + } | ||
| 305 | + return Number(d.replace(".", "")) * Number(e.replace(".", "")) / Math.pow(10, c); | ||
| 306 | + } | ||
| 265 | $("#export").on("click",function(){ | 307 | $("#export").on("click",function(){ |
| 266 | if(params.length < 1){ | 308 | if(params.length < 1){ |
| 267 | return; | 309 | return; |
| 268 | } | 310 | } |
| 269 | - $post('/realSchedule/exportWaybill',{jName:jName,clZbh:params[1],lpName:params[2],date:date},function(result){ | ||
| 270 | - window.open("/downloadFile/download?fileName="+jName); | 311 | + $get('/realSchedule/exportWaybill',{jName:jName,clZbh:params[1],lpName:params[2],date:date,line:line},function(result){ |
| 312 | + window.open("/downloadFile/download?fileName="+date+"-"+jName+"-"+params[1]+"-"+params[2]+"-行车路单"); | ||
| 271 | }); | 313 | }); |
| 272 | }); | 314 | }); |
| 273 | 315 | ||
| @@ -276,9 +318,17 @@ | @@ -276,9 +318,17 @@ | ||
| 276 | }); | 318 | }); |
| 277 | 319 | ||
| 278 | $("#exportMore").on("click",function(){ | 320 | $("#exportMore").on("click",function(){ |
| 279 | - return; | ||
| 280 | - $post('/realSchedule/exportWaybillMore',{date:date},function(result){ | ||
| 281 | - window.open("/downloadFile/download?fileName="+jName); | 321 | + if($("#info tbody tr td").length <= 1) |
| 322 | + return; | ||
| 323 | + var param = new Array(); | ||
| 324 | + $("#info tbody tr").each(function(index){ | ||
| 325 | + param[index] = new Array(); | ||
| 326 | + $(this).children().each(function(i){ | ||
| 327 | + param[index][i] = $(this).text().split("\\")[0]; | ||
| 328 | + }); | ||
| 329 | + }); | ||
| 330 | + $post('/realSchedule/exportWaybillMore',{date:date,line:line,strs:JSON.stringify(param)},function(result){ | ||
| 331 | + window.open("/downloadFile/downloadList?fileName="+result.fileName); | ||
| 282 | }); | 332 | }); |
| 283 | }); | 333 | }); |
| 284 | 334 | ||
| @@ -296,37 +346,35 @@ | @@ -296,37 +346,35 @@ | ||
| 296 | } | 346 | } |
| 297 | }); | 347 | }); |
| 298 | } | 348 | } |
| 299 | - | ||
| 300 | }); | 349 | }); |
| 301 | - | ||
| 302 | </script> | 350 | </script> |
| 303 | - | ||
| 304 | <script type="text/html" id="list_info"> | 351 | <script type="text/html" id="list_info"> |
| 305 | - | ||
| 306 | {{each list as obj i}} | 352 | {{each list as obj i}} |
| 307 | - | ||
| 308 | <tr> | 353 | <tr> |
| 309 | - | ||
| 310 | <td width="45%">{{obj[4]}}\{{obj[1]}}</td> | 354 | <td width="45%">{{obj[4]}}\{{obj[1]}}</td> |
| 311 | - | ||
| 312 | <td width="32%">{{obj[2]}}</td> | 355 | <td width="32%">{{obj[2]}}</td> |
| 313 | - | ||
| 314 | <td width="23%">{{obj[3]}}<input type="hidden" id="{{obj[2]}}" value="{{obj[0]}}"></td> | 356 | <td width="23%">{{obj[3]}}<input type="hidden" id="{{obj[2]}}" value="{{obj[0]}}"></td> |
| 315 | - | ||
| 316 | </tr> | 357 | </tr> |
| 317 | - | ||
| 318 | {{/each}} | 358 | {{/each}} |
| 319 | - | ||
| 320 | {{if list.length == 0}} | 359 | {{if list.length == 0}} |
| 321 | - | ||
| 322 | <tr> | 360 | <tr> |
| 323 | - | ||
| 324 | <td colspan="3"><h6 class="muted">没有找到相关数据</h6></td> | 361 | <td colspan="3"><h6 class="muted">没有找到相关数据</h6></td> |
| 325 | - | ||
| 326 | </tr> | 362 | </tr> |
| 327 | - | ||
| 328 | {{/if}} | 363 | {{/if}} |
| 329 | - | 364 | +</script> |
| 365 | +<script type="text/html" id="list_info_px"> | ||
| 366 | + {{each list as obj i}} | ||
| 367 | + <tr> | ||
| 368 | + <td width="45%">{{obj.jName}}\{{obj.jGh}}</td> | ||
| 369 | + <td width="32%">{{obj.clZbh}}</td> | ||
| 370 | + <td width="23%">{{obj.lpName}}<input type="hidden" id="{{obj.clZbh}}" value="{{obj.id}}"></td> | ||
| 371 | + </tr> | ||
| 372 | + {{/each}} | ||
| 373 | + {{if list.length == 0}} | ||
| 374 | + <tr> | ||
| 375 | + <td colspan="3"><h6 class="muted">没有找到相关数据</h6></td> | ||
| 376 | + </tr> | ||
| 377 | + {{/if}} | ||
| 330 | </script> | 378 | </script> |
| 331 | <script type="text/html" id="ludan_1"> | 379 | <script type="text/html" id="ludan_1"> |
| 332 | <tr> | 380 | <tr> |
| @@ -336,11 +384,11 @@ | @@ -336,11 +384,11 @@ | ||
| 336 | <td colspan="14">路别:{{xlName}} 路牌:{{lpName}} 车号:{{clZbh}} 出场时间:{{fcsjActual}} 到达站名:{{zdzName}} 当班调派: 日期:{{scheduleDate}}</td> | 384 | <td colspan="14">路别:{{xlName}} 路牌:{{lpName}} 车号:{{clZbh}} 出场时间:{{fcsjActual}} 到达站名:{{zdzName}} 当班调派: 日期:{{scheduleDate}}</td> |
| 337 | </tr> | 385 | </tr> |
| 338 | <tr> | 386 | <tr> |
| 339 | - <td colspan="2">出场存油 升</td> | ||
| 340 | - <td colspan="2">加注油量 升</td> | ||
| 341 | - <td colspan="2">进场存油 升</td> | 387 | + <td colspan="2">出场存油 {{ccyl}};升</td> |
| 388 | + <td colspan="2">加注油量 {{jzl}}升</td> | ||
| 389 | + <td colspan="2">进场存油 {{jcyl}}升</td> | ||
| 342 | <td colspan="4">加注机油 升</td> | 390 | <td colspan="4">加注机油 升</td> |
| 343 | - <td colspan="4">本日耗油 升</td> | 391 | + <td colspan="4">本日耗油 {{yh}}升</td> |
| 344 | </tr> | 392 | </tr> |
| 345 | <tr> | 393 | <tr> |
| 346 | <td rowspan="2">调度章</td> | 394 | <td rowspan="2">调度章</td> |
| @@ -388,175 +436,65 @@ | @@ -388,175 +436,65 @@ | ||
| 388 | <td colspan="1">慢</td> | 436 | <td colspan="1">慢</td> |
| 389 | </tr> | 437 | </tr> |
| 390 | </script> | 438 | </script> |
| 391 | - | ||
| 392 | <script type="text/html" id="ludan_2"> | 439 | <script type="text/html" id="ludan_2"> |
| 393 | - | ||
| 394 | {{each list as obj i}} | 440 | {{each list as obj i}} |
| 395 | - | ||
| 396 | <tr> | 441 | <tr> |
| 397 | - | ||
| 398 | - <td>{{i+1}}</td> | ||
| 399 | - | ||
| 400 | - <td>{{obj.jName}}</td> | ||
| 401 | - | ||
| 402 | - <td>{{obj.sName}}</td> | ||
| 403 | - | 442 | + <td>{{obj.adjustExps}}</td> |
| 443 | + <td>{{obj.jGh}}{{obj.jName}}</td> | ||
| 444 | + <td>{{if obj.sGh !=null}} | ||
| 445 | + {{obj.sGh}}{{obj.sName}} | ||
| 446 | + {{/if}} | ||
| 447 | + </td> | ||
| 404 | <td> </td> | 448 | <td> </td> |
| 405 | - | ||
| 406 | <td>{{obj.qdzName}}</td> | 449 | <td>{{obj.qdzName}}</td> |
| 407 | - | ||
| 408 | <td>{{obj.zdzName}}</td> | 450 | <td>{{obj.zdzName}}</td> |
| 409 | - | ||
| 410 | <td>{{obj.fcsj}}</td> | 451 | <td>{{obj.fcsj}}</td> |
| 411 | - | ||
| 412 | <td>{{obj.fcsjActual}}</td> | 452 | <td>{{obj.fcsjActual}}</td> |
| 413 | - | ||
| 414 | <td>{{obj.zdsj}}</td> | 453 | <td>{{obj.zdsj}}</td> |
| 415 | - | ||
| 416 | <td>{{obj.zdsjActual}}</td> | 454 | <td>{{obj.zdsjActual}}</td> |
| 417 | - | ||
| 418 | <td>{{obj.fast}}</td> | 455 | <td>{{obj.fast}}</td> |
| 419 | - | ||
| 420 | <td>{{obj.slow}}</td> | 456 | <td>{{obj.slow}}</td> |
| 421 | - | ||
| 422 | <td>{{obj.jhlc}}</td> | 457 | <td>{{obj.jhlc}}</td> |
| 423 | - <td>{{obj.remarks}}</td> | ||
| 424 | - | 458 | + <td > |
| 459 | + {{obj.remarks}} | ||
| 460 | + </td> | ||
| 425 | </tr> | 461 | </tr> |
| 426 | - | ||
| 427 | {{/each}} | 462 | {{/each}} |
| 428 | {{if list.length == 0}} | 463 | {{if list.length == 0}} |
| 429 | <tr> | 464 | <tr> |
| 430 | <td colspan="14"><h6 class="muted">没有找到相关数据</h6></td> | 465 | <td colspan="14"><h6 class="muted">没有找到相关数据</h6></td> |
| 431 | </tr> | 466 | </tr> |
| 432 | {{/if}} | 467 | {{/if}} |
| 433 | - | ||
| 434 | </script> | 468 | </script> |
| 435 | <script type="text/html" id="ludan_3"> | 469 | <script type="text/html" id="ludan_3"> |
| 436 | <tr> | 470 | <tr> |
| 437 | - <td colspan="2">计划公里</td> | ||
| 438 | - <td>{{jhlc}}</td> | ||
| 439 | - <td colspan="2">烂班公里</td> | ||
| 440 | - <td>{{remMileage}}</td> | ||
| 441 | - <td colspan="2">临加公里</td> | ||
| 442 | - <td>{{addMileage}}</td> | ||
| 443 | - <td colspan="2">营运公里</td> | ||
| 444 | - <td colspan="3">{{yygl}}</td> | ||
| 445 | - </tr> | ||
| 446 | - <tr> | ||
| 447 | - <td colspan="2">空驶公里</td> | ||
| 448 | - <td>{{ksgl}}</td> | ||
| 449 | - <td colspan="2">总公里</td> | ||
| 450 | - <td>{{realMileage}}</td> | ||
| 451 | <td colspan="2">计划班次</td> | 471 | <td colspan="2">计划班次</td> |
| 452 | <td>{{jhbc}}</td> | 472 | <td>{{jhbc}}</td> |
| 473 | + <td colspan="2">计划公里</td> | ||
| 474 | + <td>{{jhlc}}</td> | ||
| 453 | <td colspan="2">烂班班次</td> | 475 | <td colspan="2">烂班班次</td> |
| 454 | - <td colspan="3">{{cjbc}}</td> | 476 | + <td>{{cjbc}}</td> |
| 477 | + <td colspan="3"> 烂班公里</td> | ||
| 478 | + <td colspan="2">{{remMileage}}</td> | ||
| 455 | </tr> | 479 | </tr> |
| 456 | <tr> | 480 | <tr> |
| 457 | - <td colspan="2">增加班次</td> | 481 | + <td colspan="2">临加班次</td> |
| 458 | <td>{{ljbc}}</td> | 482 | <td>{{ljbc}}</td> |
| 483 | + <td colspan="2">临加公里</td> | ||
| 484 | + <td>{{addMileage}}</td> | ||
| 459 | <td colspan="2">实际班次</td> | 485 | <td colspan="2">实际班次</td> |
| 460 | <td>{{sjbc}}</td> | 486 | <td>{{sjbc}}</td> |
| 487 | + <td colspan="3">营运公里</td> | ||
| 488 | + <td colspan="2">{{yygl}}</td> | ||
| 489 | + </tr> | ||
| 490 | + <tr> | ||
| 491 | + <td colspan="2">空驶公里</td> | ||
| 492 | + <td>{{ljgl}}</td> | ||
| 493 | + <td colspan="2">总公里</td> | ||
| 494 | + <td>{{zlcgl}}</td> | ||
| 461 | <td colspan="2"></td> | 495 | <td colspan="2"></td> |
| 462 | <td></td> | 496 | <td></td> |
| 463 | - <td colspan="2"></td> | ||
| 464 | <td colspan="3"></td> | 497 | <td colspan="3"></td> |
| 498 | + <td colspan="2"></td> | ||
| 465 | </tr> | 499 | </tr> |
| 466 | </script> | 500 | </script> |
| 467 | -<script type="text/html" id="ludan_4"> | ||
| 468 | - <tr> | ||
| 469 | - <td colspan="12">认真做好终点项目的例保保修工作,杜绝机械火警事故!</td> | ||
| 470 | - <td>轮胎</td> | ||
| 471 | - <td> </td> | ||
| 472 | - </tr> | ||
| 473 | - <tr> | ||
| 474 | - <td colspan="3">重点例保项目</td> | ||
| 475 | - <td>1</td> | ||
| 476 | - <td>2</td> | ||
| 477 | - <td>3</td> | ||
| 478 | - <td colspan="3">重点例保项目</td> | ||
| 479 | - <td>1</td> | ||
| 480 | - <td>2</td> | ||
| 481 | - <td>3</td> | ||
| 482 | - <td>灭火机</td> | ||
| 483 | - <td> </td> | ||
| 484 | - </tr> | ||
| 485 | - <tr> | ||
| 486 | - <td colspan="3">各类制动</td> | ||
| 487 | - <td> </td> | ||
| 488 | - <td> </td> | ||
| 489 | - <td> </td> | ||
| 490 | - <td colspan="3">各类灯光</td> | ||
| 491 | - <td> </td> | ||
| 492 | - <td> </td> | ||
| 493 | - <td> </td> | ||
| 494 | - <td colspan="2">出场路码表里程</td> | ||
| 495 | - </tr> | ||
| 496 | - <tr> | ||
| 497 | - <td colspan="3">方向机</td> | ||
| 498 | - <td> </td> | ||
| 499 | - <td> </td> | ||
| 500 | - <td> </td> | ||
| 501 | - <td colspan="3">各类仪表</td> | ||
| 502 | - <td> </td> | ||
| 503 | - <td> </td> | ||
| 504 | - <td> </td> | ||
| 505 | - <td colspan="2" rowspan="2"> </td> | ||
| 506 | - </tr> | ||
| 507 | - <tr> | ||
| 508 | - <td colspan="3">欠压报警器</td> | ||
| 509 | - <td> </td> | ||
| 510 | - <td> </td> | ||
| 511 | - <td> </td> | ||
| 512 | - <td colspan="3">各类皮带</td> | ||
| 513 | - <td> </td> | ||
| 514 | - <td> </td> | ||
| 515 | - <td> </td> | ||
| 516 | - </tr> | ||
| 517 | - <tr> | ||
| 518 | - <td colspan="3">发动机清洁及响声</td> | ||
| 519 | - <td> </td> | ||
| 520 | - <td> </td> | ||
| 521 | - <td> </td> | ||
| 522 | - <td colspan="3">油箱及托架</td> | ||
| 523 | - <td> </td> | ||
| 524 | - <td> </td> | ||
| 525 | - <td> </td> | ||
| 526 | - <td colspan="2">出场路码表里程</td> | ||
| 527 | - </tr> | ||
| 528 | - <tr> | ||
| 529 | - <td colspan="3">地盘响声</td> | ||
| 530 | - <td> </td> | ||
| 531 | - <td> </td> | ||
| 532 | - <td> </td> | ||
| 533 | - <td colspan="3">轮胎、半轴螺栓螺母</td> | ||
| 534 | - <td> </td> | ||
| 535 | - <td> </td> | ||
| 536 | - <td> </td> | ||
| 537 | - <td colspan="2" rowspan="3"> </td> | ||
| 538 | - </tr> | ||
| 539 | - <tr> | ||
| 540 | - <td colspan="3">化油器及油路</td> | ||
| 541 | - <td> </td> | ||
| 542 | - <td> </td> | ||
| 543 | - <td> </td> | ||
| 544 | - <td colspan="3">油、电、水、气</td> | ||
| 545 | - <td> </td> | ||
| 546 | - <td> </td> | ||
| 547 | - <td> </td> | ||
| 548 | - </tr> | ||
| 549 | - <tr> | ||
| 550 | - <td colspan="3">进排歧管及排气管</td> | ||
| 551 | - <td> </td> | ||
| 552 | - <td> </td> | ||
| 553 | - <td> </td> | ||
| 554 | - <td colspan="3">内外车身及附件</td> | ||
| 555 | - <td> </td> | ||
| 556 | - <td> </td> | ||
| 557 | - <td> </td> | ||
| 558 | - </tr> | ||
| 559 | - <tr> | ||
| 560 | - <td colspan="14">1 首次出场,2 复使中途,3 某次进场。√正常,ⓧ报修,×尚未报修</td> | ||
| 561 | - </tr> | ||
| 562 | -</script> | ||
| 563 | \ No newline at end of file | 501 | \ No newline at end of file |
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/add_temp_sch.html
| @@ -182,6 +182,14 @@ | @@ -182,6 +182,14 @@ | ||
| 182 | delete data.spy; | 182 | delete data.spy; |
| 183 | } | 183 | } |
| 184 | 184 | ||
| 185 | + //公司信息 | ||
| 186 | + var line = gb_data_basic.findLineByCodes([data.xlBm]); | ||
| 187 | + if(line && line.length > 0){ | ||
| 188 | + line = line[0]; | ||
| 189 | + data.gsBm = line.company; | ||
| 190 | + data.fgsBm = line.brancheCompany; | ||
| 191 | + } | ||
| 192 | + | ||
| 185 | gb_common.$post('/realSchedule', data, function (rs) { | 193 | gb_common.$post('/realSchedule', data, function (rs) { |
| 186 | //插入 | 194 | //插入 |
| 187 | gb_schedule_table.insertSchedule(rs.t, rs.ts); | 195 | gb_schedule_table.insertSchedule(rs.t, rs.ts); |