Skip to content
Snippets Groups Projects
  1. Sep 01, 2023
    • Thibault Delavallée's avatar
      [FIX] crm: temporarily disable test · fed39b3e
      Thibault Delavallée authored
      It seems the commented test make PLS test crash. Not sure why as tests unit
      tests should not be dependent but PLS is a complicated matter, flushing
      stuff could have an impact on DB state notably.
      
      Until we figure out what happens test that makes the PLS tests crash is
      commented. Crashing assert in PLS is improved to better know which one
      is crashing.
      
      Task-2612945 (Mail: Defensive email formatting)
      
      Part-of: odoo/odoo#74474
      fed39b3e
    • Thibault Delavallée's avatar
      [IMP] various: support multi-emails in mailings · 516ccbc9
      Thibault Delavallée authored
      PURPOSE
      
      Be defensive when dealing with email fields, notably when having multi-emails
      or email field containing an already-formatted email.
      
      SPECIFICATIONS: MAIL COMPOSER IN MAILING
      
      When using the composer with a mailing, it currently skips recipients whose
      email is a multi-email due to the strict usage of 'email_normalize'.
      
      We can improve multi-email support by effectively checking for the first
      email found, using the "less strict" mode of normalize. It means more emails
      are detected as valid, and therefore sent.
      
      Due to lower support of multi-emails when sending emails, this even allows
      to send multiple emails as all emails are mailed.
      
      SPECIFICATIONS: DEFAULT RECIPIENTS
      
      Mailings are generally done using default recipients, aka using a model method
      that returns the people to mail: customers ('partner_id'), customer emails
      ('email_from'), specific implementation, ...
      
      This is implementation using '_message_get_default_recipients' that returns
      'partner_ids', 'email_to' and 'email_cc' that are then used in the mail
      composer to generate final recipients.
      
      In this commit we better handle the content of email fields to avoid issues
      with multi-emails. For that purpose we correctly split the content of those
      fields. We now have several 'email_to' for records having multi-emails instead
      of a single badly-formatted 'email_to'.
      
      Task-2612945 (Mail: Defensive email formatting)
      
      Part-of: odoo/odoo#74474
      516ccbc9
    • Thibault Delavallée's avatar
      [IMP] various: support multi-emails in '_message_post_after_hook' · 62f28f1b
      Thibault Delavallée authored
      PURPOSE
      
      Be defensive when dealing with email fields, notably when having multi-emails
      or email field containing an already-formatted email.
      
      SPECIFICATIONS
      
      Post-message hook is used in various apps to link records to a newly created
      created partner. This is the case notably when used with a template as it
      creates partner on the fly based on emails to always handle partners.
      
      We now check either the complete 'email', either the normalized version of
      it to avoid comparison issues with multi emails and formatted emails. As
      'email_normalized' now supports multi-emails by storing the first found one
      it helps finding the partner.
      
      Task-2612945 (Mail: Defensive email formatting)
      
      Part-of: odoo/odoo#74474
      62f28f1b
    • Thibault Delavallée's avatar
      [IMP] various: use 'email_formatted' instead of 'formataddr' · 9ef715fb
      Thibault Delavallée authored
      PURPOSE
      
      Be defensive when dealing with email fields, notably when having multi-emails
      or email field containing an already-formatted email.
      
      SPECIFICATIONS
      
      When possible, use 'email_formatted' field on partner, instead of calling
      'format_addr'. That way management of corner case input (multi emails and
      double encapsulation) is managed by the computed field itself.
      
      When 'format_addr' has to be used, ensure email part is normalized to avoid
      formatting issues.
      
      Also use tools to extract emails instead of 'email_re' regex when possible.
      That way all code extracting and managing emails go through the same stack.
      
      Task-2612945 (Mail: Defensive email formatting)
      
      Part-of: odoo/odoo#74474
      9ef715fb
    • Thibault Delavallée's avatar
      [IMP] base: avoid double formatting in partner 'email_formatted' field · 853bb98b
      Thibault Delavallée authored
      PURPOSE
      
      Be defensive when dealing with email fields, notably when having multi-emails
      or email field containing an already-formatted email.
      
      SPECIFICATIONS
      
      Main fix in this commit: fix multiple nested formatting in 'email_formatted'
      computation for <res.partner>. Other use cases are mainly left untouched as
      we let users deal with their input. In summary :
      
        * double format: if email already holds a formatted email, we should not use
          it to compute email_formatted, like
      
            name: Name / email: 'Format' <email@domain.com>
            -> before '"Name" <"Name" <email@domain.com>>"
            -> after '"Name" <email@domain.com>''
      
        * multi emails: sometimes this field is used to hold several addresses
          like email1@domain.com, email2@domain.com. We currently let this value
          globally untouched by extracting emails and joining them, as we do not
          expect email_formatted to be a list of emails. Extractin emails allows
          to filter out extra text stored in email field, like
      
            name: Name / email: text, email1@domain.com, email2@domain.com
            -> before: "Name" <text, email1@domain.com, email2@domain.com>
            -> after: "Name" <email1@domain.com,email2@domain.com>
      
        * invalid email: if something is wrong, better keep it in email_formatted
          than harcoding "False". Indeed this eases management and understanding
          of failures at mail.mail, mail.notification and mailing.trace level. This
          behavior does not change as it was already implemented like that even if
          not sure it was intended;
      
      Task-2612945 (Mail: Defensive email formatting)
      
      Part-of: odoo/odoo#74474
      853bb98b
    • Thibault Delavallée's avatar
      [IMP] crm: add test for '_message_get_suggested_recipients' · 340c3627
      Thibault Delavallée authored
      This method is still not really tested, except its override of 'mail.thread.cc'.
      So better have a test, especially in CRM that has some specific overrides.
      Formatted email and multi-email input are tested, to check their current
      support. Next commits will try to improve that, notably avoid formatting
      issues.
      
      Task-2612945 (Mail: Defensive email formatting)
      
      Part-of: odoo/odoo#74474
      340c3627
  2. Aug 30, 2023
    • Louis Wicket (wil)'s avatar
      [I18N] bg.po: properly translate New · 73512e95
      Louis Wicket (wil) authored
      
      For some reason, “New” has been translated as “Nieuw” in Bulgarian, but
      this is not Bulgarian, this is Dutch.
      
      This commit replaces all occurrences of “Nieuw” with “Нов”, which is the
      correct translation for “New” in Bulgarian.
      
      closes odoo/odoo#133582
      
      Related: odoo/enterprise#46542
      Signed-off-by: default avatarLouis Wicket (wil) <wil@odoo.com>
      73512e95
  3. Aug 27, 2023
  4. Aug 13, 2023
  5. Aug 06, 2023
  6. Jul 30, 2023
  7. Jul 24, 2023
  8. Jul 23, 2023
  9. Jul 16, 2023
  10. Jul 09, 2023
  11. Jul 02, 2023
  12. Jun 25, 2023
  13. Jun 18, 2023
  14. Jun 11, 2023
  15. Jun 04, 2023
  16. May 31, 2023
  17. May 28, 2023
  18. May 21, 2023
  19. May 07, 2023
  20. May 03, 2023
    • Naman Shah's avatar
      [FIX] crm: remove the field date_closed from demo data · e368725b
      Naman Shah authored
      
      Purpose:
      The purpose of this commit is to change the current behavior of days to close
      graph generating from customizable desk demo data.
      
      Specification:
      For the opportunities, the day_close field is a compute field depending upon the
      date_closed field. For the customizable desk demo data, the date_closed field
      pre-existed, due to that customizable desk opportunity was not won or lost but
      the graph report was generated.
      so, this commit fixes the current behavior for customizable desk opportunity.
      
      Task-3278039
      
      closes odoo/odoo#119292
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      e368725b
  21. Apr 30, 2023
  22. Apr 25, 2023
    • thsh-odoo's avatar
      [FIX] crm: improve layout of conversion modal · 6a003a12
      thsh-odoo authored
      
      When converting a lead to an opportunity and merging with existing
      opportunities, the list view showing opportunities is very tiny.
      
      This is caused by the field not having the correct colspan, as its label is
      hidden with the "nolabel" attribute.
      
      This commit fixes it by assigning a colpan of 2.
      
      Task-3179173
      
      closes odoo/odoo#119215
      
      Signed-off-by: default avatarWarnon Aurélien (awa) <awa@odoo.com>
      6a003a12
  23. Apr 24, 2023
  24. Apr 23, 2023
  25. Apr 16, 2023
  26. Apr 09, 2023
  27. Mar 26, 2023
  28. Mar 19, 2023
  29. Mar 12, 2023
  30. Mar 05, 2023
  31. Feb 26, 2023
  32. Feb 13, 2023
  33. Feb 05, 2023
  34. Jan 29, 2023
  35. Jan 22, 2023
Loading