Skip to content
Snippets Groups Projects
  1. Aug 07, 2018
    • Olivier Colson's avatar
      [REF] account, account_check_printing, payment, l10n_do, l10n_de, l10n_fr,... · 87f0d2ee
      Olivier Colson authored
      [REF] account, account_check_printing, payment, l10n_do, l10n_de, l10n_fr, l10n_nl, l10n_mx: chart templates installation: remove old useless wizards and move everything to account.chart.template
      
      Was task 1858974
      Was PR https://github.com/odoo/odoo/pull/25243
      87f0d2ee
    • Thibault Delavallée's avatar
    • Thibault Delavallée's avatar
      [MERGE][REF] mail: optimize message notification process · 41eb02c2
      Thibault Delavallée authored
      This merge optimizes and lessens query count of notification process. When
      posting a message some computation is done to fetch followers and/or people
      and channels to notify, then notify them on their Inbox or by email. This
      process now takes less queries thanks to several improvements :
      
       * fetching followers / recipients data is now done manually in SQL allowing
         to fetch data across several models in less queries;
       * computing recipients is now separated from notifying them. Notification
         better uses precomputed data in order to avoid fetching and browsing
         several time the same data;
      
      When possible code has been made more readable through code inlining. Several
      methods have been removed because they are not used in inheritance. Some code
      is now more low-level. Optimizing part of the process can make it harder to
      inherit or modify.
      
      Performance counters are updated showing gain in nearly all tested cases.
      An enterprise branch is linked to this one that also improve notification
      process.
      
      This merge is linked to task ID 47934 and closes PR #24033. No functional
      change should occur with this merge.
      41eb02c2
    • Thibault Delavallée's avatar
      [REF] mail: propagate recipient data through notification process · 689a496f
      Thibault Delavallée authored
      Purpose of this commit is to avoid browsing and prefetching data about
      recipients when notifying a message to partners and channels. Mail message
      _notify computes all necessary data in a single query. This commit allow
      to re-use this data by propagating it through the call chain.
      
      Addons inheriting from classification methods used when sending notification
      emails are updated accordingly to the API and data update.
      
      This commit is linked to task ID 47934 and PR #24033. No functional change
      should occur with this commit.
      689a496f
    • Thibault Delavallée's avatar
      [REF] mail: clean code related to notification email generation · 89051058
      Thibault Delavallée authored
      This commit cleans code about sending email notification to recipients.
      Purpose of this code is to prepare notification emails, group recipients
      and finally send emails. In this commit we clean and optimize a bit by
      
       * propagating some additional parameter to simplify code, like record
         on which the notification process runs;
       * inlining some code currently located in sub-methods. It eases code
         understanding as there are less code jumps. As those methods are not
         inherited inlining them can be done;
       * simplifying a bit notification emails preparation and computation;
      
      It allows to save a few query by avoiding to fetch and browse again some
      data that were already computed.
      
      This commit is linked to task ID 47934 and PR #24033. No functional change
      should occur with this commit.
      89051058
    • Thibault Delavallée's avatar
      [REF] test_mail: update counters due to enterprise mail_push update · df8130b2
      Thibault Delavallée authored
      This commit is related to enterprise commit that updated mail_push. It is about
      [REF] mail_push: optimize mail.message notification process override
      
      It updates code of mail_push to lessen its impact on mail-related code. It
      allows to change a few counters in test_mail. Indeed counters are impacted
      by code located in enterprise because those are "maximum queries" counters.
      As mail_push is an auto-install module enterprise runbot would be broken
      if the counters weren't updated.
      
      This commit is linked to task ID 47934 and PR #24033. No functional change
      should occur with this commit.
      df8130b2
    • Thibault Delavallée's avatar
      [REF] mail: optimize notification recipients data fetch through SQL query · 6de76cc4
      Thibault Delavallée authored
      In this commit we update _notify method of mail.message to fetch most data
      related to notification process in a single query.  Indeed posting a
      message can be a costly process, especially when involving several partners,
      channels, depending on their notification status, user groups, ... Most
      of the required data can be fetched in a single hand-tuned query.
      
      Purpose is to lessen query count. Side effect of this commit is that code
      is less recordset based and therefore more low-level. It is also harder to
      customize the behavior through inheritance as it implies rewriting a bit
      more of code.
      
      This query is located in a private method on follower model. It takes
      parameters allowing to either fetch data related to followers of a given
      subtype, either related to some partners and channels. First use case is
      related to the process of posting a message with a subtype that triggers
      notification of followers. Second use case is related to notifying some
      specific partners or channels of a given message. It takes notably into
      consideration internal subtypes and active field of partners, allowing to
      correctly handle corner case for deactivated followers and portal / share
      partners.
      
      Notification process is divided into two steps. First one is to compute
      recipient data. Second one is to apply the result of this computation and
      call the various notification mechanisms accordingly. Doing so allows to
      easily re-call notification process or compute some data differently
      if necessary.
      
      API of notification methods is updated to allow passing notably the values
      used to create the newly-posted message. It allows in some simple case to
      avoid browsing message and partners when no notification is necessary. It
      saves some queries in simple case like posting messages with specific
      subtypes not often followed or logging notes without mentioning people.
      
      This commit allows to save a few queries on several performance tests as
      indicated by updated performance counters. Future commits will gradually
      propagate the use of this data to further lessen query count.
      
      This commit is linked to task ID 47934 and PR #24033. No functional change
      should occur with this commit.
      6de76cc4
    • Thibault Delavallée's avatar
      [FIX] hr_holidays: fix date computation · 40922cc0
      Thibault Delavallée authored
      Since date / datetime refactoring done at 960360af we cannot
      encode new leave requests or new allocation requests anymore. This commit
      fixes that by correctly setting date / datetime on date / datetime field
      and correctly computing one from the other.
      40922cc0
    • qsm-odoo's avatar
      [FIX] mail: BS4, restore activity popover · 240b338d
      qsm-odoo authored
      Adapt SCSS which was BS3-specific and remove misuses of the
      dropdown-item class.
      
      Closes https://github.com/odoo/odoo/pull/24419
      240b338d
    • Olivier Colson's avatar
      [IMP] account: new setting to define a start for bank reconciliation · 3de75211
      Olivier Colson authored
      Payments older than the chosen date won't be proposed in the widget allowing to match payments with bank statements. This is useful if the db used invoicing for years and then installed accounting : users don't want to have to match all the old payments that were generated by invoicing with bank statements.
      
      Was task 1829536
      Was PR https://github.com/odoo/odoo/pull/24728
      3de75211
    • David Beguin's avatar
      [FIX] Crash Manager - Clipboard JS reference updated · 8c1805cd
      David Beguin authored
      The instanciation of the clipboard in the crash manager was not updated
      in the fix that upgraded the clipboard.js
      8c1805cd
    • Deep Patel's avatar
    • Prakash Prajapati's avatar
      [FIX] stock: review some report layout · 5caa9a46
      Prakash Prajapati authored
      The 'table-responsive' class should not be used on <table/> elements
      directly (this is allowed by BS4 but this is not good practice to me).
      
      Closes https://github.com/odoo/odoo/pull/26148
      5caa9a46
    • Prakash Prajapati's avatar
    • Siddarth Gajjar's avatar
      [FIX] web: BS4, fix tooltip flickering issues · 0d8b1f5b
      Siddarth Gajjar authored
      Closes #26186
      0d8b1f5b
    • qsm-odoo's avatar
      [FIX] mail: BS4, properly style followers list · 57400c15
      qsm-odoo authored
      Thanks to @hbh-odoo
      57400c15
    • Florent de Labarre's avatar
      [FIX] account: add countraints on account type · b16a4072
      Florent de Labarre authored
      You cannot have more than one account with "Current Year Earnings" as type for a company.
      
      opw:1868446
      b16a4072
    • Ivan Yelizariev's avatar
      [REM] point_of_sale: remove fastclick.js · d458ec95
      Ivan Yelizariev authored
      It was introduced in 2013, but it's not needed in 2018. According to library's
      note: 
      
      "As of late 2015 most mobile browsers - notably Chrome and Safari - no
      longer have a 300ms touch delay, so fastclick offers no benefit on newer
      browsers, and risks introducing bugs into your application. Consider carefully
      whether you really need to use it."
      
      PR #26200
      d458ec95
  2. Aug 06, 2018
  3. Aug 03, 2018
    • Fabien Pinckaers's avatar
      [FIX] mail: button are now translatable · 0a635321
      Fabien Pinckaers authored
      [IMP] mail; various CSS issues
      0a635321
    • Thibault Delavallée's avatar
      [MERGE] various: update applications manifests · 791d9020
      Thibault Delavallée authored
      Purpose of this merge
      
       * improve the installation of modules;
       * module descriptions are not up to date in the software (still outdated
         screenshots for example). Some features are no longer there;
       * there is a lot of duplicated content to translate since apps are already
         described on our website;
       * apps in system homepage are not always called the same way than the
         module installed ;
       * showcase the website features in a neat apps store (remove tech
         dependencies, clean names and descriptions);
      
      Specifications
      
       * improve kanban view of modules;
       * add a discover button that jumps on the website of the application;
       * do not fill text description in description html for apps as it is not
         user friendly;
       * remove deprecated index.html used as description_html;
       * update names and summaries of applications;
       * update names and summaries of website applications;
       * update some categories;
       * update website links;
      
      See subcommits for more details.
      
      This merge is related to task ID 47179 and 1861544. It closes PR #22689
      and #25556. First one is about classic applications while second one is about
      website applications.
      791d9020
    • David Beguin's avatar
      [REF] Portal Controller : Remove domain from account and purchase · 9434f7b6
      David Beguin authored
      The list of visible records are anyway based on access_rights.
      State has been removed from the domain.
      If the portal must be customized for a model,
      access rights / rules can be added to do so.
      
      Task ID : 30985
      9434f7b6
    • Mitali Patel's avatar
      [IMP] Portal - Share link : Easily share the url of a document · 84f528bc
      Mitali Patel authored
      Purpose
      =======
      - Quickly share the url to someone else (a client, a colleague,...)
      - Ensure that the recipient can access at least
        the portal view of the shared record.
      - Typically used when a client cannot retrieve the mail to access his order.
        The share link can be used in this case.
      
      Specifications
      ==============
      For any object inheriting form portal.mixin:
          - Add a button SHARE (not visible in edit mode)
          - When clicking on this button, a popup opens with :
              - A warning message for tasks and projects only (see below)
              - the link (like in gmail) that can be copied
              - Recipients
              - mail composer (with preselected template) ==> see below
              - button [Send Link] [Copy Link] Discard
              - After sharing document, put internal note like
                "Document shared to xyz,...." with template message
          - Anyone with the link, even anonymous user (not logged in) can have access
            to the document with the access token provided in the url.
      
      Impacted models:
          - account.invoice (Community)
          - project.project (Community)
          - project.task (Community)
          - purchase.order (Community)
          - sale.order (Community)
          - helpdesk.ticket (Enterprise)
      
      Warning messages and access rules:
          Allowed :
              - SO canceled or draft will be accessible with the link
                with access_token
              - If the customer account is B2B (signup not enabled), the recipient
                will anyway see the document as the user specifically wants the
                recipient to see the document.
          Restrictions :
              - For Project and Task, if the privacy is not public, then, there is a
                contradiction between the access_token mechanism
                and the privacy of the document.
              - A warning message will be displayed in the share wizard to inform the
                user if the document cannot be visible by the recipients and to
                ask him to set the privacy to 'Visible by following customer'.
                The send button will, in that case, be hidden.
              - To avoid to block the share for a new project, default privacy value
                is now set to 'Visible by followong customer'
      
      Technical implementation
      ========================
      - Move the access_token mechanism (field + methods + mail controller)
        to the portal.mixin to be able to use it in a generic way for each object
        inheriting the portal.mixin
      - Generalise a part of the _*model*_get_page_view_values method
        into a single one in portal
      - Generalize the _*model*_check_access into the portal controller of the
        portal module
      - Remove the init_column + default value for the access_token
        > old records have an access_token,
        > new one won't but it will be generated on demand via the get_access_token
        Done for performance reasons
      - Add share button into action menu separately. + kanban view context menu
        (except for task and project where button not in action menu but 'simple'
        button for task and project because other modules already provide action
        to send documents by email, which is not the case for project and task.)
      - Add a sign_token used to authentify the recipient in the portal view chatter,
        if any. The message will be posted as if the user was logged in.
      - Set the _get_share_url as private for security reason
      - Add a redirect parameter to _get_share_url to get
          If false : The direct portal view url
          If True : The redirect url (mail/view/?)
      - Cleaning up unnecessary code
      
      - Bug fix :
          - Before, if user was not logged and record had partner_id,
            if partner id was null, post message was done as admin.
            Now, the post message is done as public user.
          - If the user had an uid but had no access_token, he could be able
            to gain the access token of the record.
            check_access_rights was missing in the get_access_action.
      
      Task ID : 30985
      Closes #25629
      84f528bc
    • Laurent Smet's avatar
      [IMP] l10n_be_invoice_bba: make structured comm working per company, not partner (#26154) · 766a1025
      Laurent Smet authored
      The structured communication is no longer configured for each partner independently. It can be configured like others communication type through the settings.
      
      task: 32254
      PR: 26154
      co-author: Haresh Shyara (hsh)
      Unverified
      766a1025
    • Priyanka Kakadiya's avatar
      [IMP] note, purchase: rename main menu name · 66d87a6e
      Priyanka Kakadiya authored
      This commit renames main menu name same as module name in order to be less
      confusing to users. This implies a small fix in test main flow because it
      is based on the menu name.
      
      This commit is related to task ID 47179 and PR #22689.
      66d87a6e
Loading