|
@@ -648,7 +648,7 @@
|
|
|
count(1) AS read_times,
|
|
|
SUM(IF(read_status = 2, 1, 0)) as real_read_times,
|
|
|
SUM(IF(read_status = 1, 1, 0)) as un_read_times ,
|
|
|
- FORMAT( SUM(IF(read_status = 2, 1, 0)) / count(1) * 100, 2 ) AS read_rate
|
|
|
+ convert( SUM(IF(read_status = 2, 1, 0)) / count(1) * 100, decimal(5,2) ) AS read_rate
|
|
|
FROM
|
|
|
sc_meter_read_record
|
|
|
WHERE 1 = 1
|
|
@@ -692,6 +692,65 @@
|
|
|
left join sc_device_type dt on (tmp.device_type_id = dt.id)
|
|
|
left join sc_device_manufacturer m on (dt.manufacturer_id = m.id)
|
|
|
</sql>
|
|
|
+ <select id="getListByToday_COUNT" resultType="Long">
|
|
|
+ SELECT
|
|
|
+ count(1)
|
|
|
+ FROM
|
|
|
+ (
|
|
|
+ SELECT
|
|
|
+ customer_id,
|
|
|
+ concentrator_id,
|
|
|
+ device_type_id,
|
|
|
+ count(1) as device_count,
|
|
|
+ count(1) AS read_times,
|
|
|
+ SUM(IF(read_status = 2, 1, 0)) as real_read_times,
|
|
|
+ SUM(IF(read_status = 1, 1, 0)) as un_read_times ,
|
|
|
+ convert( SUM(IF(read_status = 2, 1, 0)) / count(1) * 100, decimal(5,2) ) AS read_rate
|
|
|
+ FROM
|
|
|
+ sc_meter_read_record
|
|
|
+ WHERE 1 = 1
|
|
|
+ and device_type_id IN ( SELECT device_type_id FROM sc_w_meter_type WHERE parent_id = 1 )
|
|
|
+ <!-- 表类型 -->
|
|
|
+ <if test="param.deviceTypeId != null ">
|
|
|
+ and device_type_id = #{param.deviceTypeId}
|
|
|
+ </if>
|
|
|
+ <!-- 数据权限 -->
|
|
|
+ <if test="param.siteId != null and param.siteId != 0 "> and site_id = #{param.siteId} </if>
|
|
|
+ <if test='param.programItems != null and param.programItems.size() != 0' >
|
|
|
+ and concentrator_id IN (
|
|
|
+ SELECT DISTINCT
|
|
|
+ rd.concentrator_id
|
|
|
+ FROM
|
|
|
+ sc_water_related_device rd
|
|
|
+ WHERE
|
|
|
+ rd.device_id IN (
|
|
|
+ SELECT
|
|
|
+ ud.device_id
|
|
|
+ FROM
|
|
|
+ (
|
|
|
+ SELECT
|
|
|
+ DISTINCT df.device_id
|
|
|
+ FROM sc_device_dim_info df
|
|
|
+ WHERE 1 = 1
|
|
|
+ and <foreach collection="param.programItems" item="item" open="(" separator=" or " close=")">
|
|
|
+ (df.dimension_code = #{item.dimensionCode} and df.dimension_value = #{item.dimensionValue})
|
|
|
+ </foreach> ) ud
|
|
|
+ )
|
|
|
+ )
|
|
|
+ </if>
|
|
|
+ <if test = "param.statDay != null and param.statDay != 0"> and read_date = #{param.statDay}</if>
|
|
|
+ GROUP BY
|
|
|
+ customer_id,
|
|
|
+ concentrator_id,
|
|
|
+ device_type_id
|
|
|
+ ) tmp
|
|
|
+ where 1 = 1
|
|
|
+ <if test = "param.beginRate != null "> and tmp.read_rate >= #{param.beginRate}</if>
|
|
|
+ <if test = "param.endRate != null "> and tmp.read_rate <![CDATA[ <= ]]> #{param.endRate}</if>
|
|
|
+ <if test = "param.custormerId != null"> and tmp.customer_id = #{param.custormerId}</if>
|
|
|
+ <if test = "param.concentratorId != null">and tmp.concentrator_id = #{param.concentratorId}</if>
|
|
|
+ <if test = "param.deviceTypeId != null" >and tmp.device_type_id = #{param.deviceTypeId}</if>
|
|
|
+ </select>
|
|
|
<select id="getListByToday" resultType="com.bz.smart_city.dto.StatMeterReadRateDto">
|
|
|
<include refid="base_query_getListByToday" />
|
|
|
<include refid="where_clause" />
|