Sfoglia il codice sorgente

桶装物料入库需求接口

ChenYang 1 anno fa
parent
commit
152db3b130

+ 1 - 1
ruoyi-admin/src/main/java/com/ruoyi/xuankuang/controller/PdaAgvCallController.java

@@ -34,7 +34,7 @@ public class PdaAgvCallController {
 
     @ApiOperation("桶装入库")
     @PostMapping("/theBucketIsLoadedIntoTheLibrary")
-    public AjaxResult theBucketIsLoadedIntoTheLibrary(String palletNo, @RequestParam String materialType,
+    public AjaxResult theBucketIsLoadedIntoTheLibrary(@RequestParam String palletNo, @RequestParam String materialType,
                                                       @RequestParam String sourceLocationId, @RequestParam Double quantity) {
         agvCallProxyService.theBucketIsLoadedIntoTheLibrary(palletNo, materialType, sourceLocationId, quantity);
         return AjaxResult.success("桶装入库下发任务成功");