Commit Graph

13 Commits (17.0)

Author SHA1 Message Date
David 4d76b1225d [MIG] mass_mailing_custom_unsubscribe: Migration to 17.0
- Refactor to adapt to the new core ubsubscription methods

TT49917
2025-03-25 16:29:32 +01:00
David b4b2f6e5a0 [IMP] mass_mailing_custom_unsubscribe: pre-commit auto fixes 2024-12-16 09:08:33 +01:00
pilarvargas-tecnativa 6c75b5ef99 [MIG] mass_mailing_custom_unsubscribe: Continue migration to version 16.0
TT44333
2024-12-16 09:08:33 +01:00
Carlos Roca d0943af15a [MIG] mass_mailing_custom_unsubscribe: Migration to v13.0 2024-12-16 09:08:33 +01:00
Carlos Roca e8b2f3aaa3 [IMP] mass_mailing_custom_unsubscribe: black, isort, prettier 2024-12-16 09:08:33 +01:00
Pedro M. Baeza 2f81fba4c1 [FIX] mass_mailing_custom_unsubscribe: mailing contact contains `opt_out`
So we need to explicitly opt-out (XD) that model from the new alternative mechanism
for unsubscribing records.
2024-12-16 09:08:33 +01:00
Pedro M. Baeza 5db67dd166 [ADD] mass_mailing_custom_unsubscribe_event: Allow to unsubscribe discretely from an event
This addon extends the unsubscription process for allowing to unsubscribe
only for an event.

Standard process includes the mail in the general blacklist instead, which
can be very unconvenient.

This includes also the needed changes in the base module `mass_mailing_custom_unsubscribe`.
2024-12-16 09:08:33 +01:00
ernesto d75e43f467 [MIG] mass_mailing_custom_unsubscribe: Migration to 12.0 2024-12-16 09:08:33 +01:00
David 0b8e8d1fbd [MIG] mass_mailing_custom_unsubscribe: Migration to 11.0 2024-12-16 09:08:33 +01:00
Jairo Llopis ed90b6291f [IMP] mass_mailing_custom_unsubscribe: GDPR compliance (#267)
* [IMP] mass_mailing_custom_unsubscribe: GDPR compliance

- Record resubscriptions too.
- Record action metadata.
- Make ESLint happy.
- Quick color-based action distinction in tree view.
- Add useful quick groupings.
- Display (un)subscription metadata.
- Pivot & graph views.
2024-12-16 09:08:33 +01:00
Jairo Llopis bcd1b35052 [MIG][mass_mailing_custom_unsubscribe] Migrate to v10 2024-12-16 09:08:33 +01:00
Jairo Llopis d2f84b45b3 [9.0][MIG][mass_mailing_custom_unsubscribe] Migrate.
- 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.
2024-12-16 09:08:33 +01:00
Yajo 6c83d4347b [8.0][IMP][mass_mailing_custom_unsubscribe] Get reasons for unsubscription (#58)
* [8.0][IMP][mass_mailing_custom_unsubscribe] Get reasons for unsubscription.
2024-12-16 09:08:33 +01:00