rentaiming
2024-07-29 b10ab69ad0b3ba71837b48515e2c4eab7b4694a4
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/controller/SlVolumeProductionCkController.java
@@ -71,7 +71,9 @@
    @DeleteMapping("/{id}")
    public R<?> delStoreManagement(
            @ApiParam(name = "id", value = "出库批次id", required = true) @PathVariable("id") Integer id) {
        slVolumeProductionCkService.removeById(id);
        SlVolumeProductionCk byId = slVolumeProductionCkService.getById(id);
        byId.setDelFlag("1");
        slVolumeProductionCkService.updateById(byId);
        return R.ok();
    }
}