|
|
|
@ -555,7 +555,7 @@ public class PgdSljhController {
|
|
|
|
|
String cjs1=cjs;
|
|
|
|
|
// 根据需求批量 船号 去 查询
|
|
|
|
|
List<DmYdjh> ydjhs = dmYdjhService.list(new QueryWrapper<DmYdjh>().eq("dc_ch", slKc.getZYCH() ).eq("isnull(ZT,'')","2")
|
|
|
|
|
.eq("dc_pl",slKc.getZYPL())
|
|
|
|
|
.eq("dc_pl",slKc.getZYPL()).eq("ifnull(slkcdw,'')","")
|
|
|
|
|
);
|
|
|
|
|
DmYdjh dmYdjh = ydjhs.stream()
|
|
|
|
|
.filter(fst -> fst.getDcCh().equalsIgnoreCase(slKc.getZYCH())
|
|
|
|
@ -1220,6 +1220,18 @@ public class PgdSljhController {
|
|
|
|
|
// 使用 EasyExcel 进行导出
|
|
|
|
|
EasyExcel.write(response.getOutputStream(), PwExportExcel.class).sheet("Sheet1").doWrite(excels);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 订单跨道
|
|
|
|
|
public Map ddkd (String cgkw){
|
|
|
|
|
Map map= new HashMap();
|
|
|
|
|
if(StringUtils.isBlank(cgkw)){
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
// if(cgkw.contains())
|
|
|
|
|
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|