Browse Source

增加所有评审意见查询

master
WendyYang 1 year ago
parent
commit
c764d16840
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      pmapi/src/main/java/com/ningdatech/pmapi/meeting/mapper/MeetingExpertMapper.xml

+ 2
- 2
pmapi/src/main/java/com/ningdatech/pmapi/meeting/mapper/MeetingExpertMapper.xml View File

@@ -85,11 +85,11 @@


<sql id="reviewedByNotHeadman"> <sql id="reviewedByNotHeadman">
<if test="p.reviewed"> <if test="p.reviewed">
exists(select 1 from nd_expert_review ner where ner.project_id = np.id and ner.create_by =
exists(select 1 from nd_expert_review ner where ner.meeting_id = m.id and ner.project_id = np.id and ner.create_by =
me.expert_id) me.expert_id)
</if> </if>
<if test="!p.reviewed"> <if test="!p.reviewed">
not exists(select 1 from nd_expert_review ner where ner.project_id = np.id and ner.create_by =
not exists(select 1 from nd_expert_review ner where ner.meeting_id = m.id and ner.project_id = np.id and ner.create_by =
me.expert_id) me.expert_id)
</if> </if>
</sql> </sql>


Loading…
Cancel
Save