扫码枪出库接口

This commit is contained in:
2025-07-31 11:18:01 +08:00
parent b063ccefd4
commit e944fa1ae9
3 changed files with 32 additions and 0 deletions

View File

@@ -163,4 +163,13 @@ public class WmsStockIoController extends BaseController {
return R.fail(e.getMessage());
}
}
@PostMapping("/scanOutStock")
public R<Void> scanOutStock(@RequestBody WmsStockIoDetailBo bo) {
try {
boolean result = iWmsStockIoService.scanOutStockByBo(bo);
return toAjax(result);
} catch (Exception e) {
return R.fail(e.getMessage());
}
}
}