|
@@ -315,14 +315,17 @@ public class BaseDownServiceImpl implements BaseDownService {
|
|
|
JSONArray jsonArray = (JSONArray) jsonResult.getData();
|
|
|
|
|
|
if (jsonArray != null) {
|
|
|
+ log.info("格力品牌安装销售类型下载了{}条数据",jsonArray.size());
|
|
|
|
|
|
- log.info("下载了{}条数据",jsonArray.size());
|
|
|
-
|
|
|
- glppxslxDownloadService.extractedXSLX(jsonArray);
|
|
|
-
|
|
|
- jsonArray.clear();
|
|
|
- log.info("格力品牌安装销售类型信息处理完成: \uF0B7{}",sdf.format(new Date()));
|
|
|
-
|
|
|
+ try{
|
|
|
+ glppxslxDownloadService.extractedXSLX(jsonArray);
|
|
|
+ jsonArray.clear();
|
|
|
+ log.info("格力品牌安装销售类型信息处理完成: \uF0B7{}",sdf.format(new Date()));
|
|
|
+ } catch (Exception ex) {
|
|
|
+ jsonArray.clear();
|
|
|
+ ex.printStackTrace();
|
|
|
+ log.info("格力品牌安装销售类型处理失败");
|
|
|
+ }
|
|
|
}else {
|
|
|
log.info("["+url+"]无数据");
|
|
|
}
|