|
@@ -940,10 +940,14 @@ public class OMSController {
|
|
|
@RequestParam(required = false) String sendStation,
|
|
|
@RequestParam(required = false) String toTheStation,
|
|
|
@RequestParam(required = false) String consigneeName,
|
|
|
- @RequestParam(required = false) String wagonNo){
|
|
|
+ @RequestParam(required = false) String wagonNo,
|
|
|
+ @RequestParam(required = false) String weightNoParam,
|
|
|
+ @RequestParam(required = false) Boolean isNullwagonNo){
|
|
|
if (map == null) {
|
|
|
map = new HashMap<>();
|
|
|
}
|
|
|
- return omsFeign.getWagonShippingDetails(map,startTime,endTime,sendStation,toTheStation,consigneeName,wagonNo);
|
|
|
+ System.out.println("weightNoParam:"+weightNoParam);
|
|
|
+ System.out.println("isNullwagonNo:"+isNullwagonNo);
|
|
|
+ return omsFeign.getWagonShippingDetails(map,startTime,endTime,sendStation,toTheStation,consigneeName,wagonNo,weightNoParam,isNullwagonNo);
|
|
|
}
|
|
|
}
|