Browse Source

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

LLL 1 year ago
parent
commit
2f9c062b03

+ 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>