Skip to content
Snippets Groups Projects
Commit 612e660b authored by Jason Van Malder's avatar Jason Van Malder Committed by Nicolas Lempereur
Browse files

[FIX] mail: handle server error in the front-end part


Issue

    - Install Time Off
    - Marc Demo > Create leave request
    - Admin > Validate the leave request
    - Marc Demo > Add an attachment

    Nothing happens

Cause

    There is a access right issue that is not handled in the
    JS.

Solution

    Handle it by doing a do_warn.

OPW-2171791

12.0 backport of #43464

note: backport for 12.0

opw-2500564

closes odoo/odoo#69463

Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
parent f4b44161
No related branches found
No related tags found
No related merge requests found
......@@ -5652,6 +5652,13 @@ msgstr ""
msgid "You are in channel <b>#%s</b>."
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/attachment_box.js:132
#, python-format
msgid "You are not allowed to upload an attachment here."
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/discuss.js:338
......
......@@ -127,8 +127,12 @@ var AttachmentBox = Widget.extend({
/**
* @private
*/
_onUploaded: function() {
this.trigger_up('reload_attachment_box');
_onUploaded: function(ev, response) {
if (response.error) {
this.do_warn(_t("Error"), _t("You are not allowed to upload an attachment here."));
} else {
this.trigger_up('reload_attachment_box');
}
},
});
......
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