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