|
|
@@ -335,6 +335,9 @@
|
|
|
and o.status not in ('close', 'noPayment')
|
|
|
and o.money > 0
|
|
|
and o.money > ifnull(o.refund_money,0)
|
|
|
+ <if test="startTime != null">
|
|
|
+ and o.created_time >= #{startTime}
|
|
|
+ </if>
|
|
|
</select>
|
|
|
|
|
|
<select id="getTagUserDataPage" resultType="com.cyksj.model.views.UserOrderDetailView">
|
|
|
@@ -356,6 +359,9 @@
|
|
|
and o.status not in ('close', 'noPayment')
|
|
|
and o.money > 0
|
|
|
and o.money > ifnull(o.refund_money,0)
|
|
|
+ <if test="startTime != null">
|
|
|
+ and o.created_time >= #{startTime}
|
|
|
+ </if>
|
|
|
group by date_format(o.created_time,'%Y-%m-%d')
|
|
|
order by date_format(o.created_time,'%Y-%m-%d') desc
|
|
|
</select>
|