Commit bfbec035 authored by jiaorz's avatar jiaorz

修改提前还车逻辑

parent 17601a90
......@@ -479,7 +479,7 @@
and v1.book_type = #{bookType}
</if>
<if test="keywords != null and keywords != ''">
and v3.code like concat("%", #{keywords},"%") or v3.number_plate like concat("%", #{keywords},"%")
and (v3.code like concat("%", #{keywords},"%") or v3.number_plate like concat("%", #{keywords},"%"))
</if>
<if test="companyIds != null and companyIds.size > 0">
and (v1.lift_company in
......
......@@ -424,7 +424,7 @@
and v1.code = #{code}
</if>
<if test="keywords != null and keywords != ''">
and v1.code like concat("%", #{keywords},"%") or v1.number_plate like concat("%", #{keywords},"%")
and (v1.code like concat("%", #{keywords},"%") or v1.number_plate like concat("%", #{keywords},"%"))
</if>
<if test="companyIds != null and companyIds.size > 0">
and v1.park_branch_company_id in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment