Skip to content
Snippets Groups Projects
  1. Sep 23, 2019
    • Raphael Collet's avatar
      [IMP] models, fields: initialize cache to None for related fields · f047425b
      Raphael Collet authored
      This makes sense because in `create` the "previous" value of a field is
      obviously non-existent.
      
      This avoids having to fetch pre-existing attachments when they are known to be
      inexistent, which optimizes stored related binary that are computed post-insert.
      f047425b
    • Sébastien Theys's avatar
      [IMP] fields: write only once per Image field · 9112972e
      Sébastien Theys authored
      
      Before this commit, flushing a model that uses the `image.mixin` would generate
      twice as many queries as it should.
      
      This is because `_compute_related` is not meant to be overridden. In the
      override of `Image` we call `super()` then post process the records by
      reassigning each record's relevant image field with `_image_process`.
      
      The `super()` will assign the field of the records once which
      will in turn trigger a `write` (and thus, will generate queries) then
      after the `super()` call we reassign them which will re-trigger the same
      `write` and the same queries.
      
      With this commit, instead of overriding `_compute_related` we extract the
      processing to a method that can be overridden, so that the `write` is called
      simply once.
      
      The result, obviously, is that queries related to the `write` are cut in half.
      
      Related PR: #36683 & #36288
      
      Co-authored-by: default avatarAdrian Torres <adt@odoo.com>
      Co-authored-by: default avatarSébastien Theys <seb@odoo.com>
      9112972e
    • Raphael Collet's avatar
      [FIX] fields: set `model_field` on related `many2one_reference` fields · 50c7941f
      Raphael Collet authored
      This fixes an issue when a Model A with a `many2one_reference` is inherited in
      Model B with `_inherits`, and another Model C defines a `one2many` having as
      inverse the inherited `many2one_reference` in Model B.
      
      Without this commit, the value of `model_field` is `False` by default for the
      field in B, which would lead to incorrect queries when building
      `get_domain_list` for the `one2many`.
      50c7941f
  2. Sep 24, 2019
  3. Sep 20, 2019
    • Joseph Caburnay's avatar
      [FIX] delivery: wrong delivery price for real cost policy · 5a9cb644
      Joseph Caburnay authored
      
      When real cost invoice policy is active in a delivery carrier, the
      delivery price is set after validating the delivery. When there is
      margin, the estimated price is calculated with margin but when the
      delivery is validated, the price set in the delivery line does not
      include the margin. This commit fixes this behavior by setting the price
      of the delivery line with appropriate margin.
      
      closes odoo/odoo#37178
      
      Signed-off-by: default avatarpimodoo <pimodoo@users.noreply.github.com>
      5a9cb644
  4. Sep 24, 2019
  5. Sep 23, 2019
  6. Sep 24, 2019
  7. Sep 23, 2019
  8. Sep 21, 2019
  9. Sep 20, 2019
    • wan's avatar
      [FIX] account: constraint on empty account · d3ddcc61
      wan authored
      If SQL, if you do
      ```display_type IN ('line_section', 'line_note') OR account_id IS NOT NULL```
      and `display_type` is `NULL` then you can only have `'t'` because
      `SELECT NULL OR 'f';` yields `NULL`
      `SELECT NULL OR 't';` yields `'t'`
      The check of NULL is not blocking, hence the constraint doesn't work.
      
      closes odoo/odoo#37075
      
      Signed-off-by: default avatarLaurent Smet <smetl@users.noreply.github.com>
      d3ddcc61
  10. Sep 22, 2019
  11. Sep 20, 2019
    • Florimond Husquinet (fhu)'s avatar
      [FIX] survey: answers not saved when using breadcrums · 45c6341b
      Florimond Husquinet (fhu) authored
      
      - Create a survey with one page per section.
      - Go to the second section and select an answer.
      - Go back to the first section using the breadcrums.
      
      Before this commit:
      
      if you go back again to the second section, you will see that your answer
      wasn't saved.
      
      After this commit:
      
      answers are saved even when navigating with breadcrums.
      
      closes odoo/odoo#37157
      
      Opw: 2072948
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      45c6341b
    • Antoine Vandevenne (anv)'s avatar
      [IMP] doc: rewrite of the source install page · 06915120
      Antoine Vandevenne (anv) authored
      
      Prior to this commit, the documentation page for the installation of Odoo had lots of inconsistencies, errouneous information and a bad structure.
      
      This commit restructures the page to split the Source Install chapter into three sections for Windows, Linux and Mac OS.
      Each section is entirely rewritten to be accurate, logical, clean, easy to understand and focused on its purpose (removed tutorials of non-Odoo softwares).
      
      task-2072822
      
      closes odoo/odoo#37001
      
      Signed-off-by: default avatarVictor Feyens (vfe) <vfe@odoo.com>
      06915120
    • William's avatar
      [FIX] stock: remove move 'without package' properly · 3431d7b1
      William authored
      
      on a picking, move_ids_without_package is a subset of move_lines.
      The inverse function on move_ids_without_package only work well when we
      add a move.
      
      This commit improves the inverse function to take deletion into account
      
      closes odoo/odoo#36558
      
      Signed-off-by: default avatarSimon Lejeune (sle) <sle@openerp.com>
      3431d7b1
    • Damien Bouvy's avatar
      [FIX] payment_stripe_sca: on-the-fly customer conversion · 7807bc85
      Damien Bouvy authored
      
      Payment tokens created before the installation of this module and that
      used the Charge API did not need to keep the card reference on Odoo's
      side - since we were allowed by the API to simply specify a customer
      reference when creating a charge and it would take the default one for
      that customer. Odoo creates one customer per payment token (even if it's
      the same partner), so there was no uncertainty there.
      
      Now, with the PaymentIntent API, the payment method reference is
      mandatory. We have a field to keep it in db, but this info needs to be
      retrieved for tokens created before the module's installation. This fix
      introduces that remote call.
      
      closes odoo/odoo#37206
      
      X-original-commit: 1b760a98
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      7807bc85
    • William Henrotin's avatar
      [IMP] mrp: compute quantities speedup · 1067f3bd
      William Henrotin authored
      
      The computation of kit quantities was not efficient. A loop on each product
      of the recordset to consider performed. Each time a product was seen as 'not a kit',
      a new computation on the complete recordset was done. This leads to a N^2 complexity
      
      This commit only compute stock quantities for non kit product in one batch
      
      opw-2070768
      
      closes odoo/odoo#37205
      
      Signed-off-by: default avatarSimon Lejeune (sle) <sle@openerp.com>
      1067f3bd
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] account: broken filter in reconciliation widget · 5e2ae036
      Andrea Grazioso (agr-odoo) authored
      
      From Accounting app under the kanban card "Bank" click on
      "Reconcilile items". Select a line to reconcile with a selected partner
      or counterpart (or input one) and then filter the underlying lines using
      for example the name of the record
      
      No filtering will occur, this is due to commit 900d89c9.
      The domain used by the filtering function is matching all lines
      from the current partner instead of restricting the search to
      the filtered elements.
      
      Reverting that commit and providing a fix for the original issue:
      removing a check on the partner id make a logical separation between the
      domain involving the partner_id and the one related to the search string,
      so that they do not interfere with each other (at most they will overlap).
      
      Preserving tests from the reverted commit and adding some more as well
      
      opw-2070458
      
      closes odoo/odoo#37179
      
      X-original-commit: d434251f
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      5e2ae036
Loading