|
@@ -1642,11 +1642,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
@PostMapping("/getResultType")
|
|
|
public Map<String, Object> getResultType(@RequestBody(required = false)Map<String,Object> map,
|
|
|
Integer apiId,
|
|
|
- Integer pageNum,
|
|
|
- Integer pageSize,
|
|
|
+
|
|
|
String con
|
|
|
) {
|
|
|
- return tmsTrainFeign.getResultType(map == null ? new HashMap<>() : map,apiId, pageNum, pageSize,con);
|
|
|
+ return tmsTrainFeign.getResultType(map == null ? new HashMap<>() : map,apiId,con);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/addShipLoadResult")
|
|
@@ -1992,6 +1991,13 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsshipFeign.getShipNameList(state);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "国产矿物流导入")
|
|
|
+ @PostMapping(value = "/importDomesticLoadResult")
|
|
|
+ public Map<String, Object> importDomesticLoadResult(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
+ return tmsTrainFeign.importDomesticLoadResult(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@ApiOperation(value = "国产矿物流新增装车")
|
|
|
@PostMapping(value = "/addDomesticLoadResult")
|
|
|
public Map<String, Object> addDomesticLoadResult(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
@@ -2451,11 +2457,12 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
String materialName,
|
|
|
- String resultForeignShipName){
|
|
|
+ String resultForeignShipName,
|
|
|
+ String supplierName){
|
|
|
if(map==null)
|
|
|
map=new HashMap<>();
|
|
|
System.out.println(map);
|
|
|
- return tmsTrainFeign.getPurchaseOrderList(map,apiId,pageNum,pageSize,materialName, resultForeignShipName);
|
|
|
+ return tmsTrainFeign.getPurchaseOrderList(map,apiId,pageNum,pageSize,materialName, resultForeignShipName,supplierName);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "销售钢材统计报表")
|