| 
					
				 | 
			
			
				@@ -357,7 +357,8 @@ public class TMSController extends BaseRESTfulController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PostMapping("addWaterQualityResult") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiOperation(value = "新增水分质检") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     Map<String, Object> addWaterQualityResult(@RequestBody Map<String, Object> map) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        return tmsshipFeign.addWaterQualityResult(map); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        Map<String, Object> stringObjectMap = tmsshipFeign.addWaterQualityResult(map); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return stringObjectMap; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -421,15 +422,16 @@ public class TMSController extends BaseRESTfulController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                                                            Integer pageNum, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                                                            Integer pageSize, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                                                            Integer apiId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                                                           String con) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                                                           String con, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                                                           String status) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if (mapValue == null) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             mapValue = new HashMap<>(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        return tmsshipFeign.getShipMentInstructionsList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return tmsshipFeign.getShipMentInstructionsList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con,status); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PostMapping("getShipmentInstructions/{instructionsId}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @ApiOperation(value = "查询装船指令") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @ApiOperation(value = "下发装船指令") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     Map<String, Object> getShipmentInstructions(@PathVariable("instructionsId") BigDecimal instructionsId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return tmsshipFeign.getShipmentInstructions(instructionsId); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -440,10 +442,10 @@ public class TMSController extends BaseRESTfulController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return tmsshipFeign.deleteByPrimaryKey(instructionsId); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PostMapping("updateIssueStatus/{shipmentInstructionsId}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @PostMapping("sendShipmentInstructionsStatus/{shipmentInstructionsId}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiOperation(value = "修改状态") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    Map<String, Object> updateIssueStatus(@PathVariable("shipmentInstructionsId") BigDecimal shipmentInstructionsId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        return tmsshipFeign.updateIssueStatus(shipmentInstructionsId); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    Map<String, Object> sendShipmentInstructionsStatus(@PathVariable("shipmentInstructionsId") BigDecimal shipmentInstructionsId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return tmsshipFeign.sendShipmentInstructionsStatus(shipmentInstructionsId); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PostMapping("updateShipmentInstructions") 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -1871,6 +1873,14 @@ public class TMSController extends BaseRESTfulController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return tmsTrainFeign.batchSendMeasureCommission(map); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+       
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @PostMapping("/getMoistureAndInstallations") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public Map<String,Object> getMoistureAndInstallations(@RequestBody(required=false) Map<String,Object> map){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return tmsshipFeign.getMoistureAndInstallations(map); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiOperation(value="查询辅料燃料统计报表") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PostMapping("/getRLFLReport") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public Map<String, Object> getRLFLReport(@RequestBody(required=false) Map<String,Object> mapValue, 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -1881,4 +1891,5 @@ public class TMSController extends BaseRESTfulController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     ){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return tmsTruckFeign.getRLFLReport(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, orderType); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 |