소스 검색

委托结项只显示审核通过的委托

LLL 1 년 전
부모
커밋
2f9c062b03
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      itdmServer/module-iTDM/src/main/java/org/jeecg/modules/weituo/mapper/xml/ItdmWeituoInfoMapper.xml

+ 4 - 1
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/weituo/mapper/xml/ItdmWeituoInfoMapper.xml

@@ -26,9 +26,12 @@
                 <if test="itdmWeituoInfo.weituoClient != null">
                     w.weituo_client like CONCAT('%', #{itdmWeituoInfo.weituoClient},'%')
                 </if>
+                <if test="itdmWeituoInfo.shenheStatus != null">
+                    and w.shenhe_status = #{itdmWeituoInfo.shenheStatus}
+                </if>
             </where>
             ORDER BY
             w.weituo_no
         ) e
     </select>
-</mapper>
+</mapper>