修复图表报错问题

This commit is contained in:
2024-11-05 12:11:59 +08:00
parent 025fe1b0b6
commit af3950684a

View File

@@ -65,7 +65,7 @@
AND <![CDATA[ DATE_FORMAT(o.create_time, '%Y-%m-%d') <= DATE_FORMAT(#{endTime}, '%Y-%m-%d') ]]>
AND o.payment_time IS NOT NULL AND o.status IN (1, 2, 3)
GROUP BY orderDate
ORDER BY o.create_time ASC
ORDER BY orderDate ASC
</select>
<!-- 查询提现图表数据 -->
@@ -79,7 +79,7 @@
AND <![CDATA[ DATE_FORMAT(mwa.create_time, '%Y-%m-%d') <= DATE_FORMAT(#{endTime}, '%Y-%m-%d') ]]>
AND mwa.payment_status = 1
GROUP BY withdrawDate
ORDER BY mwa.create_time ASC
ORDER BY withdrawDate ASC
</select>
<!-- 查询本周提现数量 -->