Skip to content
Snippets Groups Projects
  1. Feb 28, 2018
  2. Feb 27, 2018
  3. Feb 26, 2018
    • Quentin De Paoli's avatar
      [IMP] account, account_bank_statement_import: create res.partner.bank only... · 9bc9c864
      Quentin De Paoli authored
      [IMP] account, account_bank_statement_import: create res.partner.bank only when statement lines get processed
      
      Previously, bank accounts were created at the line creation, even if the partner was unknown. That was a very weird behavior since
      - that use case of a res.partner.bank belonging to no one is meaningless
      - the default partner was actually set to the current'user company, which was even more wrong.
      
      This has been already improved by https://github.com/odoo/odoo/commit/7b322d08de2b5343cdf6935a7ae4a12f1fd61958 but that first patch ignored the use case of res.partner.bank created thr$
      9bc9c864
    • Thibault Delavallée's avatar
      [REF] rating: avoid storing rating_value on mail.message · f727e9d9
      Thibault Delavallée authored
      Currently the rating value coming from the rating application is stored
      on the message it belongs to. However storing it is not necessary as
      there is no direct search using it. Having a computed field is sufficient
      for all use cases we currently have in Odoo.
      
      Removing the store allow to gain queries. Indeed the field is not
      computed anymore after each message creation meaning we save queries
      by not having to check existing ratings. It allows to gain a lot of
      computation as mail.message is a critical model.
      
      On the whole community runbot when installing all modules this leads to
      a gain of more than 14K queries on 585K which means 2.4% of performances
      increase. Considering the code size of this optimization this is quite an
      interesting result.
      
      Looking at test_mail performance tests we gain several queries (2/3) for
      each new message which is coherent with the model change.
      
      Finally it allows to lessen the performance difference between tests done
      with test mail only and tests done with other modules already installed.
      This is especially simple mail thread-enable records.
      
      Related to task ID 51523. #Closes #23294. Done with blessing of @jem-odoo .
      f727e9d9
    • XavierDo's avatar
      [IMP] product: rename product.uom into uom.uom · 2966d4fa
      XavierDo authored
      Also rename product.uom.categ into uom.category to
       give it a decent name.
      2966d4fa
    • XavierDo's avatar
      [IMP] product: move uom in a new addon · 6a378e38
      XavierDo authored
      Moves UoM models, test and data to a new addon in
      order to be able to use uom without product.
      A simple example is be to be able to use UoM for
      timesheets.
      
      This commit only move code, and adapt xml ids
      without chaging any feature or functionnal
      behavior.
      Note: 'product' module now depends on new
      'uom' module.
      6a378e38
    • Thibault Delavallée's avatar
      [MERGE][REF] mail, various: remove dead code and perform some small code renaming and optimization · 9de5d417
      Thibault Delavallée authored
      Purpose of this merge is to clean a bit various methods and remove some
      dead code. All those commits come from other work-in-progress branches
      in mail aiming at improving performances and reducing code size. We can
      already merge some light cleaning in order to lessen diff and ease
      understanding of real feature-based branches.
      
      It contains
      
       * some renaming in notification methods to match the _notify prefix used
         in most of them;
       * removal of  some dead code coming from old implementations of chatter;
       * removal of unnecessary context switch in email sending process;
       * small cleaning of notification group methods in various addons;
      
      It allows to gain some queries in various test_mail performance test as
      stated in the test_performance file update. When notification emails are
      sent 4 queries are gained with this merge. On the whole community runbot
      the impact is small (about 1K queries) probably because most of email
      sending part is skipped on runbot.
      
      This merge is related to the task Id 59039. #Closes #23089.
      9de5d417
    • Thibault Delavallée's avatar
      [REF] various: clean override of _notify_get_groups · 86350c56
      Thibault Delavallée authored
      Overrides of _notify_get_groups are used to add some buttons in notification
      emails and control the display of "Access document" button. This commit
      cleans some overrides :
      
       * accounting: portal users that are not the customer have no access to the
         invoice and should not have the access button;
       * project: remove unnecessary override on project model and consider portal
         users have access to the document through customer portal;
       * sale: portal users that are not the customer have no access to the sale
         order and should not have the access button;
       * website_blog: display access button to everyone only if the post is
         published; otherwise keep standard behavior;
       * website_forum: display access button to everyone only if the post
         has not been closed or deactivated; otherwise keep standard behavior;
       * website_slides: display access button to everyone only if the slides
         has been published; otherwise keep standard behavior;
      86350c56
    • Thibault Delavallée's avatar
      [REF] mail: simplify email send code and remove unnecessary methods · 6eda1dcb
      Thibault Delavallée authored
      Send methods of mail.mail model are set private and simplified. Those
      methods have been written when a lot of overrides were necessary to
      generate notification emails. Since then the flow has changed but
      methods have not been updated completely. This commit therefore simplified
      a bit the call chain and parameters.
      
      This commit is purely technical and does not hold any functional change.
      Purpose is to clean code in order to prepare future changes in mail
      application.
      6eda1dcb
    • Thibault Delavallée's avatar
      [REF] mail: rename notification methods related to recipients · d46e358d
      Thibault Delavallée authored
      This commit renames some internal mail.thread methods linked to the
      notification process. This is the next commit of a series aiming at
      improving code readability and method finding through prefixes. See
      notably cae1c397, cdfe479e and fc1348dd.
      
      This commit does not change any functional feature. It does only
      rename notification-related methods, using the _notify prefix to
      ensure they are private and to mark they are part of the notification
      process.
      d46e358d
    • Thibault Delavallée's avatar
      [REM] mail: remove unnecessary context switch in mail send method · 2238408d
      Thibault Delavallée authored
      Commit 0d3d0e95 added a key in context when sending emails to know
      the target model name. It was used at that time to forge for footer of
      notification emails.
      
      Since that time notification emails have evolved a lot. The code based on
      that context key has been removed. Context key has been transformed into a
      context switch. However it is not used anymore and can be removed. It allows
      to clean a bit the code and save a context switch.
      
      This commit is purely technical and does not hold any functional change.
      Purpose is to clean code in order to prepare future changes in mail
      application.
      
      This commit allows to gain some queries in mail sending process, meaning
      removing context switch is interesting. One query is gained when using
      the send process. Complex performance test involving several message post
      gain 3 queries each.
      2238408d
    • Thibault Delavallée's avatar
      [REF] mail: simplify parent fetch when posting a message · 97ee12e9
      Thibault Delavallée authored
      1d57a091 added a two-steps parent fetch when posting a message
      on a discussion thread. At the time this commit was done responsible were
      notified of the first thread message. It was helpful to notify them of the
      original email that created the thread instead of the "document created"
      generic message. Indeed for documents like leads or issues having the
      original email containing the customer question is interesting when being
      notified. This is why this commit was done.
      
      However since quite a long time responsible notifications have changed.
      They now receive an email notification telling they have been assigned on
      a document. This commit is not necessary anymore and we therefore remove
      it in order to clean a bit the message_post process.
      
      This commit globally reverts 1d57a091. Please note that @beledouxdenis
      agreed after a long thinking.
      
      This commit has a slight impact on mail performance tests, allowing to save
      one query in some more complex test case.
      97ee12e9
    • Thibault Delavallée's avatar
      [REF] mail: consider body in message_post is always html · 74d4b390
      Thibault Delavallée authored
      Purpose of this commit is to simplify a bit message_post API. It has
      a content_subtype parameter allowing to receive plaintext content.
      It is then automatically converted into html.
      
      This commit removes the parameter and consider the content is always
      html. Code calling message_post should handle the conversion. In Odoo
      the only use was in the chat_post controller that now perform the
      plaintext to html conversion before calling message_post.
      
      This commit is purely technical and does not hold any functional change.
      Purpose is to clean code in order to prepare future changes in mail
      application.
      74d4b390
    • Thibault Delavallée's avatar
      [REM] mail, hr: remove old redirection when posting on users · a6c187a0
      Thibault Delavallée authored
      Posting on users is not supported anymore. It was implemented in a time
      we thought having a twitter-like behavior in Odoo was a good idea.
      Posting on users was redirected on its related partner in mail. It was
      redirected on its related employee in hr. It does not make sense anymore
      as employee are records with limited access and partners used for other
      purpose than discussing notably in accounting.
      
      Now that we have chat channels it makes no sense to have this kind of
      behavior still implemented. Let us remove it. No functional change
      should occur with this commit.
      a6c187a0
    • Thibault Delavallée's avatar
      [FIX] mail: correctly propagate message_post parameters to redirection · 1b5b2b9d
      Thibault Delavallée authored
      Propagation was not correctly done at 8a026e26 . This commit
      ensures all parameters are passed to sub-calls when redirection is done
      in message_post.
      1b5b2b9d
    • Thibault Delavallée's avatar
      [DOC] mail: update test performance counters · f6dd6025
      Thibault Delavallée authored
      A test_mail only counter was not updated correctly after changes done
      in user assignation notification (see a6e13248).
      f6dd6025
  4. Feb 23, 2018
  5. Feb 22, 2018
    • Alexandre Kühn's avatar
      [FIX] *: no concatenation of static and dynamic nocontent helper · d56d96dc
      Alexandre Kühn authored
      * crm, hr_expense, mail
      
      The nocontent helper can be generated either statically (in xml)
      or dynamically (in python).
      
      Before this commit, the result of some nocontent helpers was simply
      the concatenation of the static and dynamic parts.
      
      Due to recent changes (see https://github.com/odoo/odoo/commit/a87d761fdbf345ada5dc93e0a686b08a0f5a0417),
      the nocontent helper has changed so that any of the nocontent helper
      parts has to define its style for showing the face (e.g. smiling,
      neutral, or folder face).
      
      As a consequence of the changes above, the styles of some
      nocontent helper screens were duplicated, e.g. two smiling faces
      were shown instead of a single one.
      
      With this commit, most dynamically generated nocontent helpers keep
      only the dynamic part, so the static part is usually dropped in this
      case.
      
      Exception to above rule:
      
          dyn_help = 'You could also add a new [document_name] by sending an email to [email_link]'
      
      The dynamic part is appended right after the static help message, in its dedicated paragraph.
      d56d96dc
    • Prakash Prajapati's avatar
    • Nicolas Martinelli's avatar
      [FIX] l10n_in_hr_payroll: spelling mistake · 932c7e42
      Nicolas Martinelli authored
      opw-1814701
      932c7e42
    • Prakash Prajapati's avatar
      [IMP] base, base_iban, l10n_ch: few improvements in res.partner.bank · a3dda5b3
      Prakash Prajapati authored
      - Change the type in 'acc_type' field char into selection field and change tooltip
      - added new field 'acc_holder_name' that can be used to set the account holder name in case it is different than the partner name
      
      Was task 39334.
      Was PR #20794
      a3dda5b3
    • Prakash Prajapati's avatar
      [IMP] account: improved warning message, · 42aae02c
      Prakash Prajapati authored
      Improved warning message which is raised when we try to validate internal payment transfer without setting the account for the same in accounting settings.
      
      Was task: 39334
      Was PR #20794
      42aae02c
    • Alexandre Kühn's avatar
      [FIX] mail: prevent crash when focusout emoji button · 17530172
      Alexandre Kühn authored
      Before this commit, on a clear session, there was a traceback
      after focusing out the emoji button next to the composer.
      
      This is due to a DOM element that exists only after clicking on
      the emoji button, and it was wrongly assumed that focusout cannot
      occur without a preceding click. Indeed, we can press TAB to move
      between focusable elements, so that we can have the focus in/out
      on the button without clicking on it.
      17530172
    • Alexandre Kühn's avatar
      [FIX] web: update to qunit from 2.2.1 to 2.3.0 · 7113e27c
      Alexandre Kühn authored
      In particular, qunit 2.3.0 solves this issue: https://github.com/qunitjs/qunit/issues/1119
      
      A consequence of the above issue is that some tests could have completed successfully,
      although an error was raised.
      7113e27c
    • Alexandre Kühn's avatar
      [FIX] mail: let TAB cycle through @ mention propositions · 497a44ab
      Alexandre Kühn authored
      Before this commit, when the partner mention propositions dropup was visible
      on discuss composer, pressing on TAB result in selecting the next focusable DOM
      element after the composer input, which is usually the 'Send' or 'Log' button.
      
      This behaviour is confusing, because users expect that TAB either autofill the
      input or cycle through the propositions.
      
      We decided to align on Slack's behaviour of TAB, which is to cycle through
      the mention popositions from top to bottom.
      497a44ab
    • Alexandre Kühn's avatar
      [FIX] mail: show mention link at the end of a message content · 55328258
      Alexandre Kühn authored
      Before this commit, when mentioning a user at the end of a message,
      no link was shown.
      
      The cause is that any mention should end with whitespace, but during
      the preprocessing of a message, the message is trimmed, which removes
      the final whitespace of the mention.
      
      We would like to keep trimming at the preprocessing of the message,
      but we can relax a bit the regex to detect a mention, so that it is
      not necessary to have a whitespace at the end of a matched mention.
      55328258
    • Alexandre Kühn's avatar
      [FIX] web: tests: turn patchWindowGetSelection stateless · 89e2679f
      Alexandre Kühn authored
      test_utils.js contains helper functions, which should be stateless
      (good practices). This was not the case with patchWindowGetSelection
      and unpatchWindowGetSelection, so instead we keep only the first
      function which returns the second one.
      
      From the test POV, instead of this:
      
          utils.patchWindowGetSelection();
          // ...
          utils.unpatchWindowGetSelection();
      
      It now looks like that:
      
          var unpatchWindowGetSelection = utils.patchWindowGetSelection();
          // ...
          unpatchWindowGetSelection();
      89e2679f
Loading