Skip to content
Snippets Groups Projects
  1. Aug 10, 2023
  2. Aug 09, 2023
  3. Aug 08, 2023
    • valen's avatar
      [FIX] l10n_es: changed name irpf24_rdc tax · e5e95f37
      valen authored
      
      closes odoo/odoo#131280
      
      X-original-commit: 4c9102e8
      Signed-off-by: default avatarBrice Bartoletti (bib) <bib@odoo.com>
      e5e95f37
    • Alejandro Mellado's avatar
      [CLA] Update Vauxoo's CLA adding alejandromellado · 89e16428
      Alejandro Mellado authored
      
      Incorporate Alejandro Mellado (alejandromellado) as Vauxoo's contributor.
      
      I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
      
      closes odoo/odoo#131178
      
      X-original-commit: 73ee076b
      Signed-off-by: default avatarMartin Trigaux (mat) <mat@odoo.com>
      89e16428
    • Saurabh Mishra's avatar
      [FIX] base: postprocess contents with proper mimetype · fade78ed
      Saurabh Mishra authored
      
      This error occurs when the user manually attempts to change the mimetype of the
      attachment, and then the base function `_postprocess_contents` tries to
      determine the type and subtype of the attachment.
      
      Error: `ValueError: not enough values to unpack (expected 2, got 1)`
      
      To address this issue, this commit introduces a check for the mimetype of the
      attachment before attempting to determine its type and subtype.
      
      sentry-4283372480
      
      closes odoo/odoo#128963
      
      Signed-off-by: default avatarJulien Castiaux (juc) <juc@odoo.com>
      fade78ed
    • Loan (LSE)'s avatar
      [FIX] hw_drivers: support for TM-U escpos printer models · f30085bf
      Loan (LSE) authored
      Before this commit:
      When printing a receipt with an epson printers models TM-U2X0 (like
      TM-U220), random characters will be printed instead of the receipt.
      
      This happened as a picture of the receipt is sent to the IoT box, but
      the TM-U2X0 models does not support all "Bit Image commands". We
      currently use the GS v 0 one which is not supported by this printer
      models. See:
      https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=94
      
      In addition, of that, the command itself is obsolete.
      
      After this commit:
      The support for another command "ESC *" is added which is not obsolete
      and supported by TM-U2X0 models.
      
      Notes:
       - Compared to "GS v 0", the receipt printed with "ESC *" is worst:
        - It take longer to print (5 seconds vs 1 second)
        - There is consistently some thin "empty white lines"
       - Most of the code is inspired from `python-escpos`:
       https://github.com/python-escpos/python-escpos/blob/master/src/escpos/escpos.py
      
      
      
      Due to the drawbacks, making it the default way to print would be a bad
      idea. As such, we can configure the mode (with other parameters) using
      particular name for the printer (which can be done by adding it manually
       with cups)
      
      opw-3351084,3341907
      
      closes odoo/odoo#126689
      
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      f30085bf
    • Nicolas Lempereur's avatar
      [FIX] mass_mailing: save codeview to style-inline · 5a5b28fd
      Nicolas Lempereur authored
      
      Scenario:
      
      - edit a mass mailing while in debug mode
      - switch to codeview
      - do a change
      - click on save
      
      Issue:
      
      The body_arch is updated (making it seems like our change are taken into
      account), but the body_html is not and the outdated version will be sent.
      
      Solution:
      
      With this change, when we commit the changes and have the codeview
      opened, we will first update the wysiwyg editable to the current
      codeview value, before updating body_html.
      
      related to opw-3103549
      
      closes odoo/odoo#119206
      
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      5a5b28fd
    • Arnold Moyaux's avatar
      [FIX] mrp: WO duration nondeterministic · cad75ac7
      Arnold Moyaux authored
      
      Usecase to reproduce:
      - Set operation time base on last workorder
      - Create 2 MO
      - On first MO, set 15min as duration
      - On second MO, set 10min as duration
      - Validate both MO at the same time
      - The duraction expected on the operation could be now 10 or 15min
      
      It happens because the search in the compute is only base on date.
      And when both MO are validated at the same time, it's not enough
      
      closes odoo/odoo#131169
      
      Signed-off-by: default avatarArnold Moyaux (arm) <arm@odoo.com>
      cad75ac7
    • Rahul Prajapati's avatar
      [FIX] mail: remove obsolete starred counter method · cbf590bf
      Rahul Prajapati authored
      `_get_starred_counter` method is obsolete now.
      So, there is no meaning in keeping it anymore.
      
      It's usecase has been removed by this PR
      https://github.com/odoo/odoo/pull/83777
      
      
      
      closes odoo/odoo#131039
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      cbf590bf
    • Ahmed Mohamed's avatar
      [FIX] hr_attendance: fix attendance report query · 7a55fb51
      Ahmed Mohamed authored
      
      closes odoo/odoo#130974
      
      Signed-off-by: default avatarSofie Gvaladze (sgv) <sgv@odoo.com>
      7a55fb51
    • Jinane Maksoud's avatar
      [FIX] account: avoid infinite loop when creating taxes of type 'group' · 8372a02f
      Jinane Maksoud authored
      
      When updating taxes, creation of taxes of type 'group' does not
      work correctly if either a child or the parent itself has been deleted.
      Indeed the creation of _generate_tax() method suppose that both the parent
      and the child needs to be created in the same batch while we can have
      databases where one of those already exists and will go in the 'update'
      and not 'creation' part of the script.
      
      closes odoo/odoo#130911
      
      X-original-commit: d20f2e2b
      Signed-off-by: default avatarOlivier Colson (oco) <oco@odoo.com>
      Signed-off-by: default avatarJinane Maksoud (maji) <maji@odoo.com>
      8372a02f
    • Walid's avatar
      [FIX] stock: return packages · 0923d6bb
      Walid authored
      
      Steps to reproduce:
      - Deliver an SN-tracked product with the Destination Package set (put in pack button also sets this).
      - Return that product without setting the Source Package (you can also click "put in pack" which will put the product in yet another pack).
      - This already results in two lines with the same SN in the same location, one with +1.00 and one with -1.00 quantity.
      - Deliver that product again and put in pack.
      - Now there's three lines with the same SN in the same location, two with +1.00 and one with -1.00 quantity.
      
      Bug:
      source Package isn't set bydefault when confirming the move_line
      we update the stock quantity for that lot_id and Package set to False
      the existing quantity has a Package set so it is filtered out and a new
      negative quantity is created
      
      Fix:
      set the source Package on the return
      
      opw-3179388
      
      closes odoo/odoo#129505
      
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      0923d6bb
    • Adrien Widart (awt)'s avatar
      [FIX] stock: ignore locations without storage category · 66c11acd
      Adrien Widart (awt) authored
      
      On a putaway rule, the "Having Category" condition is not always
      respected.
      
      To reproduce the issue:
      1. In Settings, enable:
         - Storage Locations
         - Storage Categories
      2. Create a Storage Category SC:
      3. Create two locations L1, L2:
         - Parent: WH/Stock
         - Type: Internal
         - L2 only:
           - Storage Category: SC
      4. Create a putaway rule:
         - When in: WH/Stock
         - Store to: WH/Stock
         - Having Category: SC
      5. Create one storable product
      6. Update its on hand quantity:
         - 1 product at L1
      7. Create a planned receipt R for one product
      8. Mark the receipt as Todo
      9. Click on 'Set Quantities'
      10. Open the detailed operations
      
      Error: The destination location is L1. The putaway rule has been
      applied without the storage category constraint: the destination
      location should be L2
      
      When applying the putaway rules, we first check if one of the
      relevant locations already contains that product. And, if it's the
      case, we use that location as destination location. However, we
      don't filter out the locations without the correct storage category.
      This explains why L1 is found and used.
      
      OPW-3437174
      
      closes odoo/odoo#130679
      
      Signed-off-by: default avatarArnold Moyaux (arm) <arm@odoo.com>
      66c11acd
  4. Aug 07, 2023
    • Aurélien (auma)'s avatar
      [FIX] web_editor: fix uneditable block when height > 10000px · 95fccaba
      Aurélien (auma) authored
      
      When applied, this commit will restore the edition of a block when
      the content has a height > 10000px.
      
      Steps to reproduce:
      1) Go to a runbot
      2) Go to a blog or on the homepage
      3) Enter edit mode
      4) Add some text in one bloc with a total height above 10000px
      5) The text will be uneditable on the top
      
      Current behavior:
      If the text is too important in one block (more than 10000px),
      the text will be uneditable
      
      Expected behavior:
      The text should be accessible and editable even if the block
      has too much content
      
      opw-3393570
      
      closes odoo/odoo#130926
      
      X-original-commit: 493d31a9
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      95fccaba
    • Ahmed Mohamed's avatar
      [CLA] 0xSaltyHash Signature · 47e5aebd
      Ahmed Mohamed authored
      
      closes odoo/odoo#131037
      
      X-original-commit: f6a996aa
      Signed-off-by: default avatarMartin Trigaux (mat) <mat@odoo.com>
      47e5aebd
    • stcc-odoo's avatar
      [FIX] website_sale: make website_sequence unique · cd245a17
      stcc-odoo authored
      
      Steps to reproduce:
      
      - Install website_sale
      - Go to website shop in the frontend
      	- Login, Edit
      	- Click on 3rd or 4th kanban item
      	- Push down
      
      Issue:
      
      The item goes to the end of the list instead of moving one element to
      the right/down. Pushing an element down searches for the next element
      with a higher `website_sequence` and places the current element right
      after, by switching their sequence values.
      
      Normally the logic works fine, but the problem arises when the
      `website_sale` module is installed, when records with
      `website_sequence = NULL` are set to the same default value, namely
      10000. Then, when an item with `website_sequence = 10000` is pushed
      down, it will skip many items, before finding one with a higher
      `website_sequence`.
      
      Solution:
      
      When updating records with `website_sequence = NULL`, assign an unique
      sequence to each one. We can set the `website_sequence` relative to the
      inverse of the id to ensure that the order on the shopping page remains
      the same as it was prior to the fix.
      
      opw-3318867
      
      closes odoo/odoo#131012
      
      X-original-commit: 51ac0092
      Signed-off-by: default avatarStefan-Calin Crainiciuc (stcc) <stcc@odoo.com>
      cd245a17
    • Lopes Marc (loma)'s avatar
      [FIX] website_slides: create new sections only once · a91a60b4
      Lopes Marc (loma) authored
      
      Bug to reproduce
      ----------------
      
      - Log in as admin
      - Go to the frontend page of a course
      - Click on 'Add Section'
      - Fill the form (name input)
      - Press 'Enter' or click on save button x times
      x sections with the same name will be created
      
      Specifications
      --------------
      
      Prevent the 'Add section' form being submitted multiple times in a row.
      
      task-3432418
      
      closes odoo/odoo#129907
      
      Signed-off-by: default avatarWarnon Aurélien (awa) <awa@odoo.com>
      a91a60b4
    • Julien Van Roy's avatar
      [IMP] account_edi_ubl_cii: UBL Bis 3 add support for Denmark · 34595c32
      Julien Van Roy authored
      Denmark is comprised in the EAS list but is not currently supported in
      Odoo. This commit makes UBL Bis 3 available for Danish companies.
      
      The schemeId "0184" corresponds to the "DIGSTORG" and is mandatory for
      Danish Suppliers (see: rule DK-R-014,
      https://docs.peppol.eu/poacc/billing/3.0/rules/ubl-peppol/DK-R-014/
      
      ).
      
      issue-130519
      
      closes odoo/odoo#130589
      
      X-original-commit: e4e2a28c
      Signed-off-by: default avatarLaurent Smet (las) <las@odoo.com>
      Signed-off-by: default avatarJulien Van Roy (juvr) <juvr@odoo.com>
      34595c32
    • Om Rabara's avatar
      [FIX] base: handle database.secret parameter while deletion · 6b8c2481
      Om Rabara authored
      
      An error occurs when the user attempts to delete the 'database.secret' record,
      either by following these steps:
      - Enable developer mode.
      - Go to Settings > Technical > System Parameters.
      - Select the 'database.secret' record and attempt to delete it.
      
      Or when the user tries to update the key for the 'database.secret' record using
      the following steps:
      - Open the 'database.secret' record.
      - Update the value of the key field.
      -  Save the record.
      - The server will stop running and not be accessible.
      
      Error: ValueError: CSRF protection requires a configured database secret
      
      sentry - 4291267997
      
      closes odoo/odoo#128751
      
      X-original-commit: 6d19abba
      Signed-off-by: default avatarJulien Castiaux (juc) <juc@odoo.com>
      6b8c2481
    • mehjabinfarsana's avatar
      [FIX] hr_expense: remove quick_create from expense report kanban view · 650542c7
      mehjabinfarsana authored
      
      before this commit, on expense report kanban view
      after adding group by status, it allows the
      to quick create expense report in approved
      status.
      
      after this commit, quick create is disabled
      
      closes odoo/odoo#130535
      
      X-original-commit: cfcaed13
      Signed-off-by: default avatarLaurent Smet (las) <las@odoo.com>
      650542c7
  5. Aug 06, 2023
  6. Aug 04, 2023
  7. Aug 03, 2023
  8. Aug 02, 2023
Loading