修改询价推迟项目接口 原因进行记录
This commit is contained in:
@ -122,7 +122,6 @@ public class ISeatatEntrustServiceImpl extends BaseServiceImpl<ProjectEntrustMap
|
||||
if(!response.isSuccess()){
|
||||
ProjectExceptionEnum.FRAME_EXCEPTION_PROJECT_SECTION_NOT_FIND.customValidName(response.getMessage(),!response.isSuccess());
|
||||
}
|
||||
result = response.getData();
|
||||
}
|
||||
|
||||
//修改评审室开始时间
|
||||
@ -133,9 +132,13 @@ public class ISeatatEntrustServiceImpl extends BaseServiceImpl<ProjectEntrustMap
|
||||
if(!response.isSuccess()){
|
||||
ProjectExceptionEnum.FRAME_EXCEPTION_PROJECT_SECTION_NOT_FIND.customValidName(response.getMessage(),!response.isSuccess());
|
||||
}
|
||||
result = response.getData();
|
||||
}
|
||||
|
||||
ProjectRecord record = new ProjectRecord();
|
||||
record.setId(section.getProjectId());
|
||||
record.setTenderingContent(inquiryNoticeVO.getReason());
|
||||
result = projectRecordService.updateById(record);
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
@ -261,10 +261,10 @@ public class ProjectExceptionServiceImpl extends BaseServiceImpl<ProjectExceptio
|
||||
ProjectRecord projectRecord = new ProjectRecord();
|
||||
projectRecord.setStatus(ProjectCommonUtil.PROJECT_STATUS_9);
|
||||
projectRecord.setId(exception.getProjectId());
|
||||
projectRecord.setTenderingContent(inquiryNoticeVO.getReason());
|
||||
projectRecordService.updateById(projectRecord);
|
||||
|
||||
section.setStatus(ProjectCommonUtil.SECTION_STATUS_9);
|
||||
section.setBusinessModule(ProjectCommonUtil.BUSINESS_MODULE_12);
|
||||
projectSectionService.updateById(section);
|
||||
return result;
|
||||
}
|
||||
|
Reference in New Issue
Block a user