打印查询功能修改

master
zpl 3 years ago
parent 05bbfd02dc
commit 54a07a32b4

@ -547,16 +547,16 @@
<if test="startToDate != null"> <if test="startToDate != null">
AND PL.CREATED_DATE_TIME &lt;= #{startToDate} AND PL.CREATED_DATE_TIME &lt;= #{startToDate}
</if> </if>
<if test="isPrint != null"> <if test="isPrint != null and isPrint != ''">
AND PL.IS_PRINT = #{isPrint} AND PL.IS_PRINT = #{isPrint}
</if> </if>
<if test="category != null"> <if test="category != null and category != ''">
AND PL.CATEGORY = #{category} AND PL.CATEGORY = #{category}
</if> </if>
<if test="inventory != null"> <if test="inventory != null and inventory != ''">
AND PL.INVENTORY = #{inventory} AND PL.INVENTORY = #{inventory}
</if> </if>
<if test="sfc != null"> <if test="sfc != null and sfc != ''">
AND PL.SFC = #{sfc} AND PL.SFC = #{sfc}
</if> </if>
ORDER BY PL.CREATED_DATE_TIME DESC ORDER BY PL.CREATED_DATE_TIME DESC

Loading…
Cancel
Save