- Jun 28, 2023
-
-
pedrambiria authored
Before this commit, if you stopped sync with microsoft, and refereshed the calendar, it would change the button back to synced status. opw-3382311 closes odoo/odoo#126661 X-original-commit: 1e0e4e8a Signed-off-by:
Arnaud Joset (arj) <arj@odoo.com> Signed-off-by:
Pedram Bi Ria (pebr) <pebr@odoo.com>
-
divy-odoo authored
1. Introduce primary variable to simplified overridden value of `$min-contrast-ratio` and document its need. 2. Reduce `$min-contrast-ratio` to 2.9 to solve the inconsistency with the previous version 15.0 of text color over some background color. Of course it won't restore everything to the way it was: we still want the version 16.0 to be an evolution over version 15.0 using what bootstrap recommended to compare contrasts. But as going from 3.0 to 2.9 should not impact existing websites too much and solve use cases we feel need solving, we feel it is an ok change. 3. Restore override of the `color-contrast` method that will now handle the transparent colors. Before this commit, a color-contrast function was just considering RGB value only, after this commit it will consider RGBA value, relying (by default) on the fact the body background is the background behind the colors we are comparing. task-3241031 closes odoo/odoo#118304 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
Géry Debongnie authored
Release notes: https://github.com/odoo/owl/releases/tag/v2.1.4 This release contains mostly devtools improvements, but there are three small bug fixes as well: [FIX] blockdom: properly merge dynamic class values [FIX] parser: make t-on stricter [FIX] compiler: apply translations to t-set text body closes odoo/odoo#126656 Signed-off-by:
Nicolas Seinlet (nse) <nse@odoo.com>
-
Claire Bretton (clbr) authored
The return tax should only be used through its parent tax, we don't want it to be accessible directly on bills or invoices. opw-3347425 (2nd issue) closes odoo/odoo#126653 X-original-commit: c8fdceab Signed-off-by:
Brice Bartoletti (bib) <bib@odoo.com> Signed-off-by:
Claire Bretton (clbr) <clbr@odoo.com>
-
Gauthier Wala (gawa) authored
Added a saveForm to wait for the compute/onchange to proc on the save Added a tax, to be independent of localizations Changed the product, to have a product with an amount that won't be impacted by difference of default decimal place from localizations. Fixes runbot error 22093 closes odoo/odoo#126399 Signed-off-by:
William André (wan) <wan@odoo.com>
-
Julien Van Roy authored
When parsing an email containing an xml attachment, the `email` python module will decode the base64 attachment using the charset or ascii if the charset is missing. In some cases, the payload is in UTF-8 but the charset is omitted. This results in replacement characters for the non ASCII characters. The solution is to force the charset to UTF-8, since it is a superset of ASCII that should not be a problem. NB1: Omitting the charset for text/xml is not recommended. See the RFC (section 6.4): https://www.ietf.org/rfc/rfc2376.txt opw-3144519 closes odoo/odoo#126392 X-original-commit: 3b489509 Signed-off-by:
Julien Castiaux (juc) <juc@odoo.com> Signed-off-by:
Julien Van Roy (juvr) <juvr@odoo.com>
-
Enric Tobella authored
closes odoo/odoo#126213 X-original-commit: df1badee Signed-off-by:
William Henrotin (whe) <whe@odoo.com>
-
Quentin De Paoli authored
That field is used at many places in the code to force the computation of taxes in price included mode in the bills. The problem is that if that bill gets reversed, the computation needs to stay the same other the bill and the reversal do not cancel each other, for no apparent reason. In the same way, if you manually duplicate a bill, you'd expect to get exactly the same computation as before. Use case: 1. create an expense, total $115 with a 15% tax (excluded) 2. process it and post the bill. Check that you have a bill for a total of $115 ($100 untaxed + $15 tax) 3. reset the expense to draft 4. Check the disaster: the bill got partially reversed by an entry wich tax isn't included ($115 untaxed + 15% tax) opw-3333599 closes odoo/odoo#126267 Signed-off-by:
William André (wan) <wan@odoo.com>
-
Thomas Lefebvre (thle) authored
Issue: ------ When applying for a job via an alias mail, it is sometimes possible to get the wrong information for the applicant's name and email. For example: Applicant's Name: "FirstName SecondName Email: "FirstName SecondName" <name@example.com> Because of this, it is not possible to send an e-mail (for example, to set up a meeting) because the latter is erroneous. Cause: ------ Many e-mail services add the name associated with the e-mail in the header. Example of a sent e-mail (can be retrieved with "Show original"): ```eml MIME-Version: 1.0 Date: Wed, 21 Jun 2023 12:09:34 +0200 Message-ID: <CAHbiOmS_PHojqKMhoji9iev4I6pzuJ1=dVHgLKNh3SOS_mw7+w@mail.gmail.com> Subject: Subject test From: FirstName SecondName <name@example.com> To: team-recruitment@company.com Content-Type: multipart/alternative; boundary="000000000000f7db4305fea0f6c3" --000000000000f7db4305fea0f6c3 Content-Type: text/plain; charset="UTF-8" Message test --000000000000f7db4305fea0f6c3 Content-Type: text/html; charset="UTF-8" <div dir="ltr">Message test<br></div> --000000000000f7db4305fea0f6c3-- ``` Solution: --------- Use `_parse_partner_name` method to correctly parse the e-mail and partner's name. Note: ----- Not add `email_from` in `_primary_email` field. Otherwise, they will be override with the "raw" value. opw-3347313 closes odoo/odoo#125927 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
Julien Mougenot authored
Before this commit, in other numbering systems than "latn", the time pickers did not allow to select hours/minutes/seconds. This was because the lib (TempusDominus) would use `parseInt` internally to retrieve the selected value, which was not a latin number in other numbering systems. This commit changes 2 things directly in the lib file: - allow the internal `getMoment` function to accept a second 'format' parameter; - use that same `getMoment` function to parse the text of the selected value, effectively using moment to both parse and format the values displayed in the picker and ensuring consistency. OPW-3258034 closes odoo/odoo#126547 X-original-commit: 3072cb56 Signed-off-by:
Bruno Boi (boi) <boi@odoo.com> Signed-off-by:
Julien Mougenot (jum) <jum@odoo.com>
-
Robin Lejeune (role) authored
Form fields can be prefilled since [1] and their visibility conditionally linked to other fields since [2]. 1. This commit ensures prepopulated fields trigger the conditional visibility mechanism (A), including when said field is first hidden, then conditionally displayed (B). 2. Until [3], with a chain of visibility conditions, when one of them was "contains", "does not contain" or a date-related condition, a traceback was raised (C). This commit corrects the fix from [3] to prevent this behavior now that the reason has been identified. 3. Tests are also set up to enforce these fixes. Steps to reproduce (A): - Drop a form - Make field A depend on field B being set - Have field B be autopopulated from user mail - Save and check the form: A won't be shown despite B being set - Removing one letter or typing anything in the input B will trigger the visibility of A. - Expected result: B should immediately appear. Steps to reproduce (B): - Drop a form - Make field A depend on field B being set - Have field B be autopopulated and depend on field C being set - Field C is empty by default - Save: only field C is shown. Type a letter: field B appears, but not field A. - Expected result: both should appear. Note: this bug only occurs when field A is before field B. Steps to reproduce (C) (until [3]): - Drop a form - Field A depends on B containing "abc" - Field B depends on C being set - Save and type something in C: there is a traceback. task-3335536 [1]: https://github.com/odoo/odoo/commit/54873d2 [2]: https://github.com/odoo/odoo/commit/2dcbfec [3]: https://github.com/odoo/odoo/commit/2714469 closes odoo/odoo#126424 X-original-commit: ad67d744 Signed-off-by:
Benoit Socias (bso) <bso@odoo.com>
-
Kevin Baptiste authored
Setting or changing the manager of an employee would not refresh the OrgChart. task-3381781 closes odoo/odoo#126040 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Jun 27, 2023
-
-
Manisha Tulsiyani authored
Previously, the percent-pie widget was returning the value itself instead of rounding them in case of float. After this fix, it will give proper round off values for float fields. closes odoo/odoo#122816 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
Mahdi Cheikh Rouhou (macr) authored
When you add items in the cart it always show the number of available left in stock of the previous state for example : 1- cart is empty it shows 20 items 2- add one into cart - it shows 20 items left in stock (should be 19) 3- add another one into cart - it show 19 items left in stock (should be 18) Steps to reproduce the error : 1 - Go to one of the product and make sure that it has some available quantity 2 - Go to sale configuration on the product and remove "out-of-stock : continue selling" and add show available qty only if below 5000 for example 3 - Go the web page of the product and try to add some items into the cart you will see that the stock message is wrong The origin of the problem is that when we have optional products activated , it will launch a product configurator modal. After posting the update in the database there is no call to the function that updates the stock message. opw-3341377 closes odoo/odoo#125660 X-original-commit: b95f0576 Signed-off-by:
Mahdi Cheikh Rouhou (macr) <macr@odoo.com>
-
Thomas Lefebvre (thle) authored
Issue: ------ When a list view is editable and we add a `Group By`, the create button in the header is no longer available. This is annoying when we are working with default filters and do not have any records. Solution: --------- Add the "New" button in the header of the list view and redirect to the form view when we use it. opw-3304692 closes odoo/odoo#125529 Signed-off-by:
Francois Georis (fge) <fge@odoo.com>
-
stcc-odoo authored
Enterprise PR: odoo/enterprise#42551 Steps to reproduce: 1. Install website_sale 2. Create product P - Go to Attributes & Variants tab - Add a line - Create and edit attribute "PILL" - Display Type = Pills - Add some attribute values - Save & Close - Add the attribute values in the list view - Save the product 3. Go to website product page Issue: The pills have a visible radio button inside, requiring users to click on the radio button to change the variant. In V15, there was no radio button, and users could click anywhere on the variant container to change the variant. The change in behaviour happened because the jquery code for handling button clicks has changed. In V15 jquery, clicking a button would trigger a change event, which would then be captured by the owl event selector `change [data-attribute_exclusions]`, and the `onChangeVariant` method was called. In version 16, jQuery no longer triggers a change event when clicking a button. Solution: Hide the radio input visually, then convert the variant text to a label. When clicking on the label, the corresponding radio input is checked. This means that the whole button is not clickable anymore, only the text. opw-3185147 closes odoo/odoo#123100 Signed-off-by:
Valentin Chevalier <vcr@odoo.com>
-
Mohit Beniwal authored
This error occurs when user import records having value in 'properties' column which is of datatype, 'properties' and while trying to get attribute from getattr to get value of converter it is getting default value None. That's why this error is produced, 'NoneType' object is not callable. Steps to reproduce: 1) Install 'CRM' module. 2) Open 'CRM' module and in it click on 'List' view. 3) Open any record and add value for field 'Add a property'. 4) Export that records. 5) Now click on 'Favourites' > 'Import records'. 6) Now click on 'UPLOAD FILE' button > upload that exported file. 7) Now click on 'TEST' button, error will be generated. By applying this, user will be able to import record of datatype 'properties'. Sentry-4128524668 closes odoo/odoo#122817 Signed-off-by:
Rémy Voet (ryv) <ryv@odoo.com>
-
Hubert Van de Walle (huvw) authored
Steps to reproduce ================== - Go to Accounting > Vendor Bills - Create a new record - Click on the Auto-Complete field > Search more - In the search bar, search for a reference -> str is not a function Cause of the issue ================== The search filter is declared as such: ```xml < field name="name" string="Reference" filter_domain="['|', ('name','ilike',self), ('reference','=like',str(self)+'%')]" /> ``` This domain is evaluated in javascript by basic python interpreter. Going from 15 to 16, it has been rewritten. The str function isn't present anymore in `py_builtin.js`. Solution ======== Since this is the last remaining usage of this function and `self` is already a string, we can simply replace `str(self)` by `self` opw-3383708 closes odoo/odoo#126501 Signed-off-by:
Hubert Van De Walle <huvw@odoo.com>
-
Moens Alexandre authored
closes odoo/odoo#126428 Signed-off-by:
Josse Colpaert <jco@odoo.com>
-
Nasreddin Boulif (bon) authored
Steps to reproduce: - Install the module `crm_livechat` - Activate another language (e.g. fr_FR) - Open a new incognito window and go to the website - On website, switch to the activated language - Open contact page - Open the chatbot Issue: The chatbot is displayed in `en_US`. Cause: The chatbot is displayed in the current user language (not website language). Public user have by default `en_US` as language. Solution: Retrieve the chatbot with the website activated language if set, otherwise, retrieve the chatbot in the user language. Fallback on `en_US`. opw-3284807 closes odoo/odoo#126341 Signed-off-by:
Matthieu Stockbauer (tsm) <tsm@odoo.com>
-
Günter Bailey authored
closes odoo/odoo#126464 X-original-commit: 842f2292 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Mathieu Walravens authored
Before this commit: When importing `stock.quant` with two lines with the same product and different counted quantities, only the last line is taken. After this commit: Each line creates a `stock.quant`, even if a similar Quant exists. The records will be merged at a later time by `_merge_quants`. Steps to reproduce: 1. Create a storable product 2. Go to Inventory > Operations > Inventory Adjustments 3. Create a file with two lines with the same product, and different counted quantities 5. Favourites > Import Records & upload the file OPW-3340017 closes odoo/odoo#126458 X-original-commit: 45f7368222ead5df600992c66f0da56b3a7e959a Signed-off-by:
William Henrotin (whe) <whe@odoo.com> Signed-off-by:
Walravens Mathieu (wama) <wama@odoo.com>
-
akr authored
Adding base translation files for l10n_sa_edi as well as arabic translation closes odoo/odoo#125555 X-original-commit: 52e96a5c Signed-off-by:
Josse Colpaert <jco@odoo.com>
-
moerradi authored
Prveiously the "Edit in Website Builder" button was not shown for terms and conditions if website is installed, it was shown only if the website_sale module was installed. This commit fixes that. task-3342876 closes odoo/odoo#122874 Signed-off-by:
Brice Bartoletti (bib) <bib@odoo.com>
-
Sylvain LE GAL authored
closes odoo/odoo#119777 Signed-off-by:
Joseph Caburnay (jcb) <jcb@odoo.com>
-
Benjamin Vray authored
Steps to reproduce the bug: - Drag and drop several snippets onto a web page in edit mode to make the vertical scrollbar appear. - Drag and drop a popup onto the page. - Drag and drop snippets into the popup so that the height of the popup exceeds the height of the viewport. - Try to scroll the popup downwards by clicking and dragging on the scrollbar (not using the mouse wheel). - Bug: the page is scrolled instead of the popup. Note: This bug occurs in Chrome (not in Firefox). This issue occurs because two scrollbars are present at the same location (one for the page and one for the popup) and they overlap each other. Normally, Bootstrap removes the scrollbar from the body when a modal is opened, and this behavior was adapted for the #wrapwrap element with this commit [1]. However, when transitioning to Bootstrap 5, the code that overrides Bootstrap was removed instead of being adapted (this was done in this commit [2]). In later commits [3] and [4], we continued to remove code that updated the scrollbar based on the opening of a modal because this code was causing errors due to the fact that it was incomplete without the part removed by commit [2]. This commit restores the original behavior (before the deletions made by the aforementioned commits) by restoring the missing code and properly adapting it to Bootstrap 5. [1]: https://github.com/odoo/odoo/commit/9cf8b97fe40444b44ebb6e6fb992bc658a087d32 [2]: https://github.com/odoo/odoo/commit/0b94da214b7017e8580e671cbaa68ade6de2fbc7 [3]: https://github.com/odoo/odoo/commit/cb7cf77ed080e86f800af61c9a3dc4ad36ad6cfb [4]: https://github.com/odoo/odoo/commit/51939d09f84579f61f1ff77aacd754beba036dc2 task-3102275 closes odoo/odoo#112091 Signed-off-by:
Benoit Socias (bso) <bso@odoo.com>
-
Benoit Socias authored
This commit ensures that the unsplash beacon calls home when an unsplash image appears on a page. To achieve this it patches the RPC call when the test URL contains the test name as parameter. The patch cancels the actual beacon call to avoid polluting data during the test, but marks the image as having had its beacon message sent. The test then simply checks if this marker appears on the image. task-3360109 closes odoo/odoo#126370 X-original-commit: 1b9e8103 Signed-off-by:
Outagant Mehdi (mou) <mou@odoo.com> Signed-off-by:
Benoit Socias (bso) <bso@odoo.com>
-
Mohit Beniwal authored
JSONDecoderError occurs when users enters invalid JSON format data in 'Default Value' field inside 'User-defined Defaults' and wherever this field is being accessed to get default value this traceback will be generated. Steps to reproduce: 1) Install 'Contacts' module. 2) Open 'Settings' > 'Technical' > 'User-defined Defaults'. 3) Click on record 'Language' > 'EDIT' button > in 'Default Value' field enter any improper JSON format data (e.g 'Maa' : FI ) . 4) Now, open 'Contacts' module > click on 'CREATE' button and traceback would be generated. By applying this, it will check for proper JSON format. Sentry-4169062951 closes odoo/odoo#126239 X-original-commit: 0e6e322d Signed-off-by:
Rémy Voet (ryv) <ryv@odoo.com>
-
- Jun 26, 2023
-
-
Lucas Lefèvre (lul) authored
### Contains the following commits: https://github.com/odoo/o-spreadsheet/commit/1e37a947 [REL] 16.0.14 https://github.com/odoo/o-spreadsheet/commit/4a28f6ea [FIX] Filters: fix filter id on sheet duplication Task: 3384840 https://github.com/odoo/o-spreadsheet/commit/1ad0040d [FIX] rendering: cache text width https://github.com/odoo/o-spreadsheet/commit/1b5ce1c5 [IMP] dependencies: update owl to 2.1.3 https://github.com/odoo/o-spreadsheet/commit/a9252427 [IMP] dependencies: update Typescript to 4.9 closes odoo/odoo#126430 Signed-off-by:
Rémi Rahir (rar) <rar@odoo.com>
-
Julien Van Roy authored
A line of code has been duplicated while fixing a failed forward port, remove it. (see: https://github.com/odoo/odoo/commit/7f93f72a4f874e7073c0fec8ab0a89ebbd13e029 ) closes odoo/odoo#126390 Signed-off-by:
William André (wan) <wan@odoo.com>
-
Maruan Aguerdouh (magm) authored
Steps to reproduce the bug: - Go to Apps, and install the Knowledge App. - Go to Knowledge and create an article, and a child article. - Inside the child article, go to Properties tab and add a property. - Go to edit the property, and inside the popover,click on the delete button, atleast 2 times. - Now we got more than 1 popover to confirm the delete of the property, click delete on all of them. Issue: Once the first popover is confirmed, we properly delete the property but now we are going to get an error because the property is already deleted and we won't be able to find the property to delete. Solution: We need to check if we can find the property we want to delete before doing any further actions. opw-3371753 closes odoo/odoo#125407 Signed-off-by:
Maruan Aguerdouh Mohtar (magm) <magm@odoo.com>
-
clotheoryCTO authored
closes odoo/odoo#126109 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Rodolpho Lima authored
The code snippet removed by this commit had no useful effect, as `selection.addRange(range)` a few line above triggers `OdooEditor._onSelectionChange`, which repositions the toolbar elsewhere. The result was a "glitch": the toolbar would briefly be displayed over the top left corner of the media before finally being displayed above (or below) it. This commit removes such undesirable effect. task-3347942 closes odoo/odoo#126317 Signed-off-by:
David Monjoie (dmo) <dmo@odoo.com> Signed-off-by:
Nicolas Bayet (nby) <nby@odoo.com>
-
Rodolpho Lima authored
Before this commit the position of the arrow was incorrect when the editor is inside an iframe. For the calculation of `arrowLeftPos` we need the difference between the selection rectangle border and the toolbar's left position. While `correctedSelectionRect.right` is relative to the current iframe's borders, `left` is relative to the top document's window, as it has been offset with `parentContextRect.left`. We need both values to be relative to the same referential in order to make this calculation make sense. task-3347942 Part-of: odoo/odoo#126317
-
Rodolpho Lima authored
Before this commit, an error in the toolbar position happened when the editor was inside an iframe and the iframe's window had scroll bars. Steps to reproduce: - go to the Market Automation app (enterprise edition) - create new campaign - add new activity - create a new mail template by typing a name and selecting "create and edit" - select the "plain text" theme - add a lot of content in order to have the scroll bars - scroll down - select something to display the toolbar The `scrollX` and `scrollY` variables in `_positionToolbar` are ment to correct the floating toolbar position in case the document in which the toolbar is mounted has some scrolloffset. As the floating toolbar is always mounted on the body of the top document, this is the document to watch for scroll offsets, and not the inner document when the editor is mounted inside an iframe. task-3263463 Part-of: odoo/odoo#126317
-
Romain Derie authored
When a field had an error (required, wrong format etc), upon submission of the form there would be a JS traceback preventing the page to work anymore (the Donate button would spin forever). This is because the code was not adapted to the Bootstrap 5 migration. It seems like this code to update the config's content is not required anymore, as without it the content is correctly updated through the existing `.popover()` call a line above. You can ensure that by simply omitting your email and send the form, it will tell you that the email is required. Then just type "a" in the email field and send again, it will tell you that the format is not correct. Somehow, it seems to also be the case in Odoo 15 in Bootstrap 4, removing those line do not break that. Some fixes were made at [1] and [2] about the same issue but somehow people just fixed their own case, while grepping `.config.content` would have easily found this one too. [1]: https://github.com/odoo/odoo/commit/37546006940f99c8860e89997ed7a623abd5fa72 [2]: https://github.com/odoo/odoo/commit/0cff1dc2967cafeb8964ed0802c309d3bb7f7525 opw-3381196 closes odoo/odoo#126309 Signed-off-by:
Romain Derie (rde) <rde@odoo.com>
-
Javier Duran authored
We added a new method to identify if the current pos.order.line can be discounted in a global discount, fromt he pos_discount, module. This in order to be inherited from third ones. closes odoo/odoo#126217 X-original-commit: de08daadc622e4431fa68a74ea5db276a90fa3c3 Signed-off-by:
Joseph Caburnay (jcb) <jcb@odoo.com>
-
Wolfgang Taferner authored
In case we use multi company and a user does not have an employee in every company which is quite normal (mostly you are employed with exactly one company), the calendar is skipping the provision of the unusual days like public holidays or the working schedule. To be able to access and see the calendar in such a case we fallback to the company calendar and fixed a domain for the public holiday retrieval whereas the public holidays are not assigned to an employee but the company or the companies chosen to be displayed. closes odoo/odoo#126289 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
Mahdi Cheikh Rouhou (macr) authored
When we include the author in the recipients of the quotation email of a repair order he doesn't receive the email. Steps to reproduce the error : 1- create a repiar order 2- add the author in the list of recipients 3- send the email The origin of the problem is that mail_notify_author=False , se we need to add it as True when we have the author in the recipients. Similar old fix : https://github.com/odoo/odoo/commit/f49dbf595c870b682f36c11443c9cf1a9a027474 opw-3295744 closes odoo/odoo#126182 X-original-commit: f936def6 Signed-off-by:
William Henrotin (whe) <whe@odoo.com> Signed-off-by:
Mahdi Cheikh Rouhou (macr) <macr@odoo.com>
-
Saurabh Choraria authored
In the start_sync method, the logger is updated to use the 'warning' level instead of the 'error' level. This change reflects a less severe logging level for cases where sending a partner to sync fails. The changes have been made to reduce the noise level in the sentry. sentry-3955309841 closes odoo/odoo#126055 X-original-commit: c1b608c2 Signed-off-by:
Louis Baudoux (lba) <lba@odoo.com>
-