@ -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 test="deptCode != null and deptCode != ''">
AND io.deptCode = #{deptCode}