提交 4abe51a6 编写于 作者: misaka's avatar misaka

主联系人

上级 59647446
package cn.ibizlab.businesscentral.core.extensions.service;
import cn.ibizlab.businesscentral.core.base.domain.Account;
import cn.ibizlab.businesscentral.core.base.service.impl.ContactServiceImpl;
import lombok.extern.slf4j.Slf4j;
import cn.ibizlab.businesscentral.core.base.domain.Contact;
......@@ -29,6 +30,11 @@ public class ContactExService extends ContactServiceImpl {
@Override
@Transactional
public Contact setPrimary(Contact et) {
Account account = new Account() ;
account.setAccountid(et.getCustomerid());
account.setPrimarycontactid(et.getContactid());
account.setPrimarycontactname(et.getFullname());
accountService.update(account);
return super.setPrimary(et);
}
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册