Commit 1a8c8d71 by guojuxing

发票列表查询接口修改:计费中心中的查询参数与财务不一样,进行匹配

parent 35197c30
......@@ -407,5 +407,17 @@
<if test="invoiceType != null">
and invoice_type = #{invoiceType}
</if>
<if test="enterpriseId != null">
and enterprise_id = #{enterpriseId}
</if>
<if test="startTime != null and startTime != '' ">
and DATE_FORMAT(create_time,'%Y-%m-%d') &gt;= #{startTime}
</if>
<if test="endTime != null and endTime != '' ">
and DATE_FORMAT(create_time,'%Y-%m-%d') &lt;= #{endTime}
</if>
<if test="invoiceStatusStr != null">
and invoice_status in #{invoiceStatusStr}
</if>
</select>
</mapper>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment