|
@@ -62,12 +62,22 @@ public class WMSController extends BaseRESTfulController {
|
|
return resTfulResult;
|
|
return resTfulResult;
|
|
}
|
|
}
|
|
|
|
|
|
- @PostMapping("/insertWmspOutboundScanResult")
|
|
|
|
- public Map<String, Object> insertWmspOutboundScanResult(@RequestBody(required = false) Map<String, Object> mapval) {
|
|
|
|
- Map<String, Object> resTfulResult = wmsFeign.insertWmspOutboundScanResult(mapval);
|
|
|
|
|
|
+ @PostMapping(value = "/deletewmspOutboundResult")
|
|
|
|
+ public Map<String,Object> deleteWmspOutboundResult(@RequestParam Integer resultId){
|
|
|
|
+ return wmsFeign.deleteWmspOutboundResult(resultId);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @PostMapping("/insertwmspOutboundScanResult")
|
|
|
|
+ public Map<String, Object> insertwmspOutboundScanResult(@RequestBody(required = false) Map<String, Object> map) {
|
|
|
|
+ Map<String, Object> resTfulResult = wmsFeign.insertwmspOutboundScanResult(map);
|
|
return resTfulResult;
|
|
return resTfulResult;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @PostMapping("/outbountResultToSuccess")
|
|
|
|
+ public Map<String,Object> outbountResultToSuccess(@RequestParam Integer resultId){
|
|
|
|
+ return wmsFeign.outbountResultToSuccess(resultId);
|
|
|
|
+ }
|
|
|
|
+
|
|
@PostMapping("/updataResultStatus")
|
|
@PostMapping("/updataResultStatus")
|
|
public Map<String, Object> updataResultStatus(@RequestParam Integer resultId) {
|
|
public Map<String, Object> updataResultStatus(@RequestParam Integer resultId) {
|
|
Map<String, Object> resTfulResult = wmsFeign.updataResultStatus(resultId);
|
|
Map<String, Object> resTfulResult = wmsFeign.updataResultStatus(resultId);
|