- May 23, 2022
-
-
Christophe Monniez authored
Part-of: odoo/odoo#91927
-
Christophe Monniez authored
CurrentThread is now really deprecated in Python 3.10 ... Time to change. Part-of: odoo/odoo#91927
-
Olivier Dony authored
As of werkzeug 2.0, the `posixemulation` compatibility layer for atomic rename operations is abandoned[1]. In the mean time an atomic, cross-platform file renaming function was introduced in the stdlib, as of Python 3.3: `os.replace()`. By using `os.replace()` instead of `posixemulation.rename()`, we can ensure compatibility with versions 0.x, 1.x and 2.x of werkzeug. We've always required Python 3.5+ since the P3 support, so `os.replace()` is always available. This is a follow-up of the work for supporting werkzeug 1.x [2] References: [1] https://github.com/pallets/werkzeug/pull/1790 [2] vendoring of werkzeug.sessions: odoo/odoo#45931 Part-of: odoo/odoo#91927
-
Xavier Morel authored
In discussing 56fe16bd I was reminded to re-set the `user_id` from `sub` in case an override / other client would be using it, but we didn't think that an override might also be *setting* this work key, which apparently is the case. Therefore restore the old behavior of *getting* the user_id from the response object, migration to using `sub` (and removal of compat with `user_id` and `id`) will be done when the module is reworked and the flow compatibility, nonce, etc... are all fixed. closes odoo/odoo#91996 X-original-commit: a787a2f6 Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com>
-
- May 22, 2022
-
-
Christophe Monniez authored
When a subtest fails, the failure or error is taken into account and even if the subtest was silenced the test itself logs an ERROR with the count of failures. With this commit, at the first try, the subtest result is not taken into account. closes odoo/odoo#91974 X-original-commit: 96ca5bb6d7aeb54dfb8d5453edaf04b2ea903d41 Signed-off-by:
Christophe Monniez (moc) <moc@odoo.com>
-
- May 21, 2022
-
-
alt-odoo authored
Currently, only a public user or an internal user can access HR department information. This is causing an access rights error when trying to filter job offers on the website if connected with a portal user, while there is no error if not connected (public user). We should have the same behavior for the two cases. closes odoo/odoo#92003 X-original-commit: 689a3aa9 Signed-off-by:
Romain Derie (rde) <rde@odoo.com> Signed-off-by:
Alex Thuyls (alt) <alt@odoo.com>
-
- May 20, 2022
-
-
qsm-odoo authored
Parent view: ``` <hello> <world></world> <world></world> </hello> ``` Child view: ``` <data> <xpath expr="/hello/world[1]" position="replace"/> </data> ``` => There are two <world/> in the original view, the first one is removed by a child view. In that case, the branding was still distributed on the <hello> element. This is a problem as it meant that in edit mode you were able to edit the whole content of that <hello/> element... breaking the xpath made by the child view. After this commit, in that case, the branding is rightfully distributed on the remaining <world/> element (just like it would have been if the inheriting view had added an element instead of just removing one). This is a follow-up of the parent commit (of the same PR at [1]). [1]: https://github.com/odoo/odoo/pull/91015 Related to opw-2811674 closes odoo/odoo#91991 X-original-commit: abd9d7a7 Signed-off-by:
Romain Derie (rde) <rde@odoo.com>
-
qsm-odoo authored
When branding was added on items which follow an element that is removed by an inheriting view, the branding was incorrect. Indeed, it supposed the removed element does not exist in the original view. E.g.: Parent view: ``` <hello> <world></world> <world></world> <t t-esc="foo"/> </hello> ``` Child view: ``` <data> <xpath expr="/hello/world[1]" position="replace"/> </data> ``` => There are two <world/> in the original view, the first one is removed by a child view. The data-oe-xpath set on the remaining <world/> should still be /hello/world[2] and not /hello/world[1] to target the right element in the parent view. This of course induced edition problems where a saved area was not saved inside the right element of the parent view or, more likely in normally complex arch, just crashed on save. As an example, with 14.0 enterprise: - Install website_appointment - Go to a page with a calendar to schedule an appointment - Enter edit mode, try to add something in the area *below* the calendar - Save => crash Commit [1] already fixed similar problems when an element was *replaced* by something (especially, when replaced by an element with the same tag name). This commit actually reviews what was done to fix both problems (replacement and removal) at the same time. It also makes it so the xml that `apply_inheritance_specs` produces has no "Element" part impacted when used with "inherit_branding=True", which seems better... although the notion of inheriting branding should probably be independant from this function (maybe something to do in master). [1]: https://github.com/odoo/odoo/commit/c077ef05575d9677bce284195683f96c68386788 opw-2811674 X-original-commit: 4ab56993 Part-of: odoo/odoo#91991
-
David Monjoie authored
When updating the results following a change in the search filter or the source sources filter (All, Illustrations, ...), the list of media is regenerated to match the new results. If the user clicks on one media at the right time after the search is triggered (not too fast but not too slow either) it is possible to select a media which id is out of sync with the new state of the widget, thus prompting `_onAttachmentClick` to provide `undefined` to `_selectAttachment`, which ultimately leads to a traceback in `_highlightSelected` when accessing either `media.id` or `attachment.id` depending on the case. This commit fixes the issue by disabling pointer interactions with the attachments during the search and rendering update process. closes odoo/odoo#91985 X-original-commit: bc9db4e5 Signed-off-by:
Romain Derie (rde) <rde@odoo.com>
-
Federico (fega) authored
Steps to reproduce: - Set up an alias to receive vendor bills to company 2 - Forward a mail to this alias from an internal user - The mail should have the email address of a partner belonging to company 1 in it Current behavior: - The partner from company 1 can be set as vendor even tho the vendor bill will be from company 2 (inconsistent) - This leads to a multi-company error, and you can't open the bill as an user who can see it but not the partner. Intended behavior: - Partner from company 1 shouldn't be set as vendor if the vendor bill has been created from email alias of company 2. As the intended behavior says, the code avoids to set the vendor if the bill is created through an alias. opw-2587047 closes odoo/odoo#91973 X-original-commit: 4d5bb1fd46546870cd10d8dcd5b229de68a2e284 Signed-off-by:
William André (wan) <wan@odoo.com> Co-authored-by:
Andrea Grazioso (agr-odoo) <agr@odoo.com>
-
Mathieu Duckerts-Antoine authored
It is now possible to get access to the action context keys when the search filters are evaluated. This means that a search arch filter like <filter name="my_filter" domain="[('my_field', '=', context.get("my_value))]"/> can be safely evaluated if "my_value" is in the action context (or in the user context or is builtin as before). closes odoo/odoo#91959 Signed-off-by:
Géry Debongnie <ged@odoo.com>
-
Nicolas Bayet authored
task-2794153 closes odoo/odoo#91970 X-original-commit: 536b2ff35f28836ef14cbb353b4749adee21aaad Signed-off-by:
David Monjoie (dmo) <dmo@odoo.com>
-
Zodk2 authored
closes odoo/odoo#91964 X-original-commit: e7fa830b Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
tsm-odoo authored
This PR prepares the ground for the one introducing the new environment in the discuss app. Indeed, the discuss widget will be removed since it was used as an action. The discuss container will instead be added to the action registry. Now that the logic has been moved to the discuss_view model, we can move the logic inside the init function to the discuss_container setup. task-2582313 closes odoo/odoo#91890 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
kais-odoo authored
Purpose of the commit is to reword the rating submit page into "Rate our Services" task-2823445 closes odoo/odoo#90979 Related: odoo/enterprise#27152 Signed-off-by:
Laurent Stukkens (ltu) <ltu@odoo.com>
-
Laurent Stukkens (LTU) authored
This commit removes the unnecessary condition on modelName as the code stands in `ProjectTaskKanbanColumn` which is only used in the `project.task` kanban view. closes odoo/odoo#91965 X-original-commit: cb55586b Signed-off-by:
William Braeckman (wbr) <wbr@odoo.com> Signed-off-by:
Laurent Stukkens (ltu) <ltu@odoo.com>
-
Cedric Prieels (cpr) authored
A new report was created for timesheets, also introducing new measures regarding the (non-)billable time (percentage) and the timesheets revenues/costs. Some general improvements were furthermore introduced in the timesheet apps. See task-2783955 closes odoo/odoo#88072 Related: odoo/upgrade#3509 Related: odoo/enterprise#25922 Signed-off-by:
Laurent Stukkens (ltu) <ltu@odoo.com>
-
Simon Genin (ges) authored
closes odoo/odoo#91943 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
Valentin Chevalier authored
Before this commit, users may saw the capture and void buttons but couldn't use them. As capture or void actions need to access acquirer-related fields, these actions are now sudoed to allow any users that see the button to use it. The access rules and rights are also checked before executing the action to avoid abusive RPC calls. task-2785144 closes odoo/odoo#91923 X-original-commit: 2e351d6ff9b7f72b486e83c827ff6e15a05c3331 Signed-off-by:
Valentin Chevalier <vcr@odoo.com> Signed-off-by:
Antoine Vandevenne (anv) <anv@odoo.com>
-
Valentin Chevalier authored
Users without the right permission see the buttons but can't use them. Capture and void buttons are now only visible and usable for admin or users in account.group_account_invoice group (for invoicing module). task-2785144 X-original-commit: db6b54cc49ba7d9266e766112017604ed98c2cb3 Part-of: odoo/odoo#91923
-
Jeremy Kersten authored
Since PR #90855, we add extension if mimetypes doesn't match the type. Since guess_type don't know some extension, we prefer considere all string of less of 8 char as an extension before to fallback on the mimetypes lib. With this commit, a filename filename.scss will be considered with an extension .scss by our own helper instead of a fallback on .bin or .a as returned by guess_extension of mimetype. closes odoo/odoo#91905 X-original-commit: ca49c314970f32d051a449b0c0aa1aef30ca9a8b Signed-off-by:
Jérémy Kersten <jke@odoo.com> Signed-off-by:
Julien Castiaux <juc@odoo.com>
-
Antoine Guenet authored
The `html2canvas` library had been downgraded to its version from 2013 because of an issue with RTL rendering (see [1]). In the meantime, the library explicitely introduced RTL rendering support (see [2]). Upgrading the library to its latest (2022) version means a lot of old bugs are fixed. [1] https://github.com/odoo/odoo/commit/659e2857a651ea5f6df4a7139836d7f7398c40da [2] https://github.com/niklasvh/html2canvas/pull/2653 closes odoo/odoo#91773 Related: odoo/enterprise#27527 Signed-off-by:
David Monjoie (dmo) <dmo@odoo.com>
-
dbkosky authored
This commit refactors the protected fields out of the hardcoded list in the account_move_line model, and into a function that can be overriden in inherited models. This allows for account_intrastat to specify that the intrastat transaction code field and the intrastat product origin country field should not be editable after the accounting lock date. (In the corresponding commit these intrastat fields are added to the journal views) related PR: https://github.com/odoo/enterprise/pull/27049 closes odoo/odoo#91134 Task-id: 2753542 Related: odoo/enterprise#27049 Signed-off-by:
William André (wan) <wan@odoo.com>
-
Dossogne Bertrand authored
This commit aims to improve the time off experience by: - fixing the "cancelled" ribbon on time offs - removing the archive dropdown action - removing the "off until" banner in discuss if the user's leave is not validated TaskID 2800647 closes odoo/odoo#87650 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
mit patel authored
Currently when user purchases a course and completes the payment, the card of the purchased course is shown with 'Start Learning' button. However, the layout can be improved. This commit adds the short description of the course, duration and steps of the purchased course to provide a bit more information to the user. Apart from that, the title is now clickable and the information part now occupies a bit more space than the image. taskId-2790996 closes odoo/odoo#86873 Signed-off-by:
Warnon Aurélien (awa) <awa@odoo.com>
-
tsm-odoo authored
One of the discuss_tests assumed that pyEnv.create returns a record while it returns an id. Therefore, this test was setting a relational field to undefined instead of the id of the related record. closes odoo/odoo#91885 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
Ipsita Borisagar authored
Before this commit: There is an obsolete method 'channel_fetch_listeners' which is not needed now. After this commit: Removed this obsolete method. Task-2827899 closes odoo/odoo#91876 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
Valentin Chevalier authored
*: account_payment, sale, website_sale Users should not be able to discard the tokenization of their payment if they pay for a subscription. This commit introduces a new helper method to better predict when the tokenization checkbox should be shown or hidden. This also ensures that the behavior will be the same across all modules. task-2695201 closes odoo/odoo#91860 X-original-commit: 1d8dc53f8ed2a967b35213bc913cdfbc42ff15bc Related: odoo/enterprise#27568 Signed-off-by:
Antoine Vandevenne (anv) <anv@odoo.com>
-
Sébastien Geelen (sge) authored
closes odoo/odoo#91840 X-original-commit: 0f1c7831 Signed-off-by:
David Monjoie (dmo) <dmo@odoo.com>
-
Sébastien Geelen (sge) authored
Prevent edition on e-commerce products header bar. Since we cannot save any change done in the header object anyway, And some edition would trigger error. We put the all bar in a read-only mode. task-2745151 X-original-commit: e2f7b8fa Part-of: odoo/odoo#91840
-
Louis Wicket (wil) authored
Set `phone` and `mobile` fields on `res.partner` to unaccent=False since phone numbers are unlikely to have any accent. This will also make it easier to add indexes on these fields in the future. Part of task-2832241 closes odoo/odoo#91788 Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com>
-
Sébastien Geelen (sge) authored
closes odoo/odoo#91786 X-original-commit: 46094420 Signed-off-by:
David Monjoie (dmo) <dmo@odoo.com>
-
Sébastien Geelen (sge) authored
In some case, when removing format on element with multiple textNode, the code generate a traceback. The loops in `toggleFormat` provide a limit element `closestDecorated` to the `splitAroundUntil` util. However this limit element can be split and dumped by the format removal. In this case the reference was never encountered in the DOM by the `splitAroundUntil` code and will bubble all the way to the `<html>` TAG an try to split it, which generate an error. We fix it by getting the `closestDecorated` in every loop. task-2850686 X-original-commit: 2d93345c Part-of: odoo/odoo#91786
-
Sébastien Geelen (sge) authored
Add some unit test for strikeThrough format. Those tests reveal some bug in the current formating code. task-2850686 X-original-commit: 4d8e1dc3 Part-of: odoo/odoo#91786
-
Sébastien Geelen (sge) authored
Wrong contentAfter labeling. X-original-commit: 22bb8ae8 Part-of: odoo/odoo#91786
-
Didier (did) authored
closes odoo/odoo#91616 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
Brieuc-brd authored
This commit improves the layout of the `o_RtcActivityNotice_button` to increase its visibility. task-2853027 closes odoo/odoo#91289 Signed-off-by:
Alexandre Kühn (aku) <aku@odoo.com>
-
Brieuc-brd authored
Part of the overall v16 SCSS optimization/restyle, task-2704984 task-2853027 Part-of: odoo/odoo#91289
-
Kamlesh Pathekar authored
This commit to align legend labels to the corresponding icon. task-2784839 closes odoo/odoo#87614 Related: odoo/enterprise#25758 Signed-off-by:
Laurent Stukkens (ltu) <ltu@odoo.com>
-
std-odoo authored
Purpose ======= In this commit, we will fix the loops that occur when you send an email to an alias (to create a ticket e.g.). In that case Odoo can reply "Your ticket has been created" and then the auto-replier of the user can reply to this email and the loop occurs. Specifications ============== To solve this issues, we add 2 system parameters - <mail.gateway.loop.minutes>, 120 minutes by default - <mail.gateway.loop.threshold>, 20 by default When an email is sent to an alias, we look on the last records created <mail.gateway.loop.minutes> minutes ago. If we overcome the limit <mail.gateway.loop.threshold> the email is ignored. Alias creation detection ======================== To detect the number of records created by a specific email address we use the `_primary_email` attribute set on the model. Task-2294034 closes odoo/odoo#78597 Related: odoo/enterprise#21772 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-