Skip to content
Snippets Groups Projects
  1. Jun 15, 2023
    • 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
    • Benoit Socias's avatar
      [FIX] website, *: wait images when setting masonry images wall layout · 10779fe5
      Benoit Socias authored
      *: web_editor
      
      During the masonry layout calculation of the images wall snippet, the
      image height is used to determine into which column each image is
      inserted. Their height is zero until they are actually loaded. Because
      of this, the column into which an image is inserted can be wrong.
      
      This becomes more obvious in 16.0 because since [1] the image selection
      is lost when moving it within an Image Wall because it is replaced by a
      clone when using masonry mode.
      
      This commit makes sure that the images are loaded before taking their
      height into account when building the masonry layout.
      
      This involves two changes:
      
      1. By awaiting `wUtils.onceAllImagesLoaded(this.$target)` after the
      insertion of each cloned image, we are sure that the reached height of
      each column is available before deciding where to insert the next image.
      
      2. Before re-selecting the previously selected image, we need to be
      sure that it is loaded. Therefore we keep track of the last masonry
      layout operation and await for it. This way, we rely on the await of
      the last image as described in point 1.
      
      Additionally, as of 16.0, there is a race condition with
      `snippet_option_update`: in some situations, `notify` is called before
      `snippet_option_update` is completed, and before the masonry layout is
      applied.  To make sure it is completed, the whole notify is run within
      the mutex through a `snippet_edition_request` event.
      
      To uphold the stable policy, making `mode` async will only be done in
      master.
      In stable, a new `_modeWithImageWait` is added which is called only
      for the situations that causing an issue, and which enables the fix
      of the masonry layout.
      In 14.0, it is used when computing the layout from `start` and
      `addImages`.
      In 16.0, it is also used in `notify` when images are removed or moved
      around - because masonry clones the images.
      In master, it is always applied.
      
      Additionally, this commit also rounds the computed size of images inside
      the masonry layout calculations.
      
      Steps to reproduce:
      - Drop an Images Wall.
      - Add four images, the first one being taller than the others.
      
      => The fourth image sometimes appeared below the tall image.
      
      [1]: https://github.com/odoo/odoo/commit/0d43aec24baad6420e0fe150a9c19d33c0b74198
      
      
      
      task-2990053
      
      closes odoo/odoo#124302
      
      X-original-commit: 2814c84e78e68e277973b44408a7ba7965f178ae
      Signed-off-by: default avatarArthur Detroux (ard) <ard@odoo.com>
      Signed-off-by: default avatarBenoit Socias (bso) <bso@odoo.com>
      10779fe5
    • Benoit Socias's avatar
      [FIX] website: neutralize sub-pixel height difference in images wall · d0747678
      Benoit Socias authored
      Inside the Images Wall snippet, images are dispatched to columns
      depending on the height already reached by each column. This computation
      relies on a sub-pixel height which leads to a confusing behavior.
      
      This commit rounds the sub-pixel height to a visible pixel height to
      avoid the confusion.
      
      Steps to reproduce:
      In the default images of the Images Wall snippet, the third image (sign)
      is one pixel taller than the other ones.
      - Drop an Images Wall snippet.
      - In 14.0, upload the default images from v15.0.
      - Select the "sign" image.
      - Move it to the previous position.
      
      => The sixth image (wine glass) moved as well.
      
      task-2990053
      
      X-original-commit: 1fc45be924e904dc595af61e0845b91cc5d24a49
      Part-of: odoo/odoo#124302
      d0747678
    • Saurabh Mishra's avatar
      [FIX] survey: prevent question deletion when session in progress · cee9e1f4
      Saurabh Mishra authored
      
      If we create a survey and  start a new session. When the session state is in
      progress and If the survey creater deletes a question and participant tries to
      answer the deleted question and submits it then participant will face the issue
      of 'False is not in list'.
      
      This commit will raise an usererror if the survey creater tries to delete the
      question when the survey session is in progress.
      
      sentry-4113791861
      
      closes odoo/odoo#119943
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      cee9e1f4
    • Yolann Sabaux's avatar
      [FIX] l10n_fr: enable invoice name on each page · 0eaf116c
      Yolann Sabaux authored
      Steps to reproduce:
      - create an invoice with a certain number of items so that when printed there are multiple pages
      
      Issue:
      - the invoice name does not appear on each page
      According to the French legislation it is mandatory
      
      See https://entreprendre.service-public.fr/vosdroits/F31808
      
      
      
      Solution:
      - set a config parameter specifically for l10n_fr in stable
      - set it in account directly for Master
      To allow the footer of the invoice to contain the name (and therefore the number) of the invoice
      
      opw-3199906
      
      closes odoo/odoo#124509
      
      X-original-commit: 18e89e7d
      Signed-off-by: default avatarOlivier Colson (oco) <oco@odoo.com>
      Signed-off-by: default avatarYolann Sabaux (yosa) <yosa@odoo.com>
      0eaf116c
  5. Jun 11, 2023
  6. Jun 09, 2023
    • Saurabh Choraria's avatar
      [FIX] base: prevent traceback when icon file is not found · 4b022180
      Saurabh Choraria authored
      
      When user tries to import a module which does not consist of an icon and then
      when user tries to access that module the error occurs.
      
      Steps to reproduce:
      1. Install web_studio.
      2. Import a module(without icon) from apps > import module menu.
      3. Now search that module in apps and click on module info.
      4. The error will occur.
      
      Applying this commit will fix this issue.
      
      sentry-4206999375
      
      closes odoo/odoo#123210
      
      Signed-off-by: default avatarXavier Morel (xmo) <xmo@odoo.com>
      4b022180
    • William Henrotin's avatar
      [FIX] point_of_sale: use correct account in ship later pickings · 95cec6ea
      William Henrotin authored
      
      Commit 1e82e273 makes ship later option create additionnal account
      move line for Cogs at delivery validation. The issue is the accounts was
      not correct. The desire result should be the following for a product of
      cost 10, sale price 11 and 15% taxes.
      
       At PoS Closing                             | Debit | Credit
      -------------------------------------------------------------
      215000 Taxes 15%                            |  0.00 |   1.50
      200000 Pos account                          |  0.00 |  11.00
      600000 Expenses                             |  0.00 |   0.00
      101200 Account Receivable                   | 11.50 |   0.00
      110300 Stock interim (delivered)            |  0.00 |   0.00
      -------------------------------------------------------------
                                                  |       |
       At delivery validation (manually created)  |       |
      -------------------------------------------------------------
      110300 Stock interim (delivered)            |  0.00 |  10.00
      600000 Expenses                             | 10.00 |   0.00
      -------------------------------------------------------------
                                                  |       |
       At delivery validation (from stock layers) |       |
      -------------------------------------------------------------
      110100 Stock valuation                      |  0.00 |  10.00
      110300 Stock interim (delivered)            | 10.00 |   0.00
      
      closes odoo/odoo#123152
      
      Opw: 3324972
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      95cec6ea
    • William Henrotin's avatar
      [FIX] point_of_sale: apply cogs on delivery picking only · bdebbaee
      William Henrotin authored
      Commit 1e82e273 adds cogs account move lines for 'ship later'
      config at the picking validation. The issue appears if the delivery flow
      is in multiple steps. The account move lines will be created for each
      pickings.
      
      This commit ensure the last one actually create the aml only
      
      Opw: 3324972
      Part-of: odoo/odoo#123152
      bdebbaee
    • Loan (LSE)'s avatar
      [FIX] point_of_sale: prevent validating pending electronic payments orders · 74dbae6b
      Loan (LSE) authored
      
      Before this commit:
      
       1. Open a POS session configured with any terminal payment method
       2. Click on Payment, pick the terminal payment method
       3. Enter an amount
       4. Click on "Send" to send the amount to the terminal
       5. Click on "Validate" before the terminal returns anything
      =>
      The ticket is validated at $0.
      The actual amount is credited in the terminal but the cash closing does
      not contain this actual amount.
      
      After this commit:
      An error message appear if trying to validate such an order.
      The validate button is also grayed out (but can still be clicked).
      The pot file have also been updated
      
      Note: the issue will also happen in version 14.0, but as I am a bit
      afraid of the side effects that it might have (angry customers used to
      the previous way), I prefer to push it first to the customer version
      only. If I don't have echo of angry customers on this, I will do a
      backward port and validate the forward ports.
      
      opw-3292442
      
      closes odoo/odoo#122539
      
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      74dbae6b
  7. Jun 08, 2023
Loading