Commit Graph

1021 Commits (8b2c7e9dc82978f5246585d586b8a08b98f152ab)

Author SHA1 Message Date
OCA-git-bot 8b2c7e9dc8 [UPD] addons table in README.md 2023-01-13 15:40:19 +00:00
OCA-git-bot fea7c8029e mail_tracking 13.0.1.0.11 2023-01-13 15:40:14 +00:00
OCA-git-bot 26bea6d416 mail_tracking_mass_mailing 13.0.1.0.2 2023-01-13 15:40:13 +00:00
OCA-git-bot 8103c972b4 mail_tracking_mailgun 13.0.2.0.3 2023-01-13 15:40:11 +00:00
oca-ci c56de824a0 [UPD] Update mail_tracking_mailgun.pot 2023-01-13 15:34:29 +00:00
oca-ci 2ec518394b [UPD] Update mail_tracking.pot 2023-01-13 15:34:28 +00:00
OCA-git-bot 27d77a6c6a Merge PR #1038 into 13.0
Signed-off-by pedrobaeza
2023-01-13 15:29:18 +00:00
David 4317103ca1 [IMP] mail_tracking_mailgun: mass mailing manual tracking
Mass mailing are tracked from mail.trace as the don't store a message in
the db. In order to gather the message_id and be able to do manual
checks to mailgun, that's the table where we should get the message id.

TT40816
2023-01-13 13:16:04 +01:00
Francesco Foresti 124e0d7154 Translated using Weblate (Italian)
Currently translated at 75.0% (24 of 32 strings)

Translation: social-13.0/social-13.0-mail_activity_team
Translate-URL: https://translation.odoo-community.org/projects/social-13-0/social-13-0-mail_activity_team/it/
2023-01-03 12:49:58 +00:00
Francesco Foresti e4ecdbf43c Translated using Weblate (Italian)
Currently translated at 30.7% (35 of 114 strings)

Translation: social-13.0/social-13.0-mail_tracking
Translate-URL: https://translation.odoo-community.org/projects/social-13-0/social-13-0-mail_tracking/it/
2023-01-03 12:49:57 +00:00
OCA-git-bot b7dad80497 [ADD] setup.py 2022-12-30 15:42:03 +00:00
OCA-git-bot 4fe1c074bb [ADD] icon.png 2022-12-30 15:42:03 +00:00
OCA-git-bot 04c341394b [UPD] README.rst 2022-12-30 15:42:03 +00:00
OCA-git-bot 6b8174456a [UPD] addons table in README.md 2022-12-30 15:41:58 +00:00
oca-ci d395155d8d [UPD] Update mail_partner_forwarding.pot 2022-12-30 15:15:56 +00:00
OCA-git-bot 384c05de21 Merge PR #859 into 13.0
Signed-off-by dreispt
2022-12-30 15:06:32 +00:00
mymage ae86e3a571 Translated using Weblate (Italian)
Currently translated at 30.5% (26 of 85 strings)

Translation: social-13.0/social-13.0-mass_mailing_custom_unsubscribe
Translate-URL: https://translation.odoo-community.org/projects/social-13-0/social-13-0-mass_mailing_custom_unsubscribe/it/
2022-12-28 22:45:06 +00:00
OCA-git-bot 1a59018639 [ADD] setup.py 2022-12-22 11:23:58 +00:00
OCA-git-bot e6759787dc [ADD] icon.png 2022-12-22 11:23:58 +00:00
OCA-git-bot 0fc422c20f [UPD] README.rst 2022-12-22 11:23:57 +00:00
OCA-git-bot ef14d3c59c [UPD] addons table in README.md 2022-12-22 11:23:53 +00:00
oca-ci f8b88d679c [UPD] Update mass_mailing_partner_contact_active.pot 2022-12-22 11:17:53 +00:00
oca-ci 0ad0dd0872 [UPD] Update mass_mailing_contact_active.pot 2022-12-22 11:17:51 +00:00
OCA-git-bot 4d91d2aae9 Merge PR #871 into 13.0
Signed-off-by pedrobaeza
2022-12-22 11:15:15 +00:00
Akim Juillerat dd7cfe68fb Segregate modules testing
The definition of active field on mailing.contact.subscription in
module mass_mailing_contact_active is breaking the JS tests of
mass_mailing_custom_unsubscribe.

Segregate their testing should allow for each set of modules to be
tested without failure.
2022-12-21 17:27:02 +01:00
OCA-git-bot d42a4ff4b0 [UPD] addons table in README.md 2022-12-15 22:49:44 +00:00
OCA-git-bot 1ab6a961d4 mail_tracking_mailgun 13.0.2.0.2 2022-12-15 22:49:38 +00:00
OCA-git-bot 4465a429ae Merge PR #1028 into 13.0
Signed-off-by pedrobaeza
2022-12-15 22:43:33 +00:00
David 92c8be76e1 [FIX] mail_tracking_mailgun: controller env company
Under certain circumstances setting the bounce to hard faild partner
leads to a triggering of the property_pricelist recomputation. We need to set
company, user and uid for the query build to work correctly:
https://github.com/odoo/odoo/blob/13.0/odoo/addons/base/models/ir_property.py#L240

The result is an inderect error that impedes the correct bounce flagging and
the event record creation:

> ERROR prod odoo.sql_db: bad query:
>
> SELECT substr(p.res_id, 13)::integer, r.id
> FROM ir_property p
> LEFT JOIN product_pricelist r ON substr(p.value_reference, 19)::integer=r.id
> WHERE p.fields_id=2440
>     AND (p.company_id=false OR p.company_id IS NULL)
>     AND (p.res_id IN ('res.partner,45621') OR p.res_id IS NULL)
> ORDER BY p.company_id NULLS FIRST
>
> ERROR: operator does not exist: integer = boolean
> LINE 6:                     AND (p.company_id=false OR p.company_id ...

As far as we could research, this doesn't happen in >v14. So this nasty glitch
only needs a fix for this version.

TT40816
2022-12-15 17:24:32 +01:00
OCA-git-bot 9a18d0481c [UPD] addons table in README.md 2022-11-18 16:09:51 +00:00
OCA-git-bot 1689e07804 mail_activity_team 13.0.1.3.1 2022-11-18 16:09:46 +00:00
OCA-git-bot 4946efe8d8 Merge PR #896 into 13.0
Signed-off-by pedrobaeza
2022-11-18 16:04:45 +00:00
Pedro M. Baeza 68cd9b5cac
Merge pull request #1002 from Tecnativa/13.0-copier
[13.0][FIX] Update copier template
2022-11-18 17:04:28 +01:00
Pedro M. Baeza 9cf799de31 [FIX] Update copier template
To fix the Flake8 Gitlab problem.
2022-11-18 16:55:33 +01:00
Akim Juillerat c685a1bb55 Create module mass_mailing_partner_contact_active 2022-10-11 16:02:21 +02:00
Akim Juillerat 75da1fed11 Create module mass_mailing_contact_active 2022-10-11 16:02:21 +02:00
OCA-git-bot c05f81f2c7 [ADD] setup.py 2022-08-30 11:13:00 +00:00
OCA-git-bot c85f2eca67 [UPD] README.rst 2022-08-30 11:13:00 +00:00
OCA-git-bot 5711b27fc3 [UPD] addons table in README.md 2022-08-30 11:12:55 +00:00
oca-ci 627b2aa078 [UPD] Update mail_chatter_thread_colour.pot 2022-08-30 11:05:42 +00:00
OCA-git-bot 1934373320 Merge PR #943 into 13.0
Signed-off-by etobella
2022-08-30 11:00:57 +00:00
Enric Tobella 0d707d16a2 [ADD] mail_chatter_thread_colour 2022-08-26 22:11:17 +02:00
OCA Transbot a06372af25 Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: social-13.0/social-13.0-mail_activity_team
Translate-URL: https://translation.odoo-community.org/projects/social-13-0/social-13-0-mail_activity_team/
2022-07-28 09:16:39 +00:00
OCA-git-bot 9dd720db31 [UPD] addons table in README.md 2022-07-28 09:16:28 +00:00
OCA-git-bot c87e3d5c2f mail_activity_team 13.0.1.3.0 2022-07-28 09:16:23 +00:00
oca-ci 756d500875 [UPD] Update mail_activity_team.pot 2022-07-28 09:09:44 +00:00
OCA-git-bot a5587fac64 Merge PR #900 into 13.0
Signed-off-by pedrobaeza
2022-07-28 09:04:49 +00:00
jabelchi 12040ac3ad Translated using Weblate (Catalan)
Currently translated at 100.0% (5 of 5 strings)

Translation: social-13.0/social-13.0-mail_quoted_reply
Translate-URL: https://translation.odoo-community.org/projects/social-13-0/social-13-0-mail_quoted_reply/ca/
2022-07-04 17:05:44 +00:00
jabelchi 7f1f3d35bc Translated using Weblate (Spanish)
Currently translated at 100.0% (5 of 5 strings)

Translation: social-13.0/social-13.0-mail_quoted_reply
Translate-URL: https://translation.odoo-community.org/projects/social-13-0/social-13-0-mail_quoted_reply/es/
2022-07-04 17:05:44 +00:00
jabelchi b9f3c7d8b0 Added translation using Weblate (Catalan) 2022-07-04 14:43:38 +00:00