select stb.store_id, if (stb.store_id is null, '未分配店铺', ss.name) as store_name, count(distinct stb.device_id) as device_count, sd.device_name as device_name, count(stb.bill_id) as order_count, sum(if(stb.suit_fee_type in ('1', '4'), timestampdiff(second, stb.suit_start_time, stb.suit_end_time), 0)) as `seconds`, sum(if(stb.suit_fee_type in ('2', '3'), stb.suit_end_ele - stb.suit_start_ele, 0)) as `ele`, sum(stb.arrival_amount) as arrival_amount from sm_transaction_bill stb left join sm_store ss on ss.store_id = stb.store_id left join sm_device sd on sd.device_id = stb.device_id and stb.mch_id = #{mchId} and stb.store_id = #{storeId} and stb.type = #{billType} and ss.name like concat('%', #{storeName}, '%') and date(stb.create_time) >= #{dateRange[0]} and date(stb.create_time) <= #{dateRange[1]} and stb.status in #{item}