Your Name 3 år sedan
förälder
incheckning
2bb1e1fe15

+ 4 - 4
src/main/java/com/steerinfo/dil/controller/WMSController.java

@@ -370,14 +370,14 @@ public class WMSController extends BaseRESTfulController {
     @ApiImplicitParams({
             @ApiImplicitParam(name = "apiId", value = "", required = false, dataType = "BigDecimal"),
     })
-    public RESTfulResult selectScanResultByIboundResultId( Map<String, Object> mapValue,
+    public RESTfulResult selectScanResultByIboundResultId(@RequestBody(required = false) Map<String, Object> mapValue,
                                                            Integer apiId,
                                                            Integer pageNum,
                                                            Integer pageSize,
-                                                           Integer inboundId,
-                                                           String con) {
+                                                           Integer inboundId
+                                                          ) {
 
-        return wmsFeign.selectScanResultByIboundResultId(mapValue==null?new HashMap<>():mapValue, apiId,pageNum, pageSize,inboundId,con);
+        return wmsFeign.selectScanResultByIboundResultId(mapValue==null?new HashMap<>():mapValue, apiId,pageNum, pageSize,inboundId);
     }
    //根据物资信息获取原来垛位信息
    @PostMapping("/selectInfoByMaterialCode")

+ 2 - 2
src/main/java/com/steerinfo/dil/feign/WMSFeign.java

@@ -376,8 +376,8 @@ public interface WMSFeign {
                                                    @RequestParam Integer apiId,
                                                    @RequestParam Integer pageNum,
                                                    @RequestParam Integer pageSize,
-                                                   @RequestParam Integer inboundId,
-                                                   @RequestParam String con);
+                                                   @RequestParam Integer inboundId
+                                                   );
     //根据物资信息查找暂存的垛位
     @PostMapping("/api/v1/wms/reboundResult/selectInfoByMaterialCode")
     Map<String,Object> selectInfoByMaterialCode(@RequestBody(required = false) Map<String,Object> mal);