rentaiming
2024-07-30 ad663df3b38b873d79fff48570dfb56b69697ac6
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();
    }
}