Skip to content
Snippets Groups Projects
Commit add78c90 authored by Ivan Rasputin's avatar Ivan Rasputin
Browse files

[FIX] mass_mailing_event_sms: add missing dependency

The module `mass_mailing_event_sms` extends couple methods [1] that are defined
in  module `mass_mailing_event` [2]. However, because of the missing dependency
in manifest, user can uninstall `mass_mailing_event`, while keep
`mass_mailing_event_sms` installed. This leads to error `'super' object has no
attribute 'action_invite_contacts'` [3].

Fix it by adding the missing dependency explicitly.

[1]: https://github.com/odoo/odoo/blob/fd508fe436c64780a8454ddeb6b7ec8f1f80d7c5/addons/mass_mailing_event_sms/models/event.py

[2]:
https://github.com/odoo/odoo/blob/fd508fe436c64780a8454ddeb6b7ec8f1f80d7c5/addons/mass_mailing_event/models/event.py#L23

[3]: https://online.sentry.io/issues/4280254156/



closes odoo/odoo#127221

Signed-off-by: default avatarIvan Elizaryev (iel) <iel@odoo.com>
parent 50f5ab70
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ Bridge module adding UX requirements to ease SMS marketing o, event attendees.
'depends': [
'event',
'mass_mailing',
'mass_mailing_event',
'mass_mailing_sms',
'sms',
],
......
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