- Jan 10, 2019
-
-
mgh-odoo authored
- added unaccent search on POS customer/partner and product - moved unaccent from "mail.utils" to "web.utils" - added more character to make function accurate We might use str.normalize(from ES6) but the problem is str.normalize method can not consider some double characters i.e. accented character when normalized it returns 2 normal characters and normalize method returns single character, so here custom unaccent method is used to normalize the string What we can improve here: We can use str.normalize method and check if string is still have unaccented charaters that we can call our unaccent method but this unaccent method is also working and performing well closes odoo/odoo#27671
-
- Jan 09, 2019
-
-
XavierDo authored
The activity create_user_id field is now replaced by magic create_uid field. Since most of the search are done on this field, create_uid should be indexed as create_user_id was. closes odoo/odoo#30061
-
- Jan 10, 2019
-
-
Robot Odoo authored
Bootstrap just released a brand new version with new components and new possibilities, which are great to integrate in master. Note: Unfortunately, this also comes with some bug fixes they did not add in a 4.1.4 version, so there is no clean way to backport them in Odoo 12.0 (so if any is required at some point, we will have to use bootstrap_review.scss or anything else to bug fix). closes odoo/odoo#29949
-
XavierDo authored
The current implementatipon of write on mail.activity will send a notification to the user every time a write is made on user_id. To avoid to send notification / mail if the user_id is given but doesn't change, we can simply filter the records. This will also avoid to check assignation rights in this case. Task: 1905086 closes odoo/odoo#30055
-
- Jan 09, 2019
-
-
qsm-odoo authored
Some update to the accordion component made it incompatible with some of our customization.
-
qsm-odoo authored
-
qsm-odoo authored
Odoo overrides the color-yiq function of bootstrap to improve it. With the last update, BS changed its signature so Odoo had to change it to.
-
qsm-odoo authored
-
qsm-odoo authored
This commit only updates the existing bootstrap files and add the new ones the update brings.
-
- Jan 08, 2019
-
-
Martin Geubelle authored
With the current test_main_flows dependencies, the tour does not pass in community. Since rev. odoo/odoo@32db86e the `extra_trigger` waiting for `payment_method_id` is never reached because the onchange who is supposed to display this field hides it because there is only one payment method on the journal. The second payment method is added by the module account_check_printing but we don't want to add it in the dependencies because this module is not very common. Note that this `extra_trigger` was meant to wait for the onchange triggered by the journal modification on the 'Register Payment' modal but this modification is not useful as the journal is already 'Bank (USD)' by default. closes odoo/odoo#30023
-
- Jan 09, 2019
-
-
Christophe Simonis authored
-
Christophe Simonis authored
closes odoo/odoo#30045
-
Romain Derie authored
Currently, res.partner has: 1. `website_id` field hardcoded in website module 2. `website_published` field from website `website.published.mixin` in website_partner module. At the end, the res.partner model has all the field of the mixin `website.published.multi.mixin` without having the mixin. As a result, we have all the multi-website fields but we don't have access to the mixins methods & computes. Now, we use the `website.published.multi.mixin` on res.partner in website module even if `website_published` is not needed if website_partner is not installed. + add tooltip to `website` field to prevent warning since 2 fields would have the same label closes odoo/odoo#29711
-
Yannick Tivisse authored
If an employee is not linked to an user, the claim report feature won't work. With this commit, the report can be printed base on the user's partner or the private employee address. closes odoo/odoo#30065
-
- Jan 08, 2019
-
-
Christophe Simonis authored
-
Christophe Simonis authored
The prefetch hell patch [1] generate one more query. [1] a07a076c
-
Nicolas Martinelli authored
opw-1908220 closes odoo/odoo#30012
-
Robot Odoo authored
YOLO closes odoo/odoo#30025
-
Yannick Tivisse authored
-
Yannick Tivisse authored
This reverts commit f727b8f0.
-
Yannick Tivisse authored
This reverts commit 3671d41a.
-
Yannick Tivisse authored
This reverts commit 37212fe6.
-
Yannick Tivisse authored
This reverts commit 6f5dc573.
-
Julien (juc) Castiaux authored
When creating a banner using the web editor, the targeted image appears centered in the editor but is aligned on the left in the email. The issue also happened with other alignment (left in a centered widget, right, ...) for example on outlook 2007 and should be solved with this changeset. note: 12.0 version of #29214 opw-1904827 Co-authored-by:
Nicolas Lempereur <nle@odoo.com> closes #29954
-
Romain Derie authored
Before this commit, BS4 color for active list-group-item (white) would always be overriden by our portal custom css to the BS4 color for inactive one. Part of #29884
-
Romain Derie authored
Since 12.0, some modal footer button order were changed. The primary button would not be the one in the modal footer corner. This is against bootstrap but more annoyingly, users are intuitively clicking on the secondary button, ending up closing the modal and losing form information they entered. This commit simply fix the regression from 12.0 as before 12.0 these buttons were positionned correctly. Note that a commit in master (saas-12.2) will fix all the other ones that were wrongly positionned before 12.0. Step to reproduce: - Go to an event having the possibility to register. - Click on 'Register Now', a modal is shown to write details (name, email..) - You intuitively click on 'Cancel' as it is the bottom right button |________________________________ CONFIRM _ CANCEL _| - The modal is closed, if you try to open it again your infos are lost Closes #29884 task-1922120
-
Christophe Simonis authored
-
- Jan 07, 2019
-
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Francisco Fernández authored
-
Thibault Delavallée authored
Adding kwargs in test route of surveys allow notably to avoid crashing when working in debug mode and testing surveys. closes odoo/odoo#29996
-
Julien (juc) Castiaux authored
When creating a banner using the web editor, the targeted image appears centered in the editor but is aligned on the left in the email. The issue also happened with other alignment (left in a centered widget, right, ...) for example on outlook 2007 and should be solved with this changeset. opw-1904827 Co-authored-by:
Nicolas Lempereur <nle@odoo.com> closes #29985 closes odoo/odoo#29214
-
Antoine Prieels authored
Layouts were not accepted by Pingen due to the fact that the class that we added to the recipient's address was not present in stable versions. The format was therefore not adapted to Pingen. We then remove this class to fix layouts in stable versions. closes odoo/odoo#29976
-
- Jan 08, 2019
-
-
Christophe Monniez authored
In community, when entering the Manufacturing app, the first view is the Manufacturing orders list view as it's not the case in enterpise, the two steps are only necessary in enterprise. Note: even if it fix the tour, the main bug could still be there. closes odoo/odoo#30016
-
- Jan 06, 2019
-
-
Odoo Translation Bot authored
-
- Jan 05, 2019
-
-
Humberto Arocha authored
closes odoo/odoo#29966
-
- Jan 04, 2019
-
-
Romain Derie authored
The template `website_gengo.web_editor.TranslatorInfoDialog` was not used anymore. It is supposed to replace the one in `web_editor` module. Among other things, 29729769 refactored the `web_editor` template to contain only the modal body content. The bug might be coming from it. closes odoo/odoo#29955
-
Romain Derie authored
Before this commit, when changing the website field in a record form view, the is_published field would be force to false, ending unpublishing the record if it was published. That behavior was coming from the fact that is_published field is missing from the form view. Thus, onchange on website is triggering a recompute server side without is_published as the JS framework is not sending the field. The ORM is then fallbacking on default Boolean value (False) for is_published when sending back the onchange result. This would only appear on object with 'website.published.multi.mixin' and with website_id in the form view. Replacing website_published by is_published will fix the behavior and has more sense has website_published is the 'is_published' state in a website context. In the backend, we are not in a website context. task-1919689
-