用户需求任务

This commit is contained in:
2025-03-26 18:21:47 +08:00
parent 11cec800ef
commit c00e5776e8
55 changed files with 2138 additions and 262 deletions

View File

@ -87,8 +87,12 @@
<if test="qo.endDate !=null">
and s.openedDate <![CDATA[<=]]> #{qo.endDate}
</if>
<if test="qo.openedby != null and qo.openedby != '' ">
and s.openedBy = #{qo.openedby}
</if>
<if test="qo.status != null and qo.status != '' ">
and s.status = #{qo.status}
</if>
<if test="qo.productName != null and qo.productName != '' ">
and pt.name like concat('%', #{qo.productName}, '%')