|
@@ -226,11 +226,12 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> listAllOrders(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId) {
|
|
|
+ Integer apiId,
|
|
|
+ String con) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.listAllOrders(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
+ return tmsshipFeign.listAllOrders(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -901,6 +902,15 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsTrainFeign.deleteTmstrainLoadingResultByResultId(resultId);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "通过主键删除车皮出库作业实绩")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "resultId", value = "主键ID", required = false, dataType = "BigDecimal")
|
|
|
+ })
|
|
|
+ @PostMapping(value = "/deleteOutBoundWagonById")
|
|
|
+ public Map<String, Object> deleteOutBoundWagonById(@RequestParam BigDecimal resultId){
|
|
|
+ return tmsTrainFeign.deleteOutBoundWagonById(resultId);
|
|
|
+ }
|
|
|
+
|
|
|
//********************下拉框**********************
|
|
|
|
|
|
@ApiOperation(value = "获取发站地点名称")
|