|
@@ -48,7 +48,9 @@ public class OmstrainOrderController extends BaseRESTfulController {
|
|
String sendStation,
|
|
String sendStation,
|
|
String toTheStation,
|
|
String toTheStation,
|
|
String consigneeName,
|
|
String consigneeName,
|
|
- String wagonNo){
|
|
|
|
|
|
+ String wagonNo,
|
|
|
|
+ String weightNoParam,
|
|
|
|
+ Boolean isNullwagonNo){
|
|
DataChange.queryDataByDateTimeYestDay(startTime, endTime, map, sdfDateTime);//根据时间段查询数据
|
|
DataChange.queryDataByDateTimeYestDay(startTime, endTime, map, sdfDateTime);//根据时间段查询数据
|
|
if(sendStation != null && !"null".equals(sendStation)){
|
|
if(sendStation != null && !"null".equals(sendStation)){
|
|
map.put("sendStation",sendStation);
|
|
map.put("sendStation",sendStation);
|
|
@@ -62,6 +64,14 @@ public class OmstrainOrderController extends BaseRESTfulController {
|
|
if(wagonNo != null && !"null".equals(wagonNo)){
|
|
if(wagonNo != null && !"null".equals(wagonNo)){
|
|
map.put("wagonNo",wagonNo);
|
|
map.put("wagonNo",wagonNo);
|
|
}
|
|
}
|
|
|
|
+ if(weightNoParam != null && weightNoParam.trim().length()>0 && !"null".equals(weightNoParam)){
|
|
|
|
+ map.put("weightNoParam",weightNoParam);
|
|
|
|
+ }
|
|
|
|
+ if(isNullwagonNo != null){
|
|
|
|
+ map.put("isNullwagonNo",isNullwagonNo);
|
|
|
|
+ }
|
|
|
|
+ System.out.println("weightNoParam:"+weightNoParam);
|
|
|
|
+ System.out.println("isNullwagonNo:"+isNullwagonNo);
|
|
List<Map<String,Object>> mapList = omstrainOrderService.getWagonShippingDetails(map);
|
|
List<Map<String,Object>> mapList = omstrainOrderService.getWagonShippingDetails(map);
|
|
return success(mapList);
|
|
return success(mapList);
|
|
}
|
|
}
|