Skip to content
Snippets Groups Projects
  1. May 15, 2023
    • Kartik Chavda's avatar
      [FIX] project: make tasks action from project consistant · c95278e7
      Kartik Chavda authored
      
      Before this commit task action from kanban click and from
      stat button does not have same behavior like kanban click
      does show archive task for archive project and does not
      display New button while other on does not.
      
      This commit make both action consistance to have same
      behavior in both actions.
      
      task-3224627
      
      closes odoo/odoo#114749
      
      Signed-off-by: default avatarXavier Bol (xbo) <xbo@odoo.com>
      c95278e7
    • Eteil Djoumatchoua(etdj)'s avatar
      [FIX] mrp: Get the google slide for manufacturing operations with specific page step · 21601156
      Eteil Djoumatchoua(etdj) authored
      
          Steps to reproduce:
          1- Create a BOM for a product, define an Operation on the product
          2- Link a Google Slides document to the Operation as the Operation Worksheet.
          3- Define an instruction on the Operation
          4- Set Step Document to Specific Page of Operation Worksheet and define a page.
      
          Issue: The step will not load the document.
      
          Cause: tablet.js passes the wrong value to let know the viewer is a google slide url. Also when the good
          value is passed the viewer always show the first page. That's because the SlideViewer has the page set in the
          setup() method so it never change despite we change the step in the same document.
      
          opw-3165142
      
      closes odoo/odoo#113727
      
      Related: odoo/enterprise#37558
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      21601156
    • Christophe Simonis's avatar
      [FIX] core: load tests from all entries in `--upgrade-path` · ed1b27db
      Christophe Simonis authored
      
      Allow extending tests for any modules, regardless of existing ones
      in another entry of the `upgrade-path`.
      
      Bonus point: tests no longer need to be imported in the `__init__.py`
      file.
      
      closes odoo/odoo#121304
      
      X-original-commit: 08adb3e6
      Signed-off-by: default avatarChristophe Simonis <chs@odoo.com>
      Co-authored-by: default avatarAlvaro Fuentes <afu@odoo.com>
      ed1b27db
    • kir-odoo's avatar
      [FIX] delivery: shipping carrier is set after delivery generated · b43f5ed0
      kir-odoo authored
      
      Before this commit
      ==================
      when SO is confirmed and Delivery is created then add the shipping method
      in SO, in this case, the shipping carrier is not set in the existing undelivered
      delivery of that SO.
      
      After this commit
      =================
      So in this commit, we set the shipping carrier for undelivered delivery.
      
      taskId - 2946360
      
      closes odoo/odoo#121300
      
      X-original-commit: 51523c0dbf6ce9dd1a1ff35e03fa6a51267da14b
      Signed-off-by: default avatarTiffany Chang <tic@odoo.com>
      b43f5ed0
    • Julien (jula)'s avatar
      [FIX] mail: do not compute chat windows in DiscussPublicView · 340476c3
      Julien (jula) authored
      
      __Current behavior before PR:__
      When someone joins a call in the discuss public view and receives a message in the chatter, the part of the screen supposed to display the video streams of the participants goes black.
      
      This happens because it is trying to open a chat window in the bottom right as it is done usually. However since we are in the public view it removes it instantly together with the participants cards.
      
      __Description of the fix:__
      If we are in the discuss public view, it is useless to make chat windows. This will prevent opening of chat windows.
      
      __Steps to reproduce the issue:__
      1. Open the discuss app and start a meeting.
      2. Copy the Invitation Link
      3. Open a new private window to join the call with a guest user.
      4. Then go back to the non-guest user page and send a message in the chatter.
      5. Notice that the participants cards vanished on the private window page.
      
      opw-3229747
      
      closes odoo/odoo#121195
      
      X-original-commit: 49d56c5449e1bd9457fb935e98134cafc75931dc
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      Signed-off-by: default avatarLouis Wicket (wil) <wil@odoo.com>
      340476c3
    • niyasraphy's avatar
      [FIX] website_forum: missing parenthesis for function · 2f225651
      niyasraphy authored
      before this commit, on clicking on Go To Website
      smart button in forum is not redirecting to the
      corresponding forum due to missing parenthesis
      to the function.
      
      after this commit, on clicking the Go To Website
      smart button, user is redirected to the forum.
      
      introduced in: https://github.com/odoo/odoo/commit/36c734ab37fdf1d6a245e0e29cfefe3cc46c6d92
      
      
      
      closes odoo/odoo#121338
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      2f225651
    • Soukéina Bojabza's avatar
      [FIX] web_editor: fix grid mode with inner snippet outside a row · f94fe1d4
      Soukéina Bojabza authored
      
      Before this commit, there were cases where toggling the grid mode did
      not work correctly. These cases are:
      - when a snippet has None columns (e.g. Cover) and that an inner snippet
      containing a row (e.g. Form) was dropped into it,
      - when a snippet has some content outside its row (e.g. Picture) and
      that an inner snippet containing a row was dropped in this outer
      content,
      - when a snippet has some content outside its row (e.g. Picture) and
      that an inner content (e.g. Alert) was dropped in this outer content.
      
      The first two cases happen because the row that was taken into account
      when toggling the grid mode was the first `.row` element found in
      general, instead of only considering the container children. Therefore,
      what happened in these problematic cases is that the row found was the
      inner snippet one, which should not be the case and caused the toggle to
      fail because it was trying to put the element inside itself.
      
      The third case happens because the `div` elements were excluded when
      placing the outer content in a column, instead of only excluding the row
      element.
      
      This commit fixes these issues by only considering the container
      children when looking for the row element when toggling the grid mode,
      and by filtering out only the row element instead of every `div` when
      creating a column for the outer content.
      
      task-3279191
      
      closes odoo/odoo#119965
      
      Signed-off-by: default avatarDieleman Guillaume <gdi@odoo.com>
      f94fe1d4
    • MerlinGuillaume's avatar
      [FIX] web: disable click on list action with target new · 63d43713
      MerlinGuillaume authored
      
      When importing data and checking the possible values of a field,
      clicking on one of the records to open it throws an error
      
      Steps to reproduce:
      1. Install Projects
      2. Go to Project > My Tasks and trigger the list view
      3. Select any record and export it (check the import-compatible export
         option)
      4. Open the exported file and modify the `project_id` to a non-existing
         project name
      5. Click on Favorites > Import records
      6. Upload the modified file and click on 'TEST'
      7. In the `project_id` field, click on 'See possible values'
      8. Click on any project, an error is thrown
      
      Solution:
      Prevent the form from being opened when the action is in target "new"
      
      Problem:
      Opening the record in a target new throws the error `switchView
      called but the current controller isn't a view`
      
      opw-3161777
      
      closes odoo/odoo#119643
      
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      63d43713
  2. May 14, 2023
  3. May 12, 2023
    • stevTresCloud's avatar
      [FIX] l10n_ec: Taxes account tags in repartition lines for report 104 · fb02720a
      stevTresCloud authored
      
      - Add missing account tag on repartition line taxes to fix the report 104 amounts for per tax
      
      closes odoo/odoo#121095
      
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      fb02720a
    • VAN BOSSUYT Nicolas's avatar
      [FIX] website: reorder selectors used for switching cookie banner layout · 720ae005
      VAN BOSSUYT Nicolas authored
      
      The cookie policy banner template includes nested selectors, such as
      o_cookies_bar_text_policy within o_cookies_bar_text_secondary.
      The process for switching the banner layout involves copying selectors
      based on the order defined in CookiesBar::selectLayout()::selectorsToKeep.
      However, a bug caused o_cookies_bar_text_policy to be copied before
      o_cookies_bar_text_secondary, resulting in its content being overridden
      by its parent content. The fix involves reordering the selectors so that
      o_cookies_bar_text_secondary is copied before o_cookies_bar_text_policy.
      
      opw-3302511
      
      closes odoo/odoo#120914
      
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      720ae005
    • Touati Djamel (otd)'s avatar
      [FIX] mrp_subcontracting: fix traceback in bom overview · 60eca543
      Touati Djamel (otd) authored
      
      Steps to reproduce the bug:
      - Enable subcontracting in mrp settings
      - Create a storable product:
          - add “azure interior “ as supplier
          - Create a BoM:
              - Type: subcontracting
              - subcontractor: azure interior
              - save
      - Click on BoM overview
      
      Problem:
      Traceback is triggered: “OwlError: Invalid props for component
      'BomOverviewSpecialLine': 'precision' is missing (should be a number)”
      
      opw-3321346
      
      closes odoo/odoo#121245
      
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      60eca543
    • Abdelouahab (abla)'s avatar
      [FIX] base: merging unreadable pdfs · 5053620c
      Abdelouahab (abla) authored
      
      To Reproduce
      ============
      - create two Vendor Bills and attach to each one a PDF from the ones
      provided by the client on the ticket.
      - select these two bills and and try to print Original Bills an error will be raised
      
      Problem
      =======
      while merging these PDFs, PyPDF2 throws a `TypeError` which is not caught by the server
      
      Solution
      ========
      catch `TypeError` to raise a UserError
      
      opw-3285540
      
      closes odoo/odoo#121220
      
      X-original-commit: d2b97524
      Signed-off-by: default avatarabla001 <abla@odoo.com>
      5053620c
    • Adrien Guilliams (adgu)'s avatar
      [FIX] pos_daily_sales_reports: key not correct · bd452023
      Adrien Guilliams (adgu) authored
      
      The key chosed in the SaleDetailsReport.xml file following
      t-foreach instructions were not properly chosen. When 2 products were
      bought but with different price or different discount, the key
      was the same leading to an error. This fix aims at resolving
      this problem.
      
      closes odoo/odoo#119026
      
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      bd452023
    • Mathieu Duckerts-Antoine's avatar
      [FIX] web: graph: avoid some useless chart renderings · dab0187e
      Mathieu Duckerts-Antoine authored
      
      With a slow network, make a new search in the search bar of a graph view
      would lead the graph renderer to be rendered twice. This was due to the
      fact that in the graph controller template an arrow function is passed
      as a prop to the graph renderer. The reactivity system treats that prop
      as changing at each graph controller rendering and ask unnecessarily (in
      this case) the graph renderer to render.
      
      closes odoo/odoo#121252
      
      Signed-off-by: default avatarGéry Debongnie <ged@odoo.com>
      dab0187e
    • Bruno Boi's avatar
      [FIX] web: allow any levels in navbar menus · 505989a4
      Bruno Boi authored
      
      In 14.0 the menu items in the navbar sections menu could have any level.
      Since the webclient refactoring landed in 15.0 0573acae this feature has
      been unintentionnally limited to two levels.
      More sub menus would simply not be displayed.
      
      **Before this commit**
      - Have a menu item with the following path:
        `App/Menu/Group/Sub-group/Item`
      - The `Sub-group` is displayed as an item. It is clickable but nothing happens.
      - The `Item` is not displayed.
      
      **After this commit**
      Works properly as it should. See screenshots on the PR description.
      
      closes odoo/odoo#121196
      
      X-original-commit: 5080ecf11be87a5ba29041b82163197a7487343c
      Signed-off-by: default avatarMathieu Duckerts-Antoine <dam@odoo.com>
      Co-authored-by: default avatarMathieu Duckerts-Antoine <dam@odoo.com>
      505989a4
    • Alexis de Lattre's avatar
      [IMP] point_of_sale: add date on cash receipt · 08dad679
      Alexis de Lattre authored
      
      Add local date and time at the end of the printed in/out cash ticket
      
      closes odoo/odoo#119835
      
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      08dad679
    • Tommy (tong)'s avatar
      [FIX] l10n_jp: add migrations script to update account.tax.group xmlid · 95bfdbf4
      Tommy (tong) authored
      
      Steps to reproduce:
      
      - Install l10n_jp before the original commit
      - Update code to latest
      - Try to upgrade the l10n_jp module
      
      Current behaviour:
      Error shown because of missing account tax group.
      
      Expected behaviour:
      No error should be shown.
      
      Explanation:
      The new version of localisation changes the xmlid which caused the original tax group
      cannot find the reference. Migrate them to prevent the error.
      
      X-original-commit: 7a914a0e
      Close #118867
      
      closes odoo/odoo#120377
      
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      95bfdbf4
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] account: epd causes tax line duplication · 5a256af3
      Andrea Grazioso (agr-odoo) authored
      
      Set "Cash Discount Tax Reduction" to "Always"
      Create an invoice with a tax line
      Set Payment term to "2/7 Net 30" [1]
      Go to "journal items" tab
      Early payment discount lines are set correctly
      Set payment term to "30 Days", Save
      Set Payment term to "2/7 Net 30", Save
      
      Issue:
      An extra tax line appear in journal items because an old tax line was
      not deleted and a new one is created
      
      [1] Payment terms: 30 Days, 2% Early Payment Discount under 7 days
      
      opw-3285534
      
      closes odoo/odoo#120014
      
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      5a256af3
    • yhu-odoo's avatar
      [FIX] mrp: duplicate lot when auto-generate serial · 007766c4
      yhu-odoo authored
      
      Previous commit 1b840d06 tried to fix
      the issue action_generate_serial may try to generate a existing lot.
      But it made the lot number completely product specific. This change is
      too big for stable, we revert the change in this commit.
      
      Also to fix the issue, when action_generate_serial tries to generate a
      lot, we always try the result from ir.sequence frist, only when the lot
      already exists, we then try create one based on the product's lastest
      lot number.
      
      Task-3187003
      
      closes odoo/odoo#121194
      
      X-original-commit: 95214ab6c133553371926804e788766edab2b8ca
      Signed-off-by: default avatarArnold Moyaux (arm) <arm@odoo.com>
      Signed-off-by: default avatarYuchen Huang (yhu) <yhu@odoo.com>
      007766c4
  4. May 11, 2023
    • Christophe Simonis's avatar
      [FIX] core: ensure `odoo.upgrade` __path__ contains real directories · a7be194f
      Christophe Simonis authored
      
      mimic what is done for `odoo.addons` __path__.
      
      closes odoo/odoo#121183
      
      X-original-commit: 2a981e6a
      Signed-off-by: default avatarChristophe Simonis <chs@odoo.com>
      a7be194f
    • Victor Feyens's avatar
      [FIX] sale: recompute taxes on company change · e2aad2ee
      Victor Feyens authored
      
      Since e6415be5ce6077702836779cf784e16f7e72a9c7, it is
      forbidden to use taxes on Sales Order Lines from another company
      than the Sales Order one (it was breaking later in the flows anyway).
      
      Nevertheless, in some flows, modifying the company of an existing SO
      can make sense, but you wouldn't be able to save the change if taxes
      were set on the lines (unless you trigger the 'Update Taxes' button).
      
      This commit will make sure that taxes are automatically recomputed
      on company change, s.t. the user doesn't face multi-company errors.
      It'll magically change taxes & amounts, but we consider that it's
      an expected behavior when modifying the order company (and an
      advanced flow for which users must be aware of the consequences).
      
      Anyway, the user will always be able to discard the changes (company
      & company-based recomputations) if needed.
      
      opw-3234905
      
      closes odoo/odoo#120774
      
      X-original-commit: e2e97ae66604a441e91e0efedd8d3b10c4219d24
      Related: odoo/enterprise#40844
      Signed-off-by: default avatarVictor Feyens (vfe) <vfe@odoo.com>
      e2aad2ee
    • Antoine Guenet's avatar
      [FIX] mass_mailing: restore save on blur · 817d494e
      Antoine Guenet authored
      Commit [1] defined a value for the `onWysiwygBlur` option of `Wysiwyg`
      in the `mass_mailing` `html field`. This had the side effect of
      overriding the value set by its parent `html field`, which was to call
      `commitChanges`. As a result, the `mass_mailing` `html field` was not
      saving its content on blur. This restores that behavior by explicitly
      adding the call to `commitChanges` where it was missing.
      
      [1]: https://github.com/odoo/odoo/commit/e212e873eb35eb9b9a931fb1521109475c008074
      
      
      
      task-3288881
      
      closes odoo/odoo#120113
      
      Signed-off-by: default avatarDavid Monjoie (dmo) <dmo@odoo.com>
      817d494e
    • qsm-odoo's avatar
      [FIX] mass_mailing: restore website snippets demo page · 10497b96
      qsm-odoo authored
      When mass_mailing was installed, the website snippets demo page did not
      work anymore. This is due to a combination of two factors:
      
      A. [1] marked views for removal just before the release of the 16.0 (so
         that they could be removed via an upgrade script later on after
         runbot things) but we forgot to remove them before the release.
      
      B. The views that [1] tweaked and should have been removed contain an
         apparently simple `<div>` with a comment... but it actually acts as
         an xpath looking for a div as it is an extension view. Unfortunately,
         there is a bug in the t-call/inheritance system regarding this: when
         the main view containing this xpath is rendered directly, there is no
         issue (that's what edit mode works: a div is found and nothing is
         added inside). But when it is t-call'ed (as it is the case in the
         snippets demo page), the div cannot be found anymore (it seems to
         look for `/data/div` instead of `/t/div`).
      
      The bug described at B (if it is really a bug) could be worth checking
      but this is probably not worth the time until a real usecase occurs. For
      now, this commit fixes the broken demo page by using a real xpath to
      target the div. This is technically not a stable change but really,
      users should not have targeted a template which was clearly marked for
      removal. So hopefully, there should not be any issue.
      
      [1]: https://github.com/odoo/odoo/commit/3201eba9fd31602d709b962965e9c1411d1eeb6f#diff-b26221e9411fb6f3725ce5a30c4659a22d81a9a69f666bdbd6daa77e03ec3253R302-R308
      
      
      
      task-3233465
      
      closes odoo/odoo#121134
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      10497b96
    • Nshimiyimana Séna's avatar
      [FIX] sale_loyalty: order confirmation when 'Lock Confirmed Sales' is enabled · 950045a1
      Nshimiyimana Séna authored
      
      Bug:
      When the `sale_loyalty_taxcloud` is installed and 'Lock Confirmed Sales'
      is enabled, confirming a SO impossible.
      
      Setup:
      - install `sale_management` and `sale_loyalty_taxcloud`
      - activate Taxcloud (with test credentials)
      - enable 'Lock Confirmed Sales' in the settings
      
      Steps to reproduce:
      - create a quotation, fill the necessary fields and add a product
      - in the 'Other Info' tab, set the fiscal position to
        'Automatic Tax Mapping (TaxCloud)'
      - attempt to confirm the quotation
      
      You should be met with a message stating that you can't modify the tax
      on a locked order.
      
      Cause:
      This issue was introduced by odoo/enterprise@ea954b818b9582c2f63f103019b61d3fa73c7a29
      
      Enterprise PR: odoo/enterprise#40880
      
      opw-3289657
      
      closes odoo/odoo#120998
      
      Signed-off-by: default avatarNshimiyimana Serge Séna (sesn) <sesn@odoo.com>
      950045a1
    • paso-odoo's avatar
      [FIX] loyalty: fix missing loyalty product update issue · a3bee05e
      paso-odoo authored
      
      If applied, this commit will solve the issue of missing product issue while
      installing the following modules: loyalty_delivery, pos_loyalty, sale_loyalty,
      website_sale_loyalty
      
      Steps to produce:
      - Install loyalty module.
      - Go to 'Products' or 'Product Variants'.
      - Delete the product 'Gift Card'.
      - Now install the 'sale_loyalty' module.
      
      This commit will raise an userError while deleting the loyalty products.
      
      sentry - 4112536971
      
      closes odoo/odoo#119926
      
      Signed-off-by: default avatarParth Solanki (paso) <paso@odoo.com>
      a3bee05e
    • Ivan Yelizariev's avatar
      [FIX] event: properly handle non-existent template · c61a8fbb
      Ivan Yelizariev authored
      This commit modifies `execute` method to avoid `MissingError` on reading
      `template_ref` field.
      
      `template_ref` is a Reference field, which may have id of a deleted record.
      
      https://github.com/odoo/odoo/blob/927890d0178c361ef8d80fe6a1ec2ffaefaf73fd/addons/event/models/event_mail.py#L53
      
      Method `execute` is used by cron.
      
      https://github.com/odoo/odoo/blob/fba13477843d4d36e3e7a9ddd4b0812c9726e20c/addons/event/data/ir_cron_data.xml#L4-L8
      https://github.com/odoo/odoo/blob/927890d0178c361ef8d80fe6a1ec2ffaefaf73fd/addons/event/models/event_mail.py#L247-L256
      
      Getting the `MissingError` means blocking processing the whole batch of tickets.
      
      Fix it by ignoring such tickets and logging a warning
      
      https://online.sentry.io/issues/4089773378
      
      
      
      closes odoo/odoo#118901
      
      Signed-off-by: default avatarIvan Elizaryev (iel) <iel@odoo.com>
      c61a8fbb
    • Arthur Detroux (ard)'s avatar
      [IMP] website_mass_mailing: improve the newsletter block test · f7465d0f
      Arthur Detroux (ard) authored
      
      Prior to this commit, starting this test individually would not work as
      the admin user is subscribed to the mailing list used during the test.
      
      The reason the test has passed our test suite is because on runbot the
      `mass_mailing_sms` module is installed, which adds a new mailing list to
       which the admin user is not subscribed.
      
       This commit changes the test to always ensure that the admin is not
       subscribed to any newsletter, making the test a bit more robust.
      
      closes odoo/odoo#118869
      
      Signed-off-by: default avatarOutagant Mehdi (mou) <mou@odoo.com>
      f7465d0f
    • Chong Wang (cwg)'s avatar
      [FIX] mail: reset template translation · 43afdc20
      Chong Wang (cwg) authored
      
      Before this commit:
      when reset template, the strategy is
      1. write the template value from the data file with_context(lang=None)
        (some legacy translations may be kept, if their en_US values were not changed)
      2. use the translations in the po file to override current translations
      But when a term is not translated in the po file
      (for example, all en_UK terms, since we don't have en.po),
      the old translation of the term cannot be overridden and reset
      
      After this commit:
      Thanks to the new feature introduced in #109858, the translation for a term can
      be voided before the step 2
      As a result, translations for model translated fields can be correctly reset
      
      opw-3241014
      
      closes odoo/odoo#116780
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      43afdc20
    • Romain Derie's avatar
      [FIX] website: don't show website info page in sitemap if disabled · 3e76a056
      Romain Derie authored
      This commit is simply conditionning the presence of the /website/info
      page in the sitemap so it's removed from it if you disable/remove the
      website info view.
      It will help SEO wise to not have error page in it.
      
      Also note that it has always been in sitemap, even if marked
      excplicitely since [1].
      
      [1]: https://github.com/odoo/odoo/commit/e19227d3ba9c9296bfc0c221ac70a863a571b9a6#diff-d41b2dc5ff6fd6a303373f86e1af97d055db315ccc431749b4ffac1488dea119L200
      
      
      
      opw-3255831
      
      closes odoo/odoo#120736
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      3e76a056
    • Hamza (hisl)'s avatar
      [FIX] web : change the white space of button-box to nowrap · ec642f9c
      Hamza (hisl) authored
      
      Steps to reproduce the issue:
      
      1. Go to any of the contacts with partner ledger option.
      2. Make the browser window small and observe the text in the partner ledger button box.
      
      Current Behaviour:
      The text in the button box does not get ellipsized, rather stays the same and may get out of the button box if the box becomes smaller
      
      Desired Behaviour:
      The text in the button should be ellipsized
      
      OPW-3266235
      
      closes odoo/odoo#119531
      
      Related: odoo/enterprise#40224
      Signed-off-by: default avatarAdrien Dieudonné (adr) <adr@odoo.com>
      ec642f9c
    • Thomas Lefebvre (thle)'s avatar
      [FIX] project_purchase, sale_project: default currency · 90512da6
      Thomas Lefebvre (thle) authored
      
      In the multi-company context, it is possible to create
      an analytic account without a defined company.
      The result is that the analytic account
      will not have a currency.
      
      A traceback will be triggered when calculating the
      profitability of a project
      (for example by changing its status when
      the 'sale_timesheet' module is installed).
      
      Solution:
      Use the currency of the project.
      
      Introduced by:
      68b4ea69
      
      opw-3292417
      
      closes odoo/odoo#120885
      
      Signed-off-by: default avatarXavier Bol (xbo) <xbo@odoo.com>
      90512da6
    • Victor Piryns (pivi)'s avatar
      [FIX] sale_project: confirm SO w/ milestones on SO with set project_id · 811bbf05
      Victor Piryns (pivi) authored
      
      Current behaviour:
      If we confirm an SO with a service with a delivery based on
      milestones, that creates both a project & task, and we set a project
      on the SO, the project for the milestone should be the one set on
      the SO, a ValidationError is raised for missing project on milestone.
      
      Expected behaviour:
      No ValidationError, the milestone should use the project set on the SO.
      
      Steps to reproduce:
      - Install Sales, Project
      - Check Milestones in Settings
      - Create a new project.
      - Create a new product, type service, delivery milestones, on
        confirm create project & task
      - Create an SO, add a line with the new product.
      - Set a our new project on the SO (In the "Other Info" tab)
      - Confirm the SO, you are met with a ValidationError.
      
      Reason for the problem:
      Since we are not *generating* a new project, `project_id` on the
      sale_order_line is empty, and we base ourself on it when creating
      the milestone in `_generate_milestone`, leading to the non-null
      validation error, because this field is `required=True` on milestones.
      
      Fix:
      When creating the milestone in `_generate_milestone`, if the line
      doesn't have a `project_id`, we take the one set on the order.
      We don't set the `project_id` to the *determined_project*
      (`_determine_project`) at line 305
      (after: `so_line._timesheet_create_task(project=project)`) because
      the `project_id` on the sale_order_line is marked as "Generated
      Project", which is not true in our case (the project isn't generated
      by the sale order line).
      
      Affected versions:
      - 16.0
      - saas-16.1
      - saas-16.2
      - master
      
      opw-3236235
      
      closes odoo/odoo#120434
      
      Signed-off-by: default avatarXavier Bol (xbo) <xbo@odoo.com>
      811bbf05
    • Guillaume (gdi)'s avatar
      [FIX] website_blog: prevent the use of blog sidebar select · 7e8e12c4
      Guillaume (gdi) authored
      
      Before this commit, the user could use the blog publication date
      selector situated in the blog sidebar even when he was in edit mode.
      This date selector should behave like a link, it should not work in edit
      mode. This commit prevents the user from using this selector while he is
      in edit mode.
      
      Steps to reproduce the bug:
      - Go to /blog
      - Edit the page
      - Enable the sidebar option
      - Click on the select in the sidebar
      - Click on a date
      
      => An error is displayed.
      
      task-3213851
      
      closes odoo/odoo#119785
      
      Signed-off-by: default avatarOutagant Mehdi (mou) <mou@odoo.com>
      7e8e12c4
    • Nshimiyimana Séna's avatar
      [FIX] account: prevent sequence number gap in Accounting Firms mode · 0e6e0053
      Nshimiyimana Séna authored
      
      ### Summary
      
      When modifying the accounting date of an invoice in Accounting Firms
      mode, Odoo always generates a new invoice sequence number. This behavior
      can introduce gaps in the sequences.
      
      ### Reproduction Steps
      
      1. Activate Accounting Firms mode.
      2. Create a new Draft Invoice and save it.
      3. Create a second Draft Invoice and save it.
      4. Modify the accounting date of the first invoice and save it.
      5. Observe that the first invoice's invoice sequence number is updated
         to the next sequence, creating a gap.
      
      ### Fix
      
      Recompute the sequence only when the new date falls into a different
      fiscal year.
      
      opw-3164537
      
      closes odoo/odoo#117007
      
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      0e6e0053
    • Jay Savaliya's avatar
      [FIX] base: partner creation from name · 98aca8f7
      Jay Savaliya authored
      In  https://github.com/odoo/odoo/commit/6371565e6933d6ede88fa85992f4acbc2cb5327b
      
       we expect required fields to throw  ValidationError when not set,
      we thus correct res_partner to raise that error when the email is implicitly
      required, so after this commit if we can try to create a new partner from the
      name directly then It will give a validation error and wizard will open for the
      creation of a new partner.
      
      Task-3297388
      
      closes odoo/odoo#120638
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      98aca8f7
    • Laurent Smet's avatar
      [FIX] account: Fix cascading computation leading to wrong move_name computation · 33198b34
      Laurent Smet authored
      
      When l10n_mx_edi is installed and a payment is posted, the move_name field on account.move.line
      being a related to move_id.name is not well computed.
      That is because posting a move trigger the computed field in a protected mode due to `flush_recorset`.
      This mode prevents any computed field to be recomputed twice.
      This flush triggers `_compute_name` calling `sequence_mixin`, itself doing another `flush_recorset`.
      This extra flush triggers `_compute_l10n_mx_edi_cfdi_uuid` that access to `move.payment_id.reconciled_bill_ids`.
      This access to this field triggers its recomputation and then, `_compute_stat_buttons_from_reconciliation` is called.
      This method does `self.env['account.move.line'].flush_model()` that force the computation of `move_name` to `/`.
      `sequence_mixin` assigns the new `name` to the journal entry but `move_name` is not recomputed due to the
      protected environment.
      
      closes odoo/odoo#121064
      
      X-original-commit: 147427bb
      Signed-off-by: default avatarOlivier Colson (oco) <oco@odoo.com>
      Signed-off-by: default avatarLaurent Smet <las@odoo.com>
      33198b34
  5. May 10, 2023
    • flvr-odoo's avatar
      [FIX] web : adding csp for automated scanner · 70a54ac6
      flvr-odoo authored
      
      Due to numerous client complaining about their automated scanner not
      seeing the CSP header on the http request, we add it for good mesures
      
      opw-2793379
      
      closes odoo/odoo#121057
      
      Signed-off-by: default avatarVranckx Florian (flvr) <flvr@odoo.com>
      70a54ac6
    • Nicolas Lempereur's avatar
      [FIX] base: invisible groups default on user creation · 9deb1e6a
      Nicolas Lempereur authored
      
      Since 16.0's 0501bbd6 fields with groups are now removed from the view
      instead of being set as invisible.
      
      Scenario:
      
      - template user has group "Access to export feature"
      - create a new user while being in debug=0 mode
      - save
      
      => the users don't have the group "Access to export feature" set,
      because the corresponding field is not in the view. If the same scenario
      was done in debug=1 mode, we would get the group set.
      
      Solution: duplicate the field that are inside base.group_no_one section
      and have them be invisible if someone is not in debug mode.
      
      note: before the fix, added assert fails because there is missing groups
      in the newly created user.
      
      closes odoo/odoo#120310
      
      Note: issue observed when working on another ticket
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      9deb1e6a
Loading