Skip to content
Snippets Groups Projects
  1. Dec 04, 2019
    • wan's avatar
      [IMP] account: add account.reconcile.model.line · 30cf7bc7
      wan authored
      
      Task 2046908
      Instead of having all the fields duplicated with second_*, we have now a
      o2m allowing us to
      * have more than 2 lines
      * reduce duplicated code
      * fix bugs and add features at only one place
      
      We also remove the computation of writeoff and suggestions from the
      client side as some code was 4-upled before (twice in in client and
      twice in server side). The logic is now only at one place.
      
      closes odoo/odoo#38119
      
      Related: odoo/enterprise#6324
      Signed-off-by: default avatarQuentin De Paoli (qdp) <qdp@openerp.com>
      30cf7bc7
  2. Dec 03, 2019
  3. Nov 26, 2019
  4. Dec 03, 2019
    • Nicolas Lempereur's avatar
      [FIX] base: render with page-break => ok encoding · 7c4628b1
      Nicolas Lempereur authored
      
      If we have eg. a report with a page break (eg. `Print On New Page`
      enabled on a financial report section) the encoding is broken.
      
      The reason is that lxml.html fragments_fromstring function accepts text
      string (OK in unicode) or bytestring => the encoding will be guessed (by
      chardet library) if guess_charset argument is set to true.
      
      So since we do not pass guess_charset option, the encoding is not
      recognized.
      
      In this changeset, we give a text string to the fragments_fromstring
      function since it seems that all our input should be in UTF-8.
      
      note: lxml.html itself uses html5lib.HTMLParser parseFragment that takes
      a charset argument, but there is no interface through
      fragments_fromstring to specify the charset.
      
      opw-2146715
      closes #41255
      
      closes odoo/odoo#41289
      
      X-original-commit: 1d3d517a
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      7c4628b1
    • David Beguin's avatar
      [FIX] website: fix authentication of archived visitor · 9830d924
      David Beguin authored
      
      If a visitor logs in (and has a visitor_id in his cookie), the partner will be
      linked to the visitor. If, after 1 week, the visitor tries to connect again
      with a different session (or another visitor_id in cookies), the authenticate
      will crash because
      
        * _cron_archive_visitors applies on visitor inactive since at least a week
        * there can be only one visitor per partner (sql constraint)
        * the visitor linked to the partner is not retrieved (because archived) and
        we try to link the partner to a new visitor.
      
      Further than that, if the visitor is archived and the linked partner wants to
      login again with a new visitor_id, we should
      
        * reactivate the previous visitor,
        * copy history from newest to previous one,
        * delete the newest one
      
      Note that last two points were already done before this commit.
      
      Task ID: 2120464
      PR #40199
      Fixes #40077
      Fixes #40301
      
      closes odoo/odoo#41273
      
      Original-signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      X-original-commit: 53a6bed3b5c1ae09be490254ed09f18acbb970c4
      Signed-off-by: default avatarDavid Beguin <dbeguin@users.noreply.github.com>
      9830d924
    • Victor Feyens's avatar
      [FIX] product: correctly pass pricelist arguments to recursive calls. · e7fba2e8
      Victor Feyens authored
      
      When computing the price of a product through a pricelist item, if the
      item was based on anotherp pricelist, the dates and uom weren't given to
      the subsequent method call.
      
      As the majority of the calls to those pricelist methods put all their
      arguments in the context, it wasn't noticed until now.
      
      Functional example:
      Pricelist A:
      Rule A1 : 10% discount on Pricelist B, from day 3 to day 6.
      
      Pricelist B:
      Rule B1: 5% discount on Sales price, from day 3 to day 6,
      Rule B2: 10% discount, from day 7 to day 9.
      
      If today was day 8, the call to pricelist(A)._compute_price_rule(day=5)
      would use rules A1 and B2, but should have used rules A1 and B1.
      
      closes odoo/odoo#41295
      
      X-original-commit: df9b1138
      Signed-off-by: default avatarVictor Feyens (vfe) <vfe@odoo.com>
      e7fba2e8
  5. Dec 02, 2019
  6. Dec 03, 2019
  7. Dec 02, 2019
  8. Dec 03, 2019
  9. Nov 29, 2019
  10. Dec 02, 2019
    • mightyjol (jhk)'s avatar
      [FIX]mrp:remove undefined progress field on gantt view · 4a8a49d2
      mightyjol (jhk) authored
      
      steps to reproduce:
      -install the manufacturing app
      -install studio
      -go to manufacturing > click on the studio icon (top right of the window)
      > click views > activate the gantt view
      
      you should see a traceback with the following error
      "Invalid field 'progress' on model 'mrp.production'"
      
      mrp_production does not have a progress field => removal of the
      property "progress" in the view fixes the issue
      
      opw-2144823
      
      closes odoo/odoo#41197
      
      X-original-commit: 31bf2531
      Signed-off-by: default avatarmightyjol <jhk-odoo@users.noreply.github.com>
      4a8a49d2
    • Damien Bouvy's avatar
      [FIX] web,(various): don't pollute session_info for portal users · d2b02cab
      Damien Bouvy authored
      
      The `session_info` dictionnary is used to bootstrap some JS code client
      side (usually in the backend). It includes relevant information, such
      as some parameters key for the OdooBot onboarding, the Enterprise
      subscription expiration alert, etc. to avoid triggering a lot of RPC
      calls upon webclient start.
      
      `session_info` is also called by the remote authentication mechanism
      located at `/web/session/authenticate`, which can be used by external
      mechanism to obtain a valid session remotely.
      
      Revision odoo/odoo@8a28cc2 introduced the concept of cache keys for
      some oft-requested data (such as menus, translations and dynamic qweb
      templates) to avoid requesting them on each webclient start, since they
      tend not to change often. Unfortunately, it introduced a read on the
      ir.ui.menu model that raised an `AccessError` if the authenticating user
      was not a member of the `base.group_user` group ('Internal' user type).
      
      While fixing that issue, it became apparent that `session_info`
      returns a whole lot of information through this remote connection route
      which is entirely unnecessary if not used in the context of a webclient
      start, such a currencies, the state of the enterprise subscription, etc.
      
      This commit fixes the access right issue by removing this non-relevant
      information from the returned dict (including cache keys) if the user
      is not an internal one.
      
      closes odoo/odoo#40770
      
      X-original-commit: 6e99ac2c
      Related: odoo/enterprise#6860
      Signed-off-by: default avatarDamien Bouvy (dbo) <dbo@odoo.com>
      d2b02cab
    • Nicolas Martinelli's avatar
      [FIX] base, base_automation: make active field visible · a7a9362e
      Nicolas Martinelli authored
      
      For better usability.
      
      opw-2146601
      
      closes odoo/odoo#41201
      
      X-original-commit: 807dddab
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      a7a9362e
    • Xavier Morel's avatar
      [REM] survey: dynamic domain · baabfc9e
      Xavier Morel authored
      
      Task 2115472
      
      closes odoo/odoo#40961
      
      Signed-off-by: default avatarXavier Morel (xmo) <xmo@odoo.com>
      baabfc9e
    • Jason Van Malder's avatar
      [FIX] web, account: fix RTL popover on invoice · eefa19f6
      Jason Van Malder authored
      
      Reproduce the issue
      
          - Load Arabic language
          - Install Accounting
          - Create an invoice & add credit note
          - Switch to arabic
          - Click on the "(i)" icon near the total price
      
          The popover is displayed at the other side of the screen
      
      Cause
      
          - RTLcss was reversing the "left: 0" css property to "right: 0"
          - The popover configuration was not adapted for RTL
      
      This commit ignore RTL for the popover css "left" property and
      configure correctly the JS side
      
      OPW-2146210
      
      closes odoo/odoo#41200
      
      X-original-commit: 88f03f04
      Signed-off-by: default avatarJason Van Malder <jasonvanmalder@users.noreply.github.com>
      eefa19f6
  11. Nov 29, 2019
    • Jason Van Malder's avatar
      [FIX] web: fix RTL pivot view dropdown · 1e6b2567
      Jason Van Malder authored
      Reproduce the issue
      
          - Load Arabic language
          - Install Sales
          - Report > Sales
          - Switch to arabic
          - Click on the pivot view to display the dropdown
      
          The dropdown position is incorrect
      
      Cause
      
          The calculations are based on a `left` value who is weird.
      
      This commit use the mouse X position to compute the `left` value.
      
      OPW-2146210
      
      X-original-commit: d021f425
      1e6b2567
  12. Dec 02, 2019
    • svs-odoo's avatar
      [MOV] *: _prepare_purchase_order_line · 621a93b7
      svs-odoo authored
      
      Move the method `_prepare_purchase_order_line` from 'stock.rule' to
      'purchase.order.line'. The purpose is to reuse it in approvals_purchase.
      
      task-2040710
      
      closes odoo/odoo#41046
      
      Related: odoo/enterprise#6702
      Signed-off-by: default avatarSimon Lejeune (sle) <sle@openerp.com>
      621a93b7
    • Quentin De Paoli's avatar
      [IMP] account: usability in account form view · 7037cf6c
      Quentin De Paoli authored
      
      closes odoo/odoo#41186
      
      Related: odoo/enterprise#6989
      Signed-off-by: default avatarQuentin De Paoli (qdp) <qdp@openerp.com>
      7037cf6c
    • Nicolas Lempereur's avatar
      [FIX] website_sale: delete child category on parent · aff4b58c
      Nicolas Lempereur authored
      
      In the case of deletion with `ondelete="set null"`, return_path of
      children of deleted record will not have return_path updated.
      
      So remove the children recursively.
      
      Another fix was done in 13.0 to avoid most issue in 6d5cd8b1.
      
      opw-2148046
      closes #41075
      
      closes odoo/odoo#41178
      
      X-original-commit: 6d5cd8b1
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      aff4b58c
    • Simon Lejeune's avatar
      [FIX] stock: multiple orderpoint · 22b9343c
      Simon Lejeune authored
      
      - the oderpoint_id field on the purchase order line wasn't used to not
        merge the po lines
      - if the orderpoint_id field is set, use the orderpoint location to
        create the move
      - if multiple stock moves with different source locations go through
        `_merge_moves`, they should obviously NOT be merged
      - `virtual_available` computed field was not being invalidated when the
        context keys "warehouse" and "location" changed
      
      task-2001462
      
      closes odoo/odoo#40573
      
      Signed-off-by: default avatarArnold Moyaux <amoyaux@users.noreply.github.com>
      22b9343c
    • Odoo's Mergebot's avatar
      [MERGE] mail: move website part of message and rating to mail / portal · f341a48b
      Odoo's Mergebot authored
      
      PURPOSE
      
      Clean posting process and improve mail.message definition and comprehension.
      Move as much possible content from website_* modules to portal_* modules
      to ease their use in customer portal without having to depend on website.
      
      SPECIFICATIONS: MAIL.MESSAGE DESCRIPTION
      
      Move description from website_mail directly to mail. Anyway it is a
      non stored computed field and therefore having it available directly
      in mail does not cost anything.
      
      SPECIFICATIONS: MAIL.MESSAGE WEBSITE PUBLISHED
      
      Website mail defines a website_published field allowing to publish / unpublish
      comments on the frontend of some modules. This field has several drawbacks :
      
        * it is used only for front-end people (portal, public) and has no real
          effect in chatter / classic discussions;
        * it is used only in some advanced front-end module and is not available
          in portal by default;
        * its naming is not really correct as it is not linked to fields coming
          from the website_published mixin and its behavior is not really
          the same;
        * its use is a bit duplicated with internal flag coming from subtype
          allowing to hide messages related to an internal subtype;
        * there are overrides of standard mail.message methods just to handle
          this flag;
      
      In this merge we change that field by an is_internal flag directly on
      mail.message model itself.It tells if share people (customers, share users)
      are allowed to read the message. This field can be given through posting
      API or set manually using widgets. It is also used in access rights custom
      methods and managed like the internal flag of subtypes.
      
      Mailgateway was already using an internal flag for internal note replies. It
      is renamed to is_internal and propagated as it is now a standard field. It
      also eases code understanding.
      
      Portal is updated to allow managing the flag directly. It means customer portal
      now natively allows to moderate customer comments without any need of website
      modules.
      
      Rating is updated accordingly. An is_internal field is added, replacing the
      related on website published.
      
      Also rename subtype parameter of message_post to subtype_xmlid. In
      order to be more explicit subtype parameter is renamed to subtype_xmlid.
      It therefore clearly indicates it should be a valid subtype Xml ID. Support
      of ill formatted Xml IDs is removed because there is no reason to try to
      add some random prefix. Give something that exists or go to hell, punk !
      
      Finally mail.message and rating.rating form views are updated to include
      is_internal flag and perform some view cleaning. An entry of ratings in
      Technical/Discuss is added for debugging / management purpose.
      
      SPECIFICATIONS: MOVE WEBSITE RATING TO PORTAL RATING
      
      Now that publish feature is replaced by internal directly in mail and portal
      rating portal inclusion can be done safely in a portal_rating module instead
      of website_rating. It allows to remove the dependency and give the rating
      feature of customer chatter directly in portal applications.
      
      LINKS
      
      Task ID 2071556
      PR #38692
      
      Related: odoo/enterprise#6410
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      f341a48b
    • Thibault Delavallée's avatar
      [IMP] mail, rating, portal_rating: improve message and rating views · dc89f584
      Thibault Delavallée authored
      Purpose of this commit is to add some missing fields in message view, notably
      is_internal newly added flag and its ratings. Rating form view is also
      updated to display is_internal flag, and form view is a bit reorganized.
      
      Task ID 2071556
      PR #38692
      dc89f584
    • Thibault Delavallée's avatar
      [MOV] website_rating: now move translations to portal_rating · 7fae045d
      Thibault Delavallée authored
      PURPOSE
      
      Clean posting process and improve mail.message definition and comprehension.
      Move as much possible content from website_* modules to portal_* modules
      to ease their use in customer portal
      
      SPECIFICATIONS
      
      Now that website_rating is now portal_rating, let us update translations
      files accordingly.
      
      LINKS
      
      Task ID 2071556
      PR #38692
      7fae045d
    • Thibault Delavallée's avatar
      [MOV] website_rating: move to portal_rating · 9e067788
      Thibault Delavallée authored
      PURPOSE
      
      Clean posting process and improve mail.message definition and comprehension.
      Move as much possible content from website_* modules to portal_* modules
      to ease their use in customer portal
      
      SPECIFICATIONS
      
      Now that publish feature is replaced by internal directly in mail and portal
      rating portal inclusion can be done safely in a portal_ratign module instead
      of website_rating. It allows to remove the dependency and give the rating
      feature of customer chatter directly in portal applications.
      
      LINKS
      
      Task ID 2071556
      PR #38692
      9e067788
    • Thibault Delavallée's avatar
      [IMP] mail: simplify parent and parent internal computation in routing · 82f56ffd
      Thibault Delavallée authored
      PURPOSE
      
      Clean posting process and improve mail.message definition and comprehension.
      
      SPECIFICATIONS
      
      In this commit we use the is_internal flag to correctly propagate it from
      mail gateway and clean some parent check. In this commit some code is cleaned.
      No functional change should occur with this commit.
      
      LINKS
      
      Task ID 2071556
      PR #38692
      82f56ffd
    • Thibault Delavallée's avatar
      [REF] {website_}mail: move and replace published field of mail.message to is_internal · 5649fc88
      Thibault Delavallée authored
      PURPOSE
      
      Clean posting process and improve mail.message definition and comprehension.
      
      SPECIFICATIONS
      
      Website mail defines a website_published field allowing to publish / unpublish
      comments on the frontend of some modules. This field has several drawbacks :
      
        * it is used only for front-end people (portal, public) and has no real
          effect in chatter / classic discussions;
        * it is used only in some advanced front-end module and is not available
          in portal by default;
        * its naming is not really correct as it is not linked to fields coming
          from the website_published mixin and its behavior is not really
          the same;
        * its use is a bit duplicated with internal flag coming from subtype
          allowing to hide messages related to an internal subtype;
        * there are overrides of standard mail.message methods just to handle
          this flag;
      
      In this commit we change that field by an is_internal flag directly on
      mail.message model itself. It tells if share people (customers, share users)
      are allowed to read the message. This field can be given through posting
      API or set manually using widgets. It is also used in access rights custom
      methods and managed like the internal flag of subtypes.
      
      Mailgateway was already using an internal flag for internal note replies. It
      is renamed to is_internal and propagated as it is now a standard field. It
      also eases code understanding.
      
      Portal is updated to allow managing the flag directly. It means customer portal
      now natively allows to moderate customer comments without any need of website
      modules.
      
      Rating is updated accordingly. An is_internal field is added, replacing the
      related on website published.
      
      LINKS
      
      Task ID 2071556
      PR #38692
      5649fc88
    • Thibault Delavallée's avatar
      [MOV] {website_}mail: move description field of mail.message directly in mail · 46b9a97b
      Thibault Delavallée authored
      PURPOSE
      
      Clean posting process and improve mail.message definition and comprehension.
      
      SPECIFCIATIONS
      
      Move description from website_mail directly to mail. Anyway it is a
      non stored computed field and therefore having it available directly
      in mail does not cost anything.
      
      LINKS
      
      Task ID 2071556
      PR #38692
      46b9a97b
Loading