|
@@ -282,6 +282,7 @@ public class MiniAppController extends BaseController {
|
282
|
282
|
if (null == person) {
|
283
|
283
|
return ResponseBean.error("发生未知错误", ResponseBean.ERROR_UNAVAILABLE);
|
284
|
284
|
}
|
|
285
|
+ taPersonService.upDatePersonCityToId(person.getPersonId());
|
285
|
286
|
}
|
286
|
287
|
|
287
|
288
|
// 获取其余信息
|
|
@@ -356,6 +357,19 @@ public class MiniAppController extends BaseController {
|
356
|
357
|
// taCustomerPersonService.insertBean(person.getPersonId(),customers.getCustomerId());
|
357
|
358
|
// }
|
358
|
359
|
}
|
|
360
|
+// else{
|
|
361
|
+// TaRecommendCustomer taRecommendCustomer = new TaRecommendCustomer();
|
|
362
|
+// taRecommendCustomer.setPersonId(person.getPersonId());
|
|
363
|
+// taRecommendCustomer.setPicture(person.getAvatarurl());
|
|
364
|
+// taRecommendCustomer.setCountry(person.getCountry());
|
|
365
|
+// taRecommendCustomer.setCity(person.getCity());
|
|
366
|
+// taRecommendCustomer.setProvince(person.getProvince());
|
|
367
|
+// taRecommendCustomer.setVerifyStatus(CommConstant.VERIFY_AGREE);
|
|
368
|
+// taRecommendCustomer.setOrgId(getOrgId(request));
|
|
369
|
+// taRecommendCustomer.setEntryType(CommConstant.ENTRY_VOLUNTEER);
|
|
370
|
+// taRecommendCustomer.setSex(Integer.getInteger(person.getGender()));
|
|
371
|
+//
|
|
372
|
+// }
|
359
|
373
|
return ResponseBean.success(phoneNoInfo);
|
360
|
374
|
}
|
361
|
375
|
|