This commit is contained in:
磷叶 2024-12-13 17:33:48 +08:00
parent e71ff4aa38
commit 4e011cfd2b

View File

@ -68,6 +68,9 @@
<if test="query.deptId != null "> and bpo.dept_id = #{query.deptId}</if>
<if test="query.erpMaterialId != null and query.erpMaterialId != ''"> and bpo.erp_material_id = #{query.erpMaterialId}</if>
<if test="query.erpBaseUnitId != null and query.erpBaseUnitId != ''"> and erp_base_unit_id = #{query.erpBaseUnitId}</if>
<if test="query.materialNumber != null and query.materialNumber != ''">
and bpo.material_number like concat('%',#{query.materialNumber},'%')
</if>
<if test="query.materialCategory != null and query.materialCategory != ''">
and bpo.material_category like concat('%',#{query.materialCategory},'%')
</if>