Skip to content
Snippets Groups Projects
  1. Nov 27, 2022
  2. Nov 20, 2022
  3. Nov 13, 2022
  4. Oct 30, 2022
  5. Oct 23, 2022
  6. Oct 17, 2022
  7. Oct 16, 2022
  8. Oct 09, 2022
    • Laurent Desausoi's avatar
      [IMP] core: use inert SQL based neutralization · e5dbded9
      Laurent Desausoi authored
      
      Before this commit the neutralize system introduced in v16 was using ORM
      methods in order to change appropriate records. Although flexible, this approach
      could lead to call some methods with side effects while neutralizing
      (eg: overloads of write).
      
      This patch converts the neutralize system to a safer "inert" SQL based approach
      by migrating the generic method _neutralize to SQL files exposed in the
      data folder.
      
      Task id: 2961687
      
      closes odoo/odoo#101529
      
      Related: odoo/enterprise#31984
      Signed-off-by: default avatarFabien Meghazi <fme@odoo.com>
      e5dbded9
  9. Oct 02, 2022
  10. Sep 25, 2022
  11. Sep 14, 2022
  12. Sep 09, 2022
  13. Aug 30, 2022
  14. Aug 25, 2022
  15. Aug 22, 2022
  16. Jul 07, 2022
  17. Jun 10, 2022
  18. May 25, 2022
  19. Apr 22, 2022
    • Samuel Degueldre's avatar
      [IMP] web: improve core Dialog API · 7c4f200b
      Samuel Degueldre authored
      *: base_automation, iap, web_tour
      
      Previously, when trying to create a custom dialog, one would need to
      extend the base Dialog class and configure it directly on the class,
      using separate templates for the body and footer as necessary. This is
      very unidiomatic owl code, and it is much more natural to simply extend
      Component, and use Dialog at the root of the template, giving it slots
      and props to configure its properties and contents.
      
      This commit changes the dialog API to work as described and adapts code
      that uses it.
      
      closes odoo/odoo#89113
      
      Enterprise: https://github.com/odoo/enterprise/pull/26462
      
      
      Related: odoo/enterprise#26462
      Signed-off-by: default avatarGéry Debongnie <ged@odoo.com>
      7c4f200b
  20. Feb 21, 2022
  21. Feb 12, 2022
    • Fabien Pinckaers's avatar
      [IMP] speed up load_menus() by using SVG icons instead of png · 10a5796d
      Fabien Pinckaers authored
      
      Reduces load_menus answer size by 32% (between 20kb and 200kb savings
      for the initial loading of the backend, depending on the number of apps
      installed). Support for SVG icons in the web client for menus/apps.
      
      Reduced PNG icons for apps list (8 bits PNG instead of 24 as our icons
      don't need more colors as they are flat designs)
      
      closes odoo/odoo#84280
      
      Related: odoo/enterprise#24200
      Signed-off-by: default avatarFabien Pinckaers <fp@odoo.com>
      10a5796d
  22. Feb 10, 2022
  23. Feb 01, 2022
    • Christophe Monniez's avatar
      [IMP] iap, various: implement _neutralize method · 4fc7b9e3
      Christophe Monniez authored
      An overridable model method was added in a previous commit in order to
      neutralize a database.
      
      This commit adds the implementation of this method on the `iap.account` model.
      A _get_iap_config_paremeters method is also added on this model.
      Each iap service must override this method to extend the list of
      `ir.config_parameter` that need to be neutralized.
      
      Part-of: odoo/odoo#67825
      4fc7b9e3
  24. Oct 07, 2021
  25. Sep 28, 2021
    • Nikunj Ladava's avatar
      [IMP] {crm}_iap_enrich: enrich leads on creation for auto mode · 52773167
      Nikunj Ladava authored
      Right now, when we choose to automatically enrich the leads from CRM
      settings, it activates a cron to periodically enrich the leads using
      IAP service.
      
      This commit improves the behavior by enriching the leads after the
      records creation using cron trigger. That way it is done nearly after
      creation and user gets enrich information sooner.
      
      To make it clear to users, the description for 'auto' mode is improved to
      'Enrich all leads on creation'.
      
      Also, now we select 'auto' mode by default instead of 'manual', and
      display 'Enrich' button on form view irrespective of the selected mode
      (if lead meets certain conditions) unlike before. Rest of the behavior
      is still same as before. For example, we still have server action which
      can enrich the selected leads in batch, which is useful if there are
      existing leads before we enable 'Lead Enrichment' feature.
      
      Task-2269743
      
      Part-of: odoo/odoo#60605
      52773167
  26. Aug 25, 2021
    • Thibault Delavallée's avatar
      [IMP] iap, crm_iap_mine: add tests for mine · 5f07a52a
      Thibault Delavallée authored
      Purpose of this commit is to add some tests related to mine request. We add
      tests checking IAP response management and lead creation. We introduce a
      mock for IAP mine calls, as well as some tool data generation methods in
      base IAP mock class available in iap_crm.
      
      We also add some tests for corner cases (credit issue, no result, exception
      during call) in order to improve coverage.
      
      LINKS
      
      Task-2630969
      Prepares Task-2600047 (code improvements and cleaning)
      COM PR odoo/odoo#75514
      ENT PR odoo/enterprise#20424
      UPG PR odoo/upgrade#2770
      5f07a52a
  27. Aug 11, 2021
  28. Aug 02, 2021
    • Aaron Bohy's avatar
      [REF] web,*: regroup custom hooks in core/utils/hooks · ff6e8905
      Aaron Bohy authored
      
      *base_automation,iap,im_livechat,point_of_sale
      
      This commit introduces a new file in core/utils: hooks.js
      This file contains custom hooks (useEffect, useService, useBus...).
      
      The useHotkey hook is tightly related to hotkeys, so it has been
      moved to core/hotkeys.
      
      closes odoo/odoo#74535
      
      Related: odoo/enterprise#20003
      Signed-off-by: default avatarLucas Perais (lpe) <lpe@odoo.com>
      ff6e8905
  29. Jul 26, 2021
    • Xavier-Do's avatar
      [FIX] *: add explicit license to all manifest · 288595f5
      Xavier-Do authored
      
      The license is missing in most enterprise manifest so
      the decision was taken to make it explicit in all cases.
      When not defined, a warning will be triggered starting from
      14.0 when falling back on the default LGPL-3.
      
      closes odoo/odoo#74245
      
      Related: odoo/design-themes#48
      Related: odoo/enterprise#19862
      Signed-off-by: default avatarXavier Dollé (xdo) <xdo@odoo.com>
      288595f5
  30. Jul 12, 2021
  31. Jun 18, 2021
    • Michael Mattiello (mcm)'s avatar
      [REF] web, *: change dialog service api · 580533ec
      Michael Mattiello (mcm) authored
      
      * iap, web_tour
      
      This commit changes the API of the dialog service.
      
      Before, the API gave 2 functions: "open" and "close".
      Now, there is only one function "add" which is the same as "open"
      but returning a callback that does the close.
      
      closes odoo-dev/odoo#940
      
      Related: odoo-dev/enterprise#171
      Signed-off-by: default avatarGéry Debongnie (ged) <ged@openerp.com>
      580533ec
    • Samuel Degueldre's avatar
    • Samuel Degueldre's avatar
      [REF] iap: adapt include on CrashManager · 4e7187bb
      Samuel Degueldre authored
      In iap, we want to handle InsufficientCreditErrors in a special way
      (present the user with a prompt to buy more credits) instead of the
      usual error handling that shows a crash dialog. Previously, this was
      done by doing an include on the crash manager. In wowl, we no longer use
      the crash manager in the backend, and replaced it with an error service
      that allows developpers to register error handlers for these kinds of
      use cases.
      
      This commit adapts what was previously an include on the crash manager
      by instead adding a handler to the error handler registry, the file has
      also been renamed accordingly.
      
      The file iap_credit.js has also been removed, as it adds an action to
      the action registry that is no longer called by anything, and is dead
      code.
      4e7187bb
  32. May 27, 2021
    • Aurélien Warnon's avatar
      [IMP] crm_iap_lead: add a whitelisted countries mechanism for states in iap search · 9d9403c5
      Aurélien Warnon authored
      States for some specific countries should not be offered as filtering options
      for crm.iap.lead.mining.request because they drastically reduce the amount of
      IAP reveal results.
      
      For example, in Belgium, only 11% of companies have a defined state within the
      reveal service while the rest of them have no state defined at all.
      
      Meaning specifying states for that country will yield a lot less results than
      what you could expect, which is not the desired behavior.
      Obviously all companies are active within a state, it's just a lack of data in
      the reveal service side.
      
      To help users create meaningful iap searches, we only keep the states filtering
      for several whitelisted countries (based on their country code).
      
      The complete list and reasons for this change can be found on the task.
      
      Task-2471703
      9d9403c5
  33. May 17, 2021
    • Victor Feyens's avatar
      [FIX] *: update documentation links · 0348b95a
      Victor Feyens authored
      
      Following the recent reorganisation of the documentation in 12.0+,
      the majority of the documents have been moved and their old links are no longer valid.
      Some redirection rules will soon be deployed, but those rules might be dropped in some years
      and we want the links to still work, which is why we still replace the links to the new ones.
      
      FW-Port of odoo/odoo#70675 (13.0)
      
      closes odoo/odoo#70920
      
      X-original-commit: bc9c1eef538ba6095e74c19d5d9ed9e01625ec7c
      Related: odoo/enterprise#18361
      Signed-off-by: default avatarVictor Feyens (vfe) <vfe@odoo.com>
      0348b95a
  34. May 18, 2021
  35. May 11, 2021
  36. Apr 29, 2021
  37. Mar 31, 2021
  38. Mar 29, 2021
    • nounoubensebia's avatar
      [REF] [crm_]mail_client_extension, base_setup, crm[_iap_lead_enrich], iap:... · 6c81ee55
      nounoubensebia authored
      [REF] [crm_]mail_client_extension, base_setup, crm[_iap_lead_enrich], iap: split mail specific and crm specific code
      
      - split the mail_client_extension module onto two modules:
        1) module mail_client_extension having mail/contact specific code,
        depends on iap and contacts only
        2) module crm_mail_client_extension having crm specific code,
        depends on CRM and mail_client_extension.
      
        Purpose is to allow the user to use the mail_client_extension
        without needing to install CRM, this will also allow
        the usage of the mail connector in other modules without
        the need for CRM.
      
      - add the module_mail_client_extension field to the
        res_config_settings model of the base_setup module
        in order to enable the user to install the
        mail_client_extension module directly from the settings
      
      - move the crm_lead model from the mail_client_extension_module
        to the newly created crm_mail_client_extension_module, as this
        model is no longer needed by the mail_client_extension module
        because it no longer not implemants CRM functionality
      
      - move the iap_enrich_api model from the crm_iap_lead_enrich
        module onto the iap module as it is only related to contacts
        and not to CRM, this way it can be used in other modules such
        as the mail_client_extension module without the need for CRM
        module
      
      Task-2382870
      UPG-PR: https://github.com/odoo/upgrade/pull/2156
      COM-PR: https://github.com/odoo/odoo/pull/66139
      6c81ee55
Loading