|
|
|
@ -236,14 +236,22 @@ public class DistributionDatarepair {
|
|
|
|
|
} |
|
|
|
|
List<JSONObject> allSignfor = warehouseMappingDataMapper.findAllBillSign(parmeId); |
|
|
|
|
for (JSONObject entries : allSignfor) { |
|
|
|
|
Long id = entries.getLong("billId"); |
|
|
|
|
Boolean b =distrilbutionBillLadingClient.clerkBillCheckPushData(id); |
|
|
|
|
if(b!=null&&b){ |
|
|
|
|
warehouseMappingDataMapper.updateClearBillSignforStatus(entries.getLong("id"), entries.getLong("warehouseId"), 1); |
|
|
|
|
log.info(">>> pushBillNotification 成功 id={}",id); |
|
|
|
|
}else{ |
|
|
|
|
log.error(">>> pushBillNotification 失败 id="+id); |
|
|
|
|
try { |
|
|
|
|
Long id = entries.getLong("billId"); |
|
|
|
|
Boolean b =distrilbutionBillLadingClient.clerkBillCheckPushData(id); |
|
|
|
|
if(b!=null&&b){ |
|
|
|
|
warehouseMappingDataMapper.updateClearBillSignforStatus(entries.getLong("id"), entries.getLong("warehouseId"), 1); |
|
|
|
|
log.info(">>> pushBillNotification 成功 id={}",id); |
|
|
|
|
}else{ |
|
|
|
|
log.error(">>> pushBillNotification 失败 id="+id); |
|
|
|
|
} |
|
|
|
|
Thread.sleep(1000*60); |
|
|
|
|
} catch (InterruptedException e) { |
|
|
|
|
throw new RuntimeException(e); |
|
|
|
|
} finally { |
|
|
|
|
log.error(">>> pushBillNotification 释放"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
return ReturnT.SUCCESS; |
|
|
|
|
} |
|
|
|
|