Skip to content
Snippets Groups Projects
Commit 3d5a066a authored by Sébastien Theys's avatar Sébastien Theys
Browse files

[FIX] mail: set automatic email signature from correct company


When sending an email from a multi-company environment, the automatic
email signature is not corresponding to the company from which the email
is sent.

This is because the user context is not properly forwarded, in
particular the `allowed_company_ids` key.

The issue comes from the new rpc service not autmatically adding the
user context to the request, whereas the legacy rpc service did.

opw-3394780

closes odoo/odoo#132684

Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
parent 56cde894
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,8 @@ import { clear, insertAndReplace, link, replace, unlink, unlinkAll } from '@mail
import { OnChange } from '@mail/model/model_onchange';
import { addLink, escapeAndCompactTextContent, parseAndTransform } from '@mail/js/utils';
import session from "web.session";
function factory(dependencies) {
class ComposerView extends dependencies['mail.model'] {
......@@ -298,6 +300,7 @@ function factory(dependencies) {
if (this.threadView && this.threadView.replyingToMessageView && this.threadView.thread !== this.messaging.inbox) {
postData.parent_id = this.threadView.replyingToMessageView.message.id;
}
params.context = Object.assign(params.context || {}, session.user_context);
const chatter = this.chatter;
const { threadView = {} } = this;
const { thread: chatterThread } = this.chatter || {};
......
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