Skip to content
Snippets Groups Projects
Commit 1688265f authored by nounoubensebia's avatar nounoubensebia
Browse files

[FIX] mail: display default name for followers for "other address" partner


Display the default name (the one displayed in the kanban view) for followers replacing
the False value for "other address" partners, this way the user won't get
confused, furthermore, this fix won't require the name to be mandatory for this
type of contacts.

Task-2514244

closes odoo/odoo#70391

X-original-commit: 4c127173
Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
parent ac3e0fcd
No related branches found
No related tags found
No related merge requests found
......@@ -143,6 +143,7 @@ class MailController(http.Controller):
'partner_id': follower.partner_id.id,
'channel_id': follower.channel_id.id,
'name': follower.name,
'display_name': follower.display_name,
'email': follower.email,
'is_active': follower.is_active,
# When editing the followers, the "pencil" icon that leads to the edition of subtypes
......
......@@ -6,7 +6,7 @@
<t t-if="follower">
<a class="o_Follower_details" t-att-class="{ 'o-inactive': !follower.isActive }" href="#" t-on-click="_onClickDetails">
<img class="o_Follower_avatar" t-attf-src="/web/image/{{ follower.resModel }}/{{ follower.resId }}/image_128" alt="Avatar"/>
<span class="o_Follower_name" t-esc="follower.name"/>
<span class="o_Follower_name" t-esc="follower.name or follower.displayName"/>
</a>
<t t-if="follower.isEditable">
<button class="btn btn-icon o_Follower_button o_Follower_editButton" title="Edit subscription" t-on-click="_onClickEdit">
......
......@@ -45,6 +45,7 @@ function factory(dependencies) {
data2.partner = [['unlink-all']];
} else {
const partnerData = {
display_name: data.display_name,
email: data.email,
id: data.partner_id,
name: data.name,
......@@ -240,6 +241,9 @@ function factory(dependencies) {
channelName: attr({
related: 'channel.name',
}),
displayName: attr({
related: 'partner.display_name'
}),
followedThread: many2one('mail.thread', {
inverse: 'followers',
}),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment