Browse Source

注释掉 定时获取签收信息

wangxiaoming 6 years ago
parent
commit
5057e6556a

+ 25 - 25
watero-rst-web/src/main/java/com/iamberry/rst/controllers/mq/MQTask.java

@@ -432,32 +432,32 @@ public class MQTask implements InitializingBean {
 
 
 	/**客诉系统  自动追踪发货信息**/
-	@Scheduled(cron = "0 0/60 * * * ?")//每60分钟执行一次
+//	@Scheduled(cron = "0 0/60 * * * ?")//每60分钟执行一次
 //	@Scheduled(cron = "0 0/1 * * * ?")//每1分钟执行一次
-	public void syncSendBackCustomer()throws Exception{
-		CmRelation cmRelation = new CmRelation();
-		cmRelation.setRelationBackStatus(2);
-		List<CmRelation> cmRelationList = cmRelationService.getCmRelationList(cmRelation);
-		for(int i=0;i<cmRelationList.size();i++){
-			CmRelation cc = cmRelationList.get(i);
-			if(!StringUtils.isEmpty(cc.getRelationBackLogisticsCompany()) && !StringUtils.isEmpty(cc.getRelationBackLogisticsNo())){
-				JSONObject rst = kuaidi100.getExpressInfo(cc.getRelationBackLogisticsCompany(),cc.getRelationBackLogisticsNo());
-				if(rst.has("state") && rst.getInt("state") == 3){	//当快递状态为已签收的时候
-					Integer flag = 0;
-					try{
-						flag = cmRelationService.updateStatus(cc);
-					}catch (RuntimeException e){
-						logger.info("====== 客诉寄回签收报错 :客诉id:"+cc.getCustomerId()+" ======"+e.getMessage());
-					}
-					if(flag < 1){
-						logger.info("====== 客诉寄回签收失败 :客诉id:"+cc.getCustomerId()+" ======");
-					}else{
-						logger.info("====== 客诉寄回签收成功 :客诉id:"+cc.getCustomerId()+" ======");
-					}
-				}
-			}
-		}
-	}
+//	public void syncSendBackCustomer()throws Exception{
+//		CmRelation cmRelation = new CmRelation();
+//		cmRelation.setRelationBackStatus(2);
+//		List<CmRelation> cmRelationList = cmRelationService.getCmRelationList(cmRelation);
+//		for(int i=0;i<cmRelationList.size();i++){
+//			CmRelation cc = cmRelationList.get(i);
+//			if(!StringUtils.isEmpty(cc.getRelationBackLogisticsCompany()) && !StringUtils.isEmpty(cc.getRelationBackLogisticsNo())){
+//				JSONObject rst = kuaidi100.getExpressInfo(cc.getRelationBackLogisticsCompany(),cc.getRelationBackLogisticsNo());
+//				if(rst.has("state") && rst.getInt("state") == 3){	//当快递状态为已签收的时候
+//					Integer flag = 0;
+//					try{
+//						flag = cmRelationService.updateStatus(cc);
+//					}catch (RuntimeException e){
+//						logger.info("====== 客诉寄回签收报错 :客诉id:"+cc.getCustomerId()+" ======"+e.getMessage());
+//					}
+//					if(flag < 1){
+//						logger.info("====== 客诉寄回签收失败 :客诉id:"+cc.getCustomerId()+" ======");
+//					}else{
+//						logger.info("====== 客诉寄回签收成功 :客诉id:"+cc.getCustomerId()+" ======");
+//					}
+//				}
+//			}
+//		}
+//	}
 
 
 	/**客诉系统  自动追踪发货信息**/