|
@@ -214,6 +214,13 @@ public class CcpmList {
|
|
|
cwProjectReviewNewMapper.insert(cwProjectReviewNew);
|
|
|
}
|
|
|
|
|
|
+ if ("5".equals(cwProjectReviewNew.getReviewStatus())) {
|
|
|
+ CwProjectRecords records = new CwProjectRecords();
|
|
|
+ records.setId(cwProjectReviewNew.getProjectId());
|
|
|
+ records.setReportReview("1"); // 已开始报告复核
|
|
|
+ cwProjectRecordsMapper.updatereportReviewById(records);
|
|
|
+ }
|
|
|
+
|
|
|
if (CollectionUtils.isNotEmpty(reportData.getConsultants())) {
|
|
|
for (RuralReportConsultant consultant : reportData.getConsultants()) {
|
|
|
if (consultant != null) {
|