Commit 69ca7357a6cc673a8ac4623432f52a76250cb651

Authored by 徐烜
1 parent 901928ec

Update

src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
@@ -210,7 +210,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im @@ -210,7 +210,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im
210 Map<String, Object> p2 = new HashMap<>(); 210 Map<String, Object> p2 = new HashMap<>();
211 p2.put("xl.id_eq", lineid); 211 p2.put("xl.id_eq", lineid);
212 p2.put("lpName_eq", bcell_con.trim()); 212 p2.put("lpName_eq", bcell_con.trim());
213 - p2.put("isCancel_eq", 0); 213 + p2.put("isCancel_eq", false);
214 List<GuideboardInfo> guideboardInfoList = (List<GuideboardInfo>) guideboardInfoService.list(p2); 214 List<GuideboardInfo> guideboardInfoList = (List<GuideboardInfo>) guideboardInfoService.list(p2);
215 if (CollectionUtils.isEmpty(guideboardInfoList)) { 215 if (CollectionUtils.isEmpty(guideboardInfoList)) {
216 throw new Exception(String.format("第%d行,第1列的路牌在%s中不存在", i + 1, linename)); 216 throw new Exception(String.format("第%d行,第1列的路牌在%s中不存在", i + 1, linename));
@@ -248,6 +248,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im @@ -248,6 +248,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
248 248
249 } 249 }
250 } catch (Exception exp) { 250 } catch (Exception exp) {
  251 + exp.printStackTrace();
251 throw new ScheduleException(exp.getMessage()); 252 throw new ScheduleException(exp.getMessage());
252 } 253 }
253 254