fix:查询子项

pg_adapter
wangxy 6 months ago
parent 7c09284ee1
commit 6a36a3e803

@ -64,9 +64,6 @@ public class CheckReportManager {
.eq(TdCheckType::getCheckId, checkReportDTO.getCheckId()) .eq(TdCheckType::getCheckId, checkReportDTO.getCheckId())
.remove(); .remove();
} else { } else {
if(Objects.isNull(tdCheckReport.getCheckState())){
tdCheckReport.setCheckState("3");
}
tdCheckReport.setDepart(ShiroUtils.getSysUser().getDept().getDeptName()); tdCheckReport.setDepart(ShiroUtils.getSysUser().getDept().getDeptName());
tdCheckReport.setAdduser(ShiroUtils.getSysUser().getUserName()); tdCheckReport.setAdduser(ShiroUtils.getSysUser().getUserName());
tdCheckReport.setCreateTime(new Date()); tdCheckReport.setCreateTime(new Date());

@ -195,7 +195,6 @@ public class CheckReportController extends BaseController {
@PostMapping("/selfCheckSave") @PostMapping("/selfCheckSave")
@ResponseBody @ResponseBody
public AjaxResult selfCheckSave(@RequestBody TdCheckReportDTO checkReportDTO) { public AjaxResult selfCheckSave(@RequestBody TdCheckReportDTO checkReportDTO) {
checkReportDTO.setCheckState("2");
return toAjax(checkReportManager.saveOrUpdate(checkReportDTO)); return toAjax(checkReportManager.saveOrUpdate(checkReportDTO));
} }

Loading…
Cancel
Save