- Imported last updates from v8.
- Adapted to v9.
- Added a saner default to `mass_mailing.salt` configuration parameter by
reusing `database.secret` if available, hoping that some day
https://github.com/odoo/odoo/pull/12040 gets merged.
- Updated README.
- Increase security, drop backwards compatibility.
Security got improved upstream, which would again break compatibility among current addon and future master upstream.
I choose to break it now and keep it secured future-wise, so I drop the backwards compatibility features.
- Includes tour tests.
- Removes outdated tests.
- Extends the mailing list management form when unsubscriber is a contact.
- Adds a reason form even if he is not.
- Avoids all methods that were not model-agnostic.
[FIX][mass_mailing_custom_unsubscribe] Reasons noupdate
After this fix, when you update the addon, you will not lose your customized reasons.
[FIX] Compatibilize with mass_mailing_partner
Current test code was based on the assumption that the `@api.model` decorator on `create()` ensured an empty recordset when running the method, but that's not true. This was causing an incompatibility betwee these tests and the `mass_mailing_partner` addon, which works assuming 0-1 recordsets.
Now records are created from an empty recordset, and thus tests work everywhere.
Update instructions
If the user does not add the unsubscribe snippet, nothing will happen, so it's added to README to avoid confusion when testing/using the addon.
[FIX] Use the right operator to preserve recordsets order
Using `|=` sorts records at will each time (treating them as Python's `set`).
Using `+=` always appends a record to the end of the set.
Since we are using the record position in the set, this caused the test to work sometimes and fail other times. Now it works always.
* [ADD] Module that insert activities board.
* [FIX] Author error in __manifest__ file and style changes.
* [FIX] Fix replace in view, rename files and style changes.
* [FIX] Enumerated list ends without a blank line; unexpected unindent.
* [FIX] Name fail.
* [FIX] Bug in view.
* [FIX] Add button Activities in mail.thread and readme folder. Others improvements in style of code.
* [FIX] Type 'tree' not found in registry: problem solved.
* [FIX] Dependence change: 'mail' for 'calendar'.
* [FIX] Eliminated unnecessary imports.
* [FIX] Bugs about js and if/else.
* [FIX] Improvements following guide lines and eliminating unnecessary attributes in views.
* [ADD] Added counter in the 'Activities List' button.
* [FIX] Bugs in javascript with 'Activities' button.
* [ADD] Tests folder.
* [FIX] Deleted references to modules not installed.
* [FIX] Formatting javascript.
* [FIX] Bug: added a soft line before a class.
* [FIX] Bug: https://github.com/OCA/social/pull/283#discussion_r204302325
* [FIX] Escaping 'lt' in xml file. Bug: https://github.com/OCA/social/pull/283#discussion_r204302325
* [FIX] The meeting attendees are shown in kanban mode on the meeting board.
* [FIX] Hide in form view of the activity board the assistant field if the activity is not a meeting type or if there are no assistants.
* [FIX] Change to default kanban view for partners.