rentaiming
2024-07-26 28d9d2571b4544edb974751479224937dc5e5f58
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();
    }
}