|
@@ -179,7 +179,7 @@ public class TaRecommendCustomerServiceImpl extends ServiceImpl<TaRecommendCusto
|
179
|
179
|
taRecommendCustomer.setSex(params.getInteger("sex"));
|
180
|
180
|
taRecommendCustomer.setDescribe(params.getString("describe"));
|
181
|
181
|
taRecommendCustomer.setRecommendPerson(params.getString("recommendPerson"));
|
182
|
|
- taRecommendCustomer.setBuildingId(params.getString("buildingId"));
|
|
182
|
+ taRecommendCustomer.setBuildingId(params.getString("intention"));
|
183
|
183
|
taRecommendCustomer.setRealtyConsultant(params.getString("realtyConsultant"));
|
184
|
184
|
taRecommendCustomer.setReportRecommendStatus(CommConstant.RECOMMENDED);
|
185
|
185
|
taRecommendCustomer.setVerifyStatus(CommConstant.VERIFY_READY);
|
|
@@ -276,7 +276,8 @@ public class TaRecommendCustomerServiceImpl extends ServiceImpl<TaRecommendCusto
|
276
|
276
|
// taRecommendCustomer.setDescribe(params.getString("describe"));
|
277
|
277
|
taRecommendCustomer.setRealtyConsultant(params.getString("realtyConsultant"));
|
278
|
278
|
taRecommendCustomer.setBuildingId(params.getString("buildingId"));
|
279
|
|
- taRecommendCustomer.setIntention(params.getString("intention"));
|
|
279
|
+ TaBuilding building = taBuildingMapper.selectById(params.getString("buildingId"));
|
|
280
|
+ taRecommendCustomer.setIntention(building.getBuildingName());
|
280
|
281
|
taRecommendCustomer.setReportRecommendStatus(CommConstant.VERIFY_AGREE);
|
281
|
282
|
taRecommendCustomer.setCreateDate(LocalDateTime.now());
|
282
|
283
|
taRecommendCustomer.setReportDate(LocalDateTime.now());
|