11/15 供应商新增入院药品优化1.0

dev_unify
wangwei 5 months ago
parent a5504c85de
commit 6188451289

@ -58,5 +58,6 @@ public class FilterThrProductsRequest extends ListPageRequest {
private Integer productType ; private Integer productType ;
private String keyWords; private String keyWords;
private String bzgg;
} }

@ -209,6 +209,9 @@
<if test="name != '' and name != null"> <if test="name != '' and name != null">
AND tdi.name like concat('%', #{name}, '%') AND tdi.name like concat('%', #{name}, '%')
</if> </if>
<if test="bzgg != '' and bzgg != null">
AND tdi.bzgg like concat('%', #{bzgg}, '%')
</if>
<if test="internalMaterialCode != '' and internalMaterialCode != null"> <if test="internalMaterialCode != '' and internalMaterialCode != null">
AND tdi.internalMaterialCode like concat('%', #{internalMaterialCode}, '%') AND tdi.internalMaterialCode like concat('%', #{internalMaterialCode}, '%')
</if> </if>
@ -232,6 +235,7 @@
or tdi.name like concat('%', #{keyWords}, '%') or tdi.name like concat('%', #{keyWords}, '%')
or tdi.registerNo like concat('%', #{keyWords}, '%') or tdi.registerNo like concat('%', #{keyWords}, '%')
or tdi.spec like concat('%', #{keyWords}, '%')) or tdi.spec like concat('%', #{keyWords}, '%'))
or tdi.bzgg like concat('%', #{keyWords}, '%')
</if> </if>
</where> </where>
order by tdi.createTime DESC order by tdi.createTime DESC

Loading…
Cancel
Save