|
|
|
@ -539,6 +539,7 @@
|
|
|
|
|
|
|
|
|
|
<select id="listIncrementalOrdersByClients" resultType="com.alibaba.fastjson.JSONObject">
|
|
|
|
|
<include refid="tradelog_list_keys"/>
|
|
|
|
|
,i.incremental_rate as rate_value
|
|
|
|
|
FROM pmt_orders o
|
|
|
|
|
INNER JOIN sys_clients p ON p.client_id=o.client_id and p.is_valid=1
|
|
|
|
|
<if test="client_ids!=null">
|
|
|
|
@ -551,6 +552,7 @@
|
|
|
|
|
and p.client_id=#{client_id}
|
|
|
|
|
</if>
|
|
|
|
|
LEFT JOIN pmt_transactions t on t.order_id=o.order_id and t.refund_id is null and t.transaction_type='Credit'
|
|
|
|
|
LEFT JOIN pmt_incremental_detail i on i.transaction_id = t.transaction_id
|
|
|
|
|
<where>
|
|
|
|
|
<if test="from!=null">and o.create_time >= #{from}</if>
|
|
|
|
|
<if test="to!=null">and o.create_time < #{to}</if>
|
|
|
|
|