|
@@ -226,11 +226,12 @@ public class TMSController extends BaseRESTfulController {
|
|
public Map<String, Object> listAllOrders(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
public Map<String, Object> listAllOrders(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
Integer pageNum,
|
|
Integer pageNum,
|
|
Integer pageSize,
|
|
Integer pageSize,
|
|
- Integer apiId) {
|
|
|
|
|
|
+ Integer apiId,
|
|
|
|
+ String con) {
|
|
if (mapValue == null) {
|
|
if (mapValue == null) {
|
|
mapValue = new HashMap<>();
|
|
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);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -654,11 +655,13 @@ public class TMSController extends BaseRESTfulController {
|
|
Integer pageSize,
|
|
Integer pageSize,
|
|
Integer apiId,
|
|
Integer apiId,
|
|
Integer status,
|
|
Integer status,
|
|
- @RequestParam(required = false) String con) {
|
|
|
|
|
|
+ @RequestParam(required = false) String con,
|
|
|
|
+ @RequestParam(required = false) String startTime,
|
|
|
|
+ @RequestParam(required = false) String endTime) {
|
|
if (mapValue == null) {
|
|
if (mapValue == null) {
|
|
mapValue = new HashMap<>();
|
|
mapValue = new HashMap<>();
|
|
}
|
|
}
|
|
- return tmsshipFeign.getshipDeliveryNoticeList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status,con);
|
|
|
|
|
|
+ return tmsshipFeign.getshipDeliveryNoticeList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status,con,startTime,endTime);
|
|
}
|
|
}
|
|
|
|
|
|
@PostMapping("insertDeliveryNotice")
|
|
@PostMapping("insertDeliveryNotice")
|
|
@@ -899,6 +902,15 @@ public class TMSController extends BaseRESTfulController {
|
|
return tmsTrainFeign.deleteTmstrainLoadingResultByResultId(resultId);
|
|
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 = "获取发站地点名称")
|
|
@ApiOperation(value = "获取发站地点名称")
|
|
@@ -2187,8 +2199,8 @@ public class TMSController extends BaseRESTfulController {
|
|
Integer pageSize,
|
|
Integer pageSize,
|
|
String startTime,
|
|
String startTime,
|
|
String endTime,
|
|
String endTime,
|
|
- String con) {
|
|
|
|
- return tmsTruckFeign.getLoaderForResultDetail(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, startTime, endTime,con);
|
|
|
|
|
|
+ String con, String isPage) {
|
|
|
|
+ return tmsTruckFeign.getLoaderForResultDetail(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, startTime, endTime,con,isPage);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -2513,6 +2525,25 @@ public class TMSController extends BaseRESTfulController {
|
|
return tmsTrainFeign.getPurchaseOrderList(map,apiId,pageNum,pageSize,materialName, resultForeignShipName,supplierName);
|
|
return tmsTrainFeign.getPurchaseOrderList(map,apiId,pageNum,pageSize,materialName, resultForeignShipName,supplierName);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "查询待绑定的批次")
|
|
|
|
+ @PostMapping(value = "/findBatchForBind")
|
|
|
|
+ public Map<String, Object> findBatchForBind(@RequestBody(required = false) Map<String, Object> map,
|
|
|
|
+ Integer apiId,
|
|
|
|
+ Integer pageNum,
|
|
|
|
+ Integer pageSize,
|
|
|
|
+ String materialName,
|
|
|
|
+ String foreignShipName){
|
|
|
|
+ if(map==null)
|
|
|
|
+ map=new HashMap<>();
|
|
|
|
+ return tmsshipFeign.findBatchForBind(map,apiId,pageNum,pageSize,materialName, foreignShipName);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ApiOperation(value = "绑定批次")
|
|
|
|
+ @PostMapping(value = "bindBatch")
|
|
|
|
+ Map<String, Object> bindBatch(@RequestBody(required = false) Map<String, Object> map){
|
|
|
|
+ return tmsshipFeign.bindBatch(map);
|
|
|
|
+ }
|
|
|
|
+
|
|
@ApiOperation(value = "销售钢材统计报表")
|
|
@ApiOperation(value = "销售钢材统计报表")
|
|
@PostMapping("/getSaleSteelReport")
|
|
@PostMapping("/getSaleSteelReport")
|
|
public Map<String,Object> getSaleSteelReport(@RequestBody(required = false)Map<String,Object>map,
|
|
public Map<String,Object> getSaleSteelReport(@RequestBody(required = false)Map<String,Object>map,
|