liyg пре 1 година
родитељ
комит
aff3eafa90

+ 7 - 0
src/main/java/com/steerinfo/dil/controller/TMSController.java

@@ -739,4 +739,11 @@ public class TMSController extends BaseRESTfulController {
     public RESTfulResult updateWeight(@RequestBody  Map<String,Object> map) {
         return tmsFeign.updateWeight(map);
     }
+
+    @ApiOperation("checkWeightResult")
+    @PostMapping("/checkWeightResult")
+    @LogAround(foreignKeys = {"resultId"}, foreignKeyTypes = {"计量实绩"})
+    public Map<String,Object> checkWeightResult(@RequestBody  Map<String,Object> map) {
+        return tmsFeign.checkWeightResult(map);
+    }
 }

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

@@ -260,6 +260,9 @@ public interface TmsFeign {
 
     @PostMapping("api/v1/tms/omstransorders/batchDispatchSc")
     Map<String, Object> batchDispatchSc(@RequestBody(required = false) Map<String, Object> map);
+
+    @PostMapping("api/v1/tms/tmsweightresults/checkWeightResult")
+    Map<String, Object> checkWeightResult(@RequestBody(required = false) Map<String, Object> map);
 }