手持终端预验收单据关键字查询

dev2.0
anthonywj 2 years ago
parent b16422ae15
commit 4aa038d37d

@ -201,4 +201,6 @@ public class FilterOrderRequest extends ListPageRequest {
private Integer confirmStatus;
private Boolean filterSelected;
private List<String> inOrders;
private String keyWord;
}

@ -51,6 +51,12 @@
<if test="fromCorp != null and fromCorp != ''">
AND io.fromCorp = #{fromCorp}
</if>
<if test="keyWord != null and keyWord != ''">
AND (
bc.name like concat('%', #{keyWord}, '%')
or io.remark like concat('%', #{keyWord}, '%')
or io.fromInvCode like concat('%', #{keyWord}, '%') )
</if>
<if test="deptCode != null and deptCode != ''">
AND io.deptCode = #{deptCode}
</if>

Loading…
Cancel
Save