Joburgess 5 anos atrás
pai
commit
b83d7bdb4f

+ 10 - 10
mec-biz/src/main/java/com/ym/mec/biz/service/impl/VipGroupServiceImpl.java

@@ -950,11 +950,11 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
 		studentPaymentOrder.setMusicGroupId(vipGroup.getId().toString());
 		studentPaymentOrder.setClassGroupId(classGroup.getId());
 
-		try {
-			contractService.register(user.getId(),user.getRealName(),user.getIdCardNo(),user.getPhone());
-		} catch (Exception e) {
-			e.printStackTrace();
-		}
+//		try {
+//			contractService.register(user.getId(),user.getRealName(),user.getIdCardNo(),user.getPhone());
+//		} catch (Exception e) {
+//			e.printStackTrace();
+//		}
 
 		//生成回调地址
 		Map<String,Object> payMap = payService.getPayMap(
@@ -1035,11 +1035,11 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
 		vipGroup.setOrganIdList(organIdsString);
 		vipGroupDao.update(vipGroup);
 
-		try {
-			contractService.transferVipGroupCoursesContract(userId,vipGroupId);
-		} catch (Exception e) {
-			e.printStackTrace();
-		}
+//		try {
+//			contractService.transferVipGroupCoursesContract(userId,vipGroupId);
+//		} catch (Exception e) {
+//			e.printStackTrace();
+//		}
 	}
 
 	@Transactional(rollbackFor = Exception.class)