@@ -1011,5 +1011,12 @@ public class WMSController extends BaseRESTfulController {
String endTime) {
return wmsFeign.getWmsOutboundResultStatistics(mapValue ==null? new HashMap<>():mapValue, apiId, pageNum, pageSize,warehouseId,con,startTime,endTime);
}
+
+ //删除扫码吊牌
+ @PostMapping("/undoInbound")
+ @ApiOperation(value = "删除扫码吊牌")
+ public RESTfulResult undoInbound(@RequestParam("inboundId") BigDecimal inboundId){
+ return wmsFeign.undoInbound(inboundId);
+ }
@@ -872,4 +872,6 @@ public interface WMSFeign {
@RequestParam String startTime,
@RequestParam String endTime);
+ @PostMapping("/api/v1/wms/inboundResult/undoInbound")
+ RESTfulResult undoInbound(@RequestParam BigDecimal inboundId);