|
@@ -2513,6 +2513,25 @@ public class TMSController extends BaseRESTfulController {
|
|
|
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 = "销售钢材统计报表")
|
|
|
@PostMapping("/getSaleSteelReport")
|
|
|
public Map<String,Object> getSaleSteelReport(@RequestBody(required = false)Map<String,Object>map,
|