|
|
@@ -543,4 +543,25 @@ public class AMScontroller {
|
|
|
) {
|
|
|
return amsFeign.getSalePlanList(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "发运单绑定接口", notes = "发运单绑定接口")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "map", value = "json格式具体参数", required = true, dataType = "Map<String,Object>")
|
|
|
+ })
|
|
|
+ @PostMapping(value = "/bindSale")
|
|
|
+ public RESTfulResult bindSale(@RequestBody(required = false) Map<String, Object> map) {
|
|
|
+ return amsFeign.bindSale(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取物资数据", notes = "获取物资数据")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "id", value = "物料编码", required = true, dataType = "String")
|
|
|
+ })
|
|
|
+ @PostMapping(value = "/getMaterial")
|
|
|
+ public RESTfulResult bindSale(@RequestParam String prodCode,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize) {
|
|
|
+ return amsFeign.getMaterial(prodCode, apiId, pageNum, pageSize);
|
|
|
+ }
|
|
|
}
|