oms页面查询条件;

This commit is contained in:
王奎兴
2026-05-18 10:26:32 +08:00
parent c539b86535
commit bb66a76762
5 changed files with 44 additions and 5 deletions
@@ -157,6 +157,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="materialInventoryId != null ">
and a.material_inventory_id = #{materialInventoryId}
</if>
<if test="createTimeStart != null and createTimeStart != ''">
and date_format(a.create_time,'%Y-%m-%d') &gt;= #{createTimeStart}
</if>
<if test="createTimeEnd != null and createTimeEnd != ''">
and date_format(a.create_time,'%Y-%m-%d') &lt;= #{createTimeEnd}
</if>
<if test="organizationId != null ">
and a.organization_id = #{organizationId}
</if>