|
@@ -117,6 +117,18 @@ public class WMSController extends BaseRESTfulController {
|
|
|
return resTfulResult;
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/wmspoutboundresults/copyWmspOutboundScanResult")
|
|
|
+ public Map<String, Object> copyWmspOutboundScanResult(@RequestBody(required = false) Map<String, Object> map) {
|
|
|
+ Map<String, Object> resTfulResult = wmsFeign.copyWmspOutboundScanResult(map);
|
|
|
+ return resTfulResult;
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/wmspoutboundresults/deleteWmspOutboundScanResult")
|
|
|
+ public Map<String, Object> deleteWmspOutboundScanResult(@RequestBody(required = false) Map<String, Object> map) {
|
|
|
+ Map<String, Object> resTfulResult = wmsFeign.deleteWmspOutboundScanResult(map);
|
|
|
+ return resTfulResult;
|
|
|
+ }
|
|
|
+
|
|
|
@PostMapping("/wmspoutboundresults/outbountResultToSuccess")
|
|
|
public Map<String,Object> outbountResultToSuccess(@RequestParam Integer resultId){
|
|
|
return wmsFeign.outbountResultToSuccess(resultId);
|