Browse Source

今日未抄记录Bug修复 PengDi@2021/1/4

pengdi@zoniot.com 4 years ago
parent
commit
5112a059a9

+ 9 - 3
smart-city-platform/src/main/resources/mapper/MeterReadRecordMapper.xml

@@ -1060,9 +1060,15 @@
             device_id
             FROM sc_meter_read_record
             WHERE read_status = 1
-            and building_id = #{param.buildingId}
-            and customer_id =  #{param.custormerId}
-            and sys_id = #{param.channelId}
+            <if test = "param.buildingId != null">
+                and building_id = #{param.buildingId}
+            </if>
+            <if test="param.channelId != null">
+                and sys_id = #{param.channelId}
+            </if>
+            <if test="param.custormerId != null ">
+                and customer_id = #{param.custormerId}
+            </if>
             AND read_date = DATE_FORMAT( now( ), '%Y%m%d' )
         ) t1
         LEFT JOIN sc_device d on (t1.device_id = d.id)