Joburgess 5 年之前
父節點
當前提交
b83d7bdb4f
共有 1 個文件被更改,包括 10 次插入10 次删除
  1. 10 10
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/VipGroupServiceImpl.java

+ 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)