Browse Source

修复创建会议选择项目重复

master
WendyYang 1 year ago
parent
commit
ead70f0fe6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      pmapi/src/main/java/com/ningdatech/pmapi/meeting/manage/MeetingManage.java

+ 1
- 1
pmapi/src/main/java/com/ningdatech/pmapi/meeting/manage/MeetingManage.java View File

@@ -840,7 +840,7 @@ public class MeetingManage {
" and m.type = %s and m.status != 3", meetingType);
query.eq(Project::getStatus, status.getCode());
query.and(q1 -> q1.notExists(sql).or(q2 -> q2.exists(sql + " inner join nd_expert_review ner " +
"on ner.meeting_id = m.id and ner.is_final = true and review_result in (2, 3)")));
"on ner.meeting_id = m.id and ner.project_id = mip.project_id and ner.is_final = true and review_result in (2, 3)")));
}

}

Loading…
Cancel
Save