|
@@ -782,7 +782,7 @@
|
|
|
|
|
|
<select id="selectOrdersNumberBetweenHours" resultType="com.hywa.orderclient.forms.OrderNumberStatisticForm">
|
|
|
select a.id time,ifnull(l.cnt,0) orders
|
|
|
- from (SELECT (help_category_id-1) id FROM mysql.help_category ORDER BY help_category_id LIMIT 24) a
|
|
|
+ from (SELECT (CAST( help_category_id AS SIGNED ) - 1) id FROM mysql.help_category ORDER BY help_category_id LIMIT 24) a
|
|
|
left join (select hour(o.pay_time) payTime,count(distinct o.id) cnt
|
|
|
from t_bp_order_info o where o.status != '0' and o.status != '4' and o.status is not null
|
|
|
and o.pay_time between str_to_date(#{beginTime},"%Y-%m-%d %H:%i:%s") and str_to_date(#{endTime},"%Y-%m-%d %H:%i:%s")
|