瀏覽代碼

新增刪除入库功能;
更新打包版本号为1.10;

xiaosonghong 2 月之前
父節點
當前提交
9d41f84168

+ 1 - 1
pom.xml

@@ -6,7 +6,7 @@
 
     <groupId>org.example</groupId>
     <artifactId>dil-dazhou-api</artifactId>
-    <version>1.9</version>
+    <version>1.10</version>
 
     <parent>
         <groupId>org.springframework.boot</groupId>

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

@@ -1188,6 +1188,12 @@ public class WMSController extends BaseRESTfulController {
         return wmsFeign.updateInsertRealTime(map);
     }
 
+    @ApiOperation("删除手工入库记录")
+    @PostMapping("deleteInResult")
+    public Map<String,Object> deleteInResult(@RequestBody Map<String,Object> map) {
+        return wmsFeign.deleteInResult(map);
+    }
+
     @ApiOperation("划分实时库存重量")
     @PostMapping("updateInsertRealTimeWeight")
     public Map<String,Object> updateInsertRealTimeWeight(@RequestBody Map<String,Object> map) {

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

@@ -984,6 +984,9 @@ public interface WMSFeign {
     @PostMapping("/api/v1/wms/OyeResult/updateInsertRealTime")
     Map<String, Object> updateInsertRealTime(@RequestBody Map<String, Object> map);
 
+    @PostMapping("/api/v1/wms/OyeResult/deleteInResult")
+    Map<String, Object> deleteInResult(@RequestBody Map<String, Object> map);
+
     @PostMapping("/api/v1/wms/OyeResult/updateInsertRealTimeWeight")
     Map<String, Object> updateInsertRealTimeWeight(@RequestBody Map<String, Object> map);