Skip to content
Snippets Groups Projects
  1. Jun 15, 2023
    • Victor Feyens's avatar
      [FIX] sale: multi-company conflict at reinvoicing · 126ef649
      Victor Feyens authored
      
      Since d88409e8, taxes from different companies
      are forbidden on sale.order.line records (which is the expected behavior).
      
      Nonetheless, this highlighted some flows where the taxes were not properly
      set/recomputed, especially re-invoicing, which is fixed by the current commit.
      
      Fixes #123675
      
      closes odoo/odoo#124483
      
      Signed-off-by: default avatarVictor Feyens (vfe) <vfe@odoo.com>
      126ef649
    • Mayurrajsinh Rathod's avatar
      [FIX] website_slides: prevent copy of a attendee in course · 0991c757
      Mayurrajsinh Rathod authored
      
      Before this commit:
      
      Duplicating the contact that is linked to an attendee of a course also
      creates a copy of an attendee as well.
      
      After this commit:
      
      It does not create duplicate attendee in course.
      
      Task-3253983
      
      closes odoo/odoo#125148
      
      X-original-commit: 13f03853
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      0991c757
    • Robin Lejeune (role)'s avatar
      [FIX] web_editor: adapt options' icons in RTL · 53ef2e1a
      Robin Lejeune (role) authored
      
      The triangle pointing towards an option in the editor is pointing
      right. In a RTL setting, this does not make sense and should be
      mirrored.
      
      task-3284274
      
      closes odoo/odoo#125076
      
      X-original-commit: f65a9bff
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      53ef2e1a
    • Eric Antones's avatar
      [FIX] l10n_ch: a QR report is generated although the option is disabled · 14d78f96
      Eric Antones authored
      
       This takes into account the option that allows to disable/enable the QR file generation
      
       Closes #85283
      
      closes odoo/odoo#125038
      
      X-original-commit: 7b433492
      Signed-off-by: default avatarJohn Laterre (jol) <jol@odoo.com>
      14d78f96
    • David Monjoie's avatar
      [FIX] web_editor: fix html table paste tests · 63123733
      David Monjoie authored
      
      Those tests happened to fail nondeterministically for no apparent
      reason and with multiple different wrong tests results.
      
      Some of those wrong results were particularly striking like having
      completely empty contents, while others looked more like some kind
      of race condition.
      
      Aiming to kill two birds with one stone, I moved the html contents
      of the tests into their very own test file so that no asynchronous
      file loading on the server is done during testing at runtime anymore.
      
      closes odoo/odoo#125020
      
      Signed-off-by: default avatarDavid Monjoie (dmo) <dmo@odoo.com>
      63123733
    • Hamza (hisl)'s avatar
      [FIX] hr_timesheet : update effective_hours for progress_hours computation · 12bdb8e0
      Hamza (hisl) authored
      
      Steps to reproduce the issue:
      
      Add a project and create a task with a timesheet in it
      set the allocated hours to 00:03
      add a line in the timesheet with hours spent 00:03
      Current Behaviour:
      The percentage calculated would be 96%, even though the time allocated and time spent are equal.
      
      Desired Behaviour:
      The percentage should be 100 as both values i.e. time spent and time allocated are equal.
      
      This is happening because effective_hours value is being rounded off to 2 decimal places, and is not accurate enough to compute the progress_hours.
      
      Here, I have used the same line, that is used to compute effective_hours, to compute the task_total_hours but without rounding off. This will make the calculate more precise and accurate.
      
      OPW-3270858
      
      closes odoo/odoo#124892
      
      X-original-commit: 3b1316e7
      Signed-off-by: default avatarXavier Bol (xbo) <xbo@odoo.com>
      12bdb8e0
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] point_of_sale: duplicate internal reference in invoice · 4fbcbd2b
      Andrea Grazioso (agr-odoo) authored
      
      Have a product with internal reference
      Open POS session
      Create an order with the product
      Invoice
      
      Issue: Internal reference is shown twice on the invoice line
      
      opw-3343170
      
      closes odoo/odoo#124620
      
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      4fbcbd2b
    • Benoit Socias's avatar
      [FIX] *: adapt front-end HTML field sanitization · 6b800ba3
      Benoit Socias authored
      
      *: account, event_booth, gamification, hr, project,
         website_event_track, website_slides
      
      HTML fields that appear in the front-end can be modified using the
      website editor. Some of them are sanitized in a way that breaks the
      behavior of snippets that can be dropped within them.
      
      This commit adapts the sanitization of those HTML fields so that the
      snippets behave as expected.
      
      opw-3267589
      
      closes odoo/odoo#119543
      
      Related: odoo/enterprise#40211
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      6b800ba3
    • Nguyen Viet Phuong's avatar
      [IMP] account: remove label on the views avoid same label. · 9f213748
      Nguyen Viet Phuong authored
      
      closes odoo/odoo#125132
      
      Signed-off-by: default avatarBrice Bartoletti (bib) <bib@odoo.com>
      9f213748
    • Valentin Vallaeys (vava)'s avatar
      [FIX] payment: fallback on transaction partner parent name · 505109d4
      Valentin Vallaeys (vava) authored
      
      In a Sale Order, it is possible to select an invoice address without a
      name. The partner of the transaction does not have a name, which leads
      to a traceback when trying to split the name.
      
      The idea is to force the name to be filled, with a fallback on the
      partner' parent name.
      
      OPW-3338406
      
      closes odoo/odoo#124825
      
      Signed-off-by: default avatarAntoine Vandevenne (anv) <anv@odoo.com>
      505109d4
    • Saurabh Choraria's avatar
      [FIX] event_sms: check model of sms template · a5f345a2
      Saurabh Choraria authored
      
      When notification type is set as sms we need to check whether the template
      which is referenced is coming from a correct model or not.
      
      Applying this commit will fix this issue.
      
      sentry-4195133685
      
      closes odoo/odoo#122026
      
      Related: odoo/enterprise#41322
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      a5f345a2
    • arsi's avatar
      [FIX] point_of_sale: add outstanding accounts set in payment methods · c002e6bf
      arsi authored
      
      For a `pos.payment.method`, it is possible to define an outstanding
      account, but if this account is not defined as an outstanding account in
      the company settings nor in the journal, the payment will not be
      considered in the bank reconciliation, nor in the bank reconciliation
      report.
      
      Steps to reproduce (demo-data with POS and Accounting installed):
      -go to 'Point of Sale/Configuration/Payment Methods'.
      -click on the "Bank" payment method.
      -add an 'Outstanding Account' which is not the default outstanding
       account of the company, nor an outstanding account of an
       `account.payment.method.line`.  So for example "Liquidity Transfer".
      -then open a POS session, sell smth, pay with the Bank method, validate,
       then close the session.
      -If you go to 'Accounting/Customers/Payments', you can see that an
       `account.payment` has been created, with the outstanding account being
       "Liquidity Transfer".
      ->It is not possible to reconcile that payment with a
       `account.bank.statement.line`. If you go to the accounting dashboard,
       then click the reconcile button of the journal "Bank", then on a
       statement line with no partner, you will not see the outstanding line
       of that payment.
      ->If you open the 'Reconciliation Report' of the journal "Bank"
       (accessible from the journal dashboard, by clicking the options of the
       journal), the line will not show in the 'Outstanding Receipts'
       category.
      
      FIX:
      Override the `_get_journal_inbound_outstanding_payment_accounts`
      method of `account.journal`, to add the accounts from each
      `pos.payment.method` linked to the journal.  Using the field
      `pos_payment_method_ids` from `account.journal`.
      
      opw-3271090
      
      closes odoo/odoo#121158
      
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      c002e6bf
    • Benjamin Vray's avatar
      [FIX] website: fix the scrolling of table of content in website slides · b9324016
      Benjamin Vray authored
      
      Steps to reproduce the bug:
      
      - Install the Website Slides module.
      - Got to the /slides page.
      - Click on a course.
      - Click on the "Add Content" button.
      - Choose "Web Page" in the modal.
      - Once in edit mode, drag and drop a "Table of Content" snippet onto the
      page.
      - Save the page.
      - Scroll the page and observe that the navbar items are updated as you
      scroll.
      - Click on the "Fullscreen" button.
      - Bug: When scrolling the page, the navbar items are no longer updated
      as you scroll.
      
      This commit fixes the issue by detecting the scrolling element by
      traversing up the ancestors from the 'table of content' snippet, instead
      of using the 'getScrollingElement' function, which always returned the
      '#wrapwrap' when a Website Slides page is in fullscreen.
      
      opw-3302118
      
      closes odoo/odoo#124893
      
      X-original-commit: 1ac274c3
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      Signed-off-by: default avatarVray Benjamin (bvr) <bvr@odoo.com>
      b9324016
    • Benoit Socias's avatar
      [FIX] web_editor: fix border width options on zoomed browser · 74dceaf8
      Benoit Socias authored
      
      When the browser is zoomed, the value of the `border-width` CSS
      properties obtained through `getComputedStyle` are impacted by the
      zoom. Because of this, entering a "10px" border in a Chrome zoomed at
      125% turns it into "9.6px" when leaving the input field.
      
      This commit neutralizes the zoom effect by rounding the value up.
      The rounding operation was empirically determined by observing values,
      see table below.
      
      When zoomed out this does not always work: e.g. at 50% zoom, a value
      of 11px becomes 10px. But zooming out is an unxpected use case, that
      situation is therefore not handled by this fix.
      
      Observed values of the border-width property:
      Set value => `getComputedStyle`
      ```
      Value  Chrome 125%  Firefox 120%
        1px        0.8px     0.83333px
        2px        1.6px     1.66667px
        3px        2.4px     2.50000px
        4px        4.0px     3.33333px
        5px        4.8px     5.00000px
        6px        5.6px     5.83333px
        7px        6.4px     6.66667px
        8px        8.0px     7.50000px
        9px        8.8px     8.33333px
       10px        9.6px    10.00000px
       11px       10.4px    10.83333px
       12px       12.0px    11.66667px
      ```
      
      Steps to reproduce:
      - Drop a "Text - Image" block.
      - Select the text column.
      - Zoom with ctrl+mouse wheel or ctrl-plus.
      - Set a 10px border.
      - Leave input field.
      
      => Border option field displayed a different size.
      
      task-3172235
      
      closes odoo/odoo#125068
      
      X-original-commit: 6398b0c7
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      Signed-off-by: default avatarBenoit Socias (bso) <bso@odoo.com>
      74dceaf8
    • Thomas Lefebvre (thle)'s avatar
      [FIX] website_hr_recruitment: prevent applying for unpublished job · 547355a5
      Thomas Lefebvre (thle) authored
      
      Issue:
      ------
      When we have the link to the form to apply for a job,
      even if the job is not published, we can still apply.
      
      Solution:
      ---------
      Check that the job is published before the creation of the record
      in the `website_form_input_filter`.
      
      opw-3331717
      
      closes odoo/odoo#124987
      
      X-original-commit: 508f373f
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      Signed-off-by: default avatarLefebvre Thomas (thle) <thle@odoo.com>
      547355a5
  2. Jun 14, 2023
  3. Jun 13, 2023
  4. Jun 12, 2023
    • Thomas Lefebvre (thle)'s avatar
      [FIX] hr_holidays: correct "Absent Today" filter · 818bda77
      Thomas Lefebvre (thle) authored
      
      Steps to reproduce:
      -------------------
      Create leave for an employee on today's date
      with a type of leave that does not require
      a second approval.
      Approve the leave.
      
      Issue:
      ------
      Employee is not absent today.
      
      Cause:
      ------
      The filter waits until the `state` field
      is set to `validate1`.
      However, the leave has a `state` field
      with a value equals to `validate`.
      
      Solution:
      ---------
      The "Absent Today" filter must use `state` field
      equals to `validate`.
      
      opw-3339589
      
      closes odoo/odoo#124639
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      818bda77
    • bve-odoo's avatar
      [FIX] account_edi_ubl_cii: allow none-admin to create xml · 9ae7fdb8
      bve-odoo authored
      
      Steps to reproduce on fresh 15.0:
      Connected as Admin:
      1. Install l10n_lu_peppol_id,
      2. Modify the field 'edi_format_ids'
      on a journal (here will be on customer invoices)
      to the value 'Peppol BIS Billing 3.0'
      3. Invoice a product using this journal and confirm it.
      > The XML will be generated and attached to the move.
      The mimetype of this attachement will be application/xml
      
      If you do the same step 3 with a user that does not have
      the write access right to the model ir_ui_view
      (see _check_contents in base), the attachment will be
      of type text/plain.
      
      The issue that this trigger, is that the email going out
      will have the wrong Content-Type for the attachments.
      Which will lead to incorrect management on other provider.
      
      We can bypass the security here as the XML is generated
      by Odoo.
      
      opw-3263542
      
      closes odoo/odoo#124507
      
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      9ae7fdb8
    • Daniel Blanco's avatar
      [FIX] l10n_cl: enable purchase invoice for foreign vendors · 64f81cf7
      Daniel Blanco authored
      
      Description of the issue/feature this PR addresses:
      Before SII resolution 46 from 2022, the only documents for foreign vendors were 110 111, and 112.
      After that, SII and accountants are indicated as a practice to issue purchase invoices (Factura
      de compra 46) to foreign vendors in order to pay the vat taxes, mainly for digital services.
      
      Current behavior before PR:
      It is not allowed by validation restrictions to issue this document type to foreign vendors
      
      Desired behavior after PR is merged:
      the validation release the restriction for document type 46
      
      closes odoo/odoo#124379
      
      X-original-commit: ee2485fd
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      Co-authored-by: default avatarDaniel Blanco <daniel@blancomartin.cl>
      Co-authored-by: default avatarJosé Moreno Hanshing <jose@blancomartin.cl>
      64f81cf7
    • Guillaume (gdi)'s avatar
      [FIX] website_forum: enlarge answer textarea · faaf76c0
      Guillaume (gdi) authored
      This commit permits to enlarge the answer textarea in the forum.
      
      Steps to reproduce the "issue" resolved by this commit:
      - Go to /forum
      - Click on a thread
      - Click on "Answer"
      
      => The textarea is too small to write a long answer.
      
      task-2865782
      
      closes odoo/odoo#124590
      
      X-original-commit: https://github.com/odoo/odoo/commit/d5c985e8f2afcdac766e756a1f045c6229a59f1e
      
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      Signed-off-by: default avatarDieleman Guillaume (gdi) <gdi@odoo.com>
      faaf76c0
    • Guillaume (gdi)'s avatar
      [FIX] website_forum: permit to post an image without text · 048c6b77
      Guillaume (gdi) authored
      In the website forum, we checked that the post content is not empty
      before posting a post or an answer. Before this commit, it was just a
      verification that the content is not an empty string.
      Users are also able to post an image and we want to allow them to create
      a post or an answer with only an image. This commit changes the
      verification to check if the content is empty or if it only contains
      images.
      
      Steps to reproduce the issue resolved by this commit:
      - Go to the website forum
      - Create a new post
      - Set a title
      - Add an image as description
      - Click on "Post Your Question"
      
      => The post is not created because the content is considered as empty.
      
      task-2865782
      
      X-original-commit: https://github.com/odoo/odoo/commit/2c409278a3d2d67efddebfe71b36a612b2ecb971
      Part-of: odoo/odoo#124590
      048c6b77
    • Yolann Sabaux's avatar
      [FIX] l10n_in_upi: prevent qr code on bills · f0602853
      Yolann Sabaux authored
      
      Steps to reproduce:
      1. Create Indian Company Database
      2. Install Accounting module, Install one more app " Indian - UPI " 
      3. Go to Setting > General Settings > Company information update > fill details in "UPI Id" field with 7874353637@paytm
      
      Issue
      Create and confirm vendor bill and Print the same at a bottom you will see QR code of our company UPI id.
      
      And we don't want the qr-code to be printed on a bill.
      
      opw-3284324
      
      closes odoo/odoo#123859
      
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      f0602853
    • Stanislas Gueniffey's avatar
      [FIX] web_editor: do not remove default styles · 0c097311
      Stanislas Gueniffey authored
      
      Previously, when copy-pasting HTML with styles on styleable tags, those
      styles could still be removed by the editor if they had a default value.
      This was supposed to be a way to keep the DOM clean and lighter.
      
      However, styles with default values still serve a purpose when
      overriding non-default values inherited by their parents. Therefore,
      removing them was a conceptual mistake.
      
      One example in the editor where this purpose can be served is in
      tables where spans can override the style of the cell or parent span.
      
      This commit ensures we no longer remove style attributes because of
      their default value.
      
      Task-3332955
      
      closes odoo/odoo#121862
      
      Signed-off-by: default avatarDavid Monjoie (dmo) <dmo@odoo.com>
      0c097311
    • Preksha Chouhan's avatar
      [FIX] account: prevent traceback while no payment method is selected · 1e242de5
      Preksha Chouhan authored
      
      When we create a journal and it gets one of the payment method's value as
      False and we input another payment method. it will give an error with the
       message -
      
      'sequence item 0: expected str instance, bool found'
      
      Steps to Produce:-
      
      1. Go to Accounting then configuration
      2. Click on 'Journals' under Accounting
      3. Create or click on exiting one
      4. Input all required fields and select 'Type' as Cash or Bank
      5. Delete value of one of either incoming payments or outgoing payments
      6. Click on save
      7. Remove name of one of the payment method and input other
      
      Trace-back will be generated.
      
      Applying these changes will resolve this issue.
      
      closes odoo/odoo#119787
      
      Signed-off-by: default avatarLaurent Smet <las@odoo.com>
      1e242de5
    • Om Rabara's avatar
      [FIX] website: prevent typeerror when 'url_from' field is empty · 1e31deb1
      Om Rabara authored
      
      TypeError: expected string or bytes-like object
      
      This error occurs when the 'url_from' field is left empty during website rewrite
      To reproduce this issue, follow these steps:
      1. go to website ->  configuration -> redirects
      2. create a new record -> select 308 redirect / rewrite in action
      3.  keep 'url from' empty and put any value in 'url to' such as '/'
      4.  Click on the save button, and this error message will be displayed.
      
      After applying this commit will fix this issue.
      
      task-3346588
      
      sentry-4229658026
      
      closes odoo/odoo#124510
      
      X-original-commit: 26fa923f
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      1e31deb1
    • Denis Ledoux's avatar
      [FIX] base_import_module: restore module icon · 12ccfcf8
      Denis Ledoux authored
      
      The revision dd3f918c
      introduced a regression:
      it was no longer possible to set an icon in the import module,
      and if no icon is provided,
      the icon should fall back to the base module icon,
      which wasn't the case either.
      
      In this last case, it even leaded to a crash:
      ```
      File "/home/odoo/src/14.0/odoo/odoo/addons/base/models/ir_module.py", line 251, in _get_icon_image
          with tools.file_open(path, 'rb') as image_file:
        File "/home/odoo/src/14.0/odoo/odoo/tools/misc.py", line 176, in file_open
          return _fileopen(name, mode=mode, basedir=base, pathinfo=pathinfo, basename=basename, filter_ext=filter_ext)
        File "/home/odoo/src/14.0/odoo/odoo/tools/misc.py", line 211, in _fileopen
          raise ValueError("Unknown path: %s" % name)
      Exception
      ValueError: Unknown path: /base/static/description/icon.png
      ```
      
      opw-3340652
      
      closes odoo/odoo#124471
      
      X-original-commit: 77939849
      Signed-off-by: default avatarDenis Ledoux (dle) <dle@odoo.com>
      12ccfcf8
Loading