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