mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 17:21:53 +08:00
fix:跟进记录分页不显示商机
This commit is contained in:
parent
8ff710e49d
commit
814acb83ae
@ -94,7 +94,7 @@ public class CrmFollowUpRecordController {
|
|||||||
record.setBusinesses(new ArrayList<>()).setContacts(new ArrayList<>());
|
record.setBusinesses(new ArrayList<>()).setContacts(new ArrayList<>());
|
||||||
record.getContactIds().forEach(id -> MapUtils.findAndThen(contactMap, id, contact ->
|
record.getContactIds().forEach(id -> MapUtils.findAndThen(contactMap, id, contact ->
|
||||||
record.getContacts().add(new CrmBusinessRespVO().setId(contact.getId()).setName(contact.getName()))));
|
record.getContacts().add(new CrmBusinessRespVO().setId(contact.getId()).setName(contact.getName()))));
|
||||||
record.getContactIds().forEach(id -> MapUtils.findAndThen(businessMap, id, business ->
|
record.getBusinessIds().forEach(id -> MapUtils.findAndThen(businessMap, id, business ->
|
||||||
record.getBusinesses().add(new CrmBusinessRespVO().setId(business.getId()).setName(business.getName()))));
|
record.getBusinesses().add(new CrmBusinessRespVO().setId(business.getId()).setName(business.getName()))));
|
||||||
// 2.2 设置用户信息
|
// 2.2 设置用户信息
|
||||||
MapUtils.findAndThen(userMap, Long.valueOf(record.getCreator()), user -> record.setCreatorName(user.getNickname()));
|
MapUtils.findAndThen(userMap, Long.valueOf(record.getCreator()), user -> record.setCreatorName(user.getNickname()));
|
||||||
|
Loading…
Reference in New Issue
Block a user