Browse Source

委托查询、委托结项查询条件加上委托编号

LLL 1 year ago
parent
commit
2ce89f0ad6

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

@@ -26,6 +26,9 @@
                 <if test="itdmWeituoInfo.weituoClient != null">
                     w.weituo_client like CONCAT('%', #{itdmWeituoInfo.weituoClient},'%')
                 </if>
+                <if test="itdmWeituoInfo.weituoNo != null">
+                    w.weituo_no like CONCAT('%', #{weituoNo},'%')
+                </if>
                 <if test="itdmWeituoInfo.shenheStatus != null">
                     and w.shenhe_status = #{itdmWeituoInfo.shenheStatus}
                 </if>

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

@@ -14,6 +14,9 @@
             <if test=" vo.weituoClient!=null ">
                 and iwi.weituo_client like CONCAT('%', #{vo.weituoClient},'%')
             </if>
+            <if test=" vo.weituoNo!=null ">
+                and iwi.weituo_no like CONCAT('%', #{vo.weituoNo},'%')
+            </if>
             <if test=" vo.startTIme!=null and vo.endTime!=null ">
                 and iwi.create_time between #{vo.startTime} and #{vo.endTime}
             </if>
@@ -27,4 +30,4 @@
         order by weituo_client,weituo_no
     </select>
 
-</mapper>
+</mapper>