Browse Source

同步20200908分支

hym 4 years ago
parent
commit
0bfcfe01c6

+ 7 - 2
smart-city-platform/src/main/java/com/bz/smart_city/controller/PlatformApiController.java

@@ -43,8 +43,13 @@ public class PlatformApiController {
     public AjaxMessage sendCommond (
             @ApiParam(value = "客户id", required = true)  @RequestParam String customerNo,
             @RequestParam String meterNo,Integer type) {
-        platformAapiService.sendCommond(meterNo,type,customerNo);
-        return new AjaxMessage<>(ResultStatus.OK);
+        int result=platformAapiService.sendCommond(meterNo,type,customerNo);
+        if(result==0){
+            return new AjaxMessage<>(ResultStatus.OK);
+        }else{
+            return new AjaxMessage<>(ResultStatus.TASK_OPERATE_FAILED);
+        }
+
     }
     @GetMapping  ("/getWaterMeterNo")
     @ApiOperation(value = "获取电子号")

+ 1 - 1
smart-city-platform/src/main/java/com/bz/smart_city/service/PlatformAapiService.java

@@ -6,7 +6,7 @@ import java.util.Map;
 public interface PlatformAapiService {
     void updateMeterNo(String meterNo, String meterCode, String customerNo);
 
-    void sendCommond(String meterNo, Integer type, String customerNo);
+    int sendCommond(String meterNo, Integer type, String customerNo);
 
     String getWaterMeterNo(String meterNo, String customerNo);
 

+ 4 - 3
smart-city-platform/src/main/java/com/bz/smart_city/service/sync/PlatformAapiServiceImpl.java

@@ -43,9 +43,9 @@ public class PlatformAapiServiceImpl implements PlatformAapiService {
     }
 
     @Override
-    public void sendCommond(String meterNo, Integer type, String customerNo) {
-
+    public int sendCommond(String meterNo, Integer type, String customerNo) {
 
+            int result=-1;
             Device device = getDevice(meterNo, customerNo);
             if(device!=null){
                 deviceService.setValveV2(device.getId(),type+"");
@@ -57,11 +57,12 @@ public class PlatformAapiServiceImpl implements PlatformAapiService {
                 operatingValveRecord.setWaterFileNo(device.getMetercode());
                 operatingValveRecord.setWaterNo(device.getWaterMeterNo());
                 operatingValveRecord.setOperation(type);
+                result=0;
                 operatingValveRecordMapper.insert(operatingValveRecord);
 
             }
 
-
+            return  result;
 
     }
 

+ 1 - 1
smart-city-platform/src/main/resources/mapper/ClearingRecordMapper.xml

@@ -227,7 +227,7 @@
 		sc_clearing_record cr
 		LEFT JOIN sc_clearing_plan cp ON ( cr.plan_id = cp.id ) 
 	WHERE
-		cr.`status` = 1
+		cr.`status` = 1 and cp.`status`=1
 	<if test="custId != null and custId != 0 ">
 		and cp.clearing_customer = #{custId}
 	</if>

+ 2 - 1
smart-city-platform/src/main/resources/mapper/DeviceMapper.xml

@@ -1214,7 +1214,8 @@
         and sd.customer_id = #{customerId}
         and sil.is_installed=1
         <if test="createDate != null and createDate != ''"> and DATE_FORMAT(sd.date_create, '%Y%m%d' ) = #{createDate}</if>
-        and sil.metercode in <foreach collection="fileNo" item="item" open="(" separator="," close=")">#{item}</foreach>
+        and sil.metercode in
+            <foreach collection="fileNo" item="item" open="(" separator="," close=")">#{item}</foreach>
     </select>
     <update id="updateMeterNo">
         update sc_device set metercode=#{meterNo}