|
@@ -187,6 +187,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="inputOrderSn != null">
|
|
|
AND o.input_order_sn = #{inputOrderSn}
|
|
|
</if>
|
|
|
+ <if test="companyName != null and companyName != ''">
|
|
|
+ AND u.company_name like concat('%', #{companyName}, '%')
|
|
|
+ </if>
|
|
|
<if test="searchKey != null and searchKey != ''">
|
|
|
AND (u.realname like concat('%', #{searchKey}, '%') or o.order_sn = #{searchKey} or u.id_card = #{searchKey} or g.goods_name like concat('%', #{searchKey}, '%'))
|
|
|
</if>
|