Commit Graph

22 Commits (16.0)

Author SHA1 Message Date
OCA-git-bot 3f410fb18a [BOT] post-merge updates 2024-06-04 10:15:35 +00:00
Jairo Llopis 41aeacea65
[FIX] mail_post_defer: recover "view $model" button
Fixes a regression in https://github.com/OCA/social/pull/1380 that made posted messages lose the "View $model" button, even if the recipient had access.

@moduon MT-6348
2024-06-04 10:17:02 +01:00
OCA-git-bot a5a5b43c73 [BOT] post-merge updates 2024-06-03 13:51:32 +00:00
Jairo Llopis 3811272482
[FIX] mail_post_defer: notify from non-thread models and to author
In some places of Odoo, there are direct calls to `self.env["mail.thread"].message_notify()` where the target model isn't extending `mail.thread`. These cases were failing, due to the grouping done by `mail.message.schedule`.

In some of those cases, mails were sent with the special `mail_notify_author=True` context, which got lost after the deferring step. In those cases, if the author's message was expected to arrive at the author's inbox, it wouldn't happen anymore.

@moduon MT-6337
2024-06-03 14:40:32 +01:00
mymage 7be54fc02f Translated using Weblate (Italian)
Currently translated at 100.0% (4 of 4 strings)

Translation: social-16.0/social-16.0-mail_post_defer
Translate-URL: https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_post_defer/it/
2024-05-27 12:55:27 +00:00
Weblate 98cdccb195 Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: social-16.0/social-16.0-mail_post_defer
Translate-URL: https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_post_defer/
2024-05-25 09:11:39 +00:00
OCA-git-bot 01fcdc3b01 [BOT] post-merge updates 2024-05-25 08:57:15 +00:00
oca-ci d1c165d091 [UPD] Update mail_post_defer.pot 2024-05-25 08:53:23 +00:00
Jairo Llopis 8bb6a62b26
[IMP] mail_post_defer: defer more mails
In the previous version of this module, only emails sent through the chatter were explicitly deferred. However, there are more mails that are auto-generated by Odoo and could benefit a lot from the deferring system. One of such cases is the automatic assignation mail.

To cover that and more cases, now the auto-deferring is done at a lower level. If we get some hint that the mail sending is forced, or that it's already deferred, we skip the machinery. If we get nothing about all that, then we just add our defaults to avoid force-sending and defer by default.

The result is that more Odoo internal systems will use the mail queue, and thus there'll be less blocking.

As an exception, when running `_send_notifications()`, we force-disable the deferring system. That is executed by a cron, or by the user when force-sending a notification. So, only in that case the queue should be skipped by default.

@moduon MT-6204
2024-05-24 12:33:02 +01:00
Ivorra78 fa926ae11d Translated using Weblate (Spanish)
Currently translated at 100.0% (3 of 3 strings)

Translation: social-16.0/social-16.0-mail_post_defer
Translate-URL: https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_post_defer/es/
2024-01-09 20:34:58 +00:00
Ivorra78 6079f2edd0 Added translation using Weblate (Spanish) 2024-01-09 17:55:30 +00:00
mymage 55e3c2da2b Translated using Weblate (Italian)
Currently translated at 100.0% (3 of 3 strings)

Translation: social-16.0/social-16.0-mail_post_defer
Translate-URL: https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_post_defer/it/
2023-12-01 10:12:28 +00:00
mymage d872319a30 Added translation using Weblate (Italian) 2023-12-01 09:11:53 +00:00
OCA-git-bot 5dd6eb25de [UPD] README.rst 2023-09-04 08:20:49 +00:00
OCA-git-bot dbbb8e2798 mail_post_defer 16.0.1.0.1 2023-09-04 08:20:44 +00:00
OCA-git-bot bff0561602 [UPD] README.rst 2023-09-04 08:20:43 +00:00
oca-ci 5f5ebd4b98 [UPD] Update mail_post_defer.pot 2023-09-04 08:17:28 +00:00
Jairo Llopis 3d0ce338d0
[MIG+IMP] mail_post_defer: migrate to 16.0, allow editing messages
Rely on the new `mail.message.schedule` model and follow the rest of the refactor from https://github.com/odoo/odoo/pull/95623. FWIW this cron isn't strictly needed to run every minute, as it runs at the specific time automatically.

Follow refactors from https://github.com/odoo/odoo/pull/95500 and https://github.com/odoo/odoo/pull/79259 for the client.

Improve the module by allowing to edit messages, instead of just deleting them. This was simpler than splitting the edit and delete checks in the client-side.

@moduon MT-3088
2023-09-01 11:42:50 +01:00
Jairo Llopis 09f45faafd
[MIG] mail_post_defer: migrate to 16.0
Rely on the new `mail.message.schedule` model and follow the rest of the refactor from https://github.com/odoo/odoo/pull/95623.

@moduon MT-3088
2023-08-31 11:54:41 +01:00
OCA-git-bot 0461d35972
[UPD] README.rst 2023-08-24 12:25:52 +01:00
oca-ci aa156ece1b
[UPD] Update mail_post_defer.pot 2023-08-24 12:25:51 +01:00
Jairo Llopis 11d1699f9c
[ADD] mail_post_defer: deferred message posting with queue
- Faster because the email sending doesn't block the UI.
- Safer because users can undo mails while they're still not sent.

@moduon MT-1579 MT-2480
2023-08-24 12:25:51 +01:00