- Feb 04, 2020
-
-
Swapnesh Shah authored
Fixes #43705 Before this commit, There will be tracback on converting currecy if there is not date on tax line. Now we use current date to as fallback to convert currency. closes odoo/odoo#44559 X-original-commit: 2b88d71c Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
Martin Trigaux authored
The title of notification is the author name escaped (for security reasons). if (message.hasAuthor()) { title = _.escape(message.getAuthorName()); } When forwarded to the system notification, it does not need to be escaped though, as the system notification is not HTML based. Without this patch, a user named "Bob's friend" sending a message was creating a notification with the title "Bob's friend" Unescaping the notification body just in case but the HTML of the body in a mail.messages should be stripped by _notifyIncomingMessage. Unescaping will just ignored unescaped characters and should do nothing on messages not escaped. Fixes odoo/odoo#24846 closes odoo/odoo#44550 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Odoo's Mergebot authored
Improvements for custom models and some default behaviours linked to the Studio model configurator (Enterprise task). In a nutshell: - mark the default `x_name` field of a custom model as 'to be copied' - improvement for kanban views that makes it easier to user with custom models The interesting part is in the Enterprise `web_studio` module. Task 2091654 Enterprise PR: odoo/enterprise#7326 closes odoo/odoo#42055 Related: odoo/enterprise#7326 Signed-off-by:
Damien Bouvy (dbo) <dbo@odoo.com>
-
Damien Bouvy authored
Copying a custom model's record seems pointless by default, since no field is actually copied. It makes sense to copy at least the `x_name` field, to make it clear to the user that the system understood it was duplicating something and not just creating something entirely new.
-
Damien Bouvy authored
The 'new' (read: the classes not in the 'compatibility layer section') classes of the kanban views did not allow to cleanly separate an image header from a content container. This commit adds such a container, allowing a very simple layout that should work all the time for a typical 'card with left image and right content layout': ```xml <div class="o_kanban_record oe_kanban_global_click o_kanban_record_has_image_fill"> <field class="o_kanban_image_fill_left" name="image_128" widget="image" options="{'zoom': true, 'background': true, 'preventClicks': false}"/> <div class="o_kanban_record_details"> <div class="o_kanban_record_top"> <div class="o_kanban_record_headings"> <strong class="o_kanban_record_title"> <field name="x_name"/> </strong> </div> </div> <div class="o_kanban_record_body"> <!-- some fields here (e.g. tags,...) --> </div> <div class="o_kanban_record_bottom"> <div class="oe_kanban_bottom_left"> <!-- some fields here (e.g. kanban status,...) --> </div> <div class="oe_kanban_bottom_right"> <!-- some fields here (e.g. user image,...)--> </div> </div> </div> </div> ``` Before this commit, the absence of a container for the right side meant that the top/body/bottom were flex-growed in a flex-direction: row element, appearing as 3 columns instead of rows.
-
Damien Bouvy authored
The `FieldBinaryImage` assumes that the image mixin is used to manage its fields - this is mostly true, until you use custom fields. This commit makes using the 'background' option of the Image widget possible by fallbacking the thumbnail field's name to the name of the field itself instead of `image_128` when we're dealing with a custom field.
-
Nicolas Martinelli authored
- Create a product A MTO, Buy Add a supplier S1 and set a specific reference - Create a product B MTO, Buy Add a supplier S2 and set a specific reference - Create a SO with A & B, confirm - 2 RFQ are created The first RFQ is created with the correct reference, but not the second one. This is because `display_name` depends on context keys: it is computed once for both products with `partner_id` set as `S1`, while it should be recomputed for product B with `partner_id` set as `S2`. In order to avoid this, we use `with_prefetch()` to avoid reusing the prefetched value. opw-2176638 closes odoo/odoo#44564 X-original-commit: d96c1910be8f242455de9b443fc9db82155b4dd1 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Victor Feyens authored
The web_diagram module was removed in saas-13.1, along with the diagram view support but some translation files were brought back by forwardports. closes odoo/odoo#44563 X-original-commit: 3f50601736b23dac78720d24d5b67bf6b94f5f43 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Nicolas Martinelli authored
- Create an invoice for 1000 - Make a partial payment (e.g. cash) for 250 - Print the ISR The ISR contains an amount of 1000 (total amount), while it should be 750 (amount left to pay). opw-2180538 closes odoo/odoo#44552 X-original-commit: 421bbcd5 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Jason Van Malder authored
Issue - Install eLearning - Edit the header > change image - Save Image not changed Cause We do not take new style/class attrib in account in replace_arch_section. Solution Take them in account OPW-2122947 OPW-2182109 closes odoo/odoo#44541 X-original-commit: 8579c0ca Signed-off-by:
Jason Van Malder (jvm) <jvm@odoo.com>
-
- Feb 03, 2020
-
-
Nicolas Martinelli authored
The parameter `lot_id` must be a recordset, not an `int`. opw-2188752 closes odoo/odoo#44525 X-original-commit: aeafd2a8 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Martin Trigaux authored
The computation was incorrect, the answer was 10, not 110 with the previous formula Courtesy of Frederico Freire Boaventura closes odoo/odoo#44514 X-original-commit: 577e1ad8314cac6e61f60f997f338df4b7a1da38 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Jan 31, 2020
-
-
jerome hanke (jhk) authored
Steps to reproduce: - install sales - create a new quotation Previous behavior: the avatar next to the author's name is empty in the mailthread Current behavior: avatar is displayed as expected opw-2187231 closes odoo/odoo#44407 X-original-commit: 24ba9f99 Signed-off-by:
mightyjol <jhk-odoo@users.noreply.github.com>
-
- Jan 29, 2020
-
-
Thibault Francois authored
The default journal depends on the company define in the context or the company in the environment In case of online signature/payment of a SO in a different company then the public user The company will be wrong and the journal_id as well It lead to a fail of the payment since the payment could not be reconciled with the invoices This is happening because the force_company is not taken into account for the default journal This commit take the force_company into account, it take the precedences on the default_company closes odoo/odoo#44238 X-original-commit: 8158e286 Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
- Feb 03, 2020
-
-
Jeremy Kersten authored
Before this commit, the date range was not known without open the record in backend. It is really painfull to don't know when a guy of your team ping you on a new leave the date from the current leave. (today ? next week ? ...) Now we have the date into the name_get and so the subject of the email. task-2001439 Nothing related to next activity ;) but idea was the same. closes odoo/odoo#44462 Signed-off-by:
Jérémy Kersten (jke) <jke@openerp.com>
-
Denis Ledoux authored
If an automated action raises an exception, in the traceback modal: - For admins, display Disable & Edit automated action buttons to be able to directly know with wihch automated action the error occurred, and to give the possibility to edit or disable it quickly, - For regular users, just add a paragraph to tell with which automated action the error occurred, so they can give this useful information to their administrator This is specially useful for databases which have just been upgraded to a newer version, and for which the server action is failing because its code is no longer supported. closes odoo/odoo#44513 X-original-commit: 8f3940c132bbbc99e47fa3f0cba0e768159d9af2 Signed-off-by:
Denis Ledoux (dle) <dle@odoo.com>
-
jbm-odoo authored
closes odoo/odoo#43188 Related: odoo/enterprise#7676 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
jbm-odoo authored
In stock, before sending an sms, we check if there aren't the key 'skip_sms' in the context. It is useful, for example, in fsm application. TaskID: 2081191
-
- Jan 31, 2020
-
-
Lucas Lefèvre authored
Purpose ======= Currently, it is only possible to set an Analytic Account for a whole Project, there is no distinction by task. However, if the user has 1 task per customer, he cannot track the costs and revenues for that specific customer easily. He has to manually change the AA of the timesheets' analytic lines. An option would be to set a different AA on the SO generating the task, but the AA of the project takes over anyway. Specifications ============== If the user sets an AA on the SO, it should bypass the one set on the project Add an AA field below the Email cc one on tasks in debug mode - should be related to the AA field from the SO - it should also bypass the AA set on the project All the timesheets from this task should be related to the AA field set on the SO/Task closes odoo/odoo#40844 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Feb 03, 2020
-
-
Martin Trigaux authored
time.clock is deprecated since python 3.3 and no longer exists in python 3.8 time.process_time was introduced in python 3.3 Replace "is" by "==" as this produces a SyntaxWarning in python 3.8 Fixes odoo/odoo#41313 closes odoo/odoo#44502 X-original-commit: f03b4cb5 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
qsm-odoo authored
Part of https://github.com/odoo/odoo/pull/44500 closes odoo/odoo#44500 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
qsm-odoo authored
Part of https://github.com/odoo/odoo/pull/44500
-
qsm-odoo authored
Some code was added to prevent notifying a 'reset' if there was no 'preview' before. Unfortunately, checking "if there was a 'preview' before" cannot be done properly so some 'reset' were stopped while they should not have. This commit simply removes the code which is in fact not needed. closes odoo/odoo#44499 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
Mathieu Duckerts-Antoine authored
Issue If month - 1 or month - 2 are in the previous year, the filter is incorrect. ex: Date = Jan. 2020, Filter = Dec. 2019 => last_year__last_month = 2018-12 instead 2019-12 Cause If date is 2020-01-20 Selecting December => adding param "last_month" Selecting 2019 => adding param "last_year" Applying "last_month" => date become 2019-12-01 Applying "last_year" => date become 2018-12-01 Solution Detect the right year to activate by default when a month is selected and no year is selected. With that solution it is not possible to get records in Jan. 2020 or in Dec. 2019 only for instance but the global functioning of date filters stays the same as before. OPW-2169528 closes odoo/odoo#44208 X-original-commit: 096fdc7d Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com> Co-authored-by:
Jason Van Malder <jvm@odoo.com>
-
Denis Roussel authored
Closes #43580 Fixes #9449 Adds field type conditions for boolean in search for Property model. As False values are not stored in DB for boolean, the search() does not return any value for non existent lines with: * operator: '=' and value: False * operator: '!=' and value: True Uses the 'include_zero' and inverse operator mechanisms implemented in Property model. Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Jorge Pinna Puissant authored
- In an e-commerce with automatic invoice set; - Buy something as public user; - Pay the order; Before this commit, the client don't receive the invoice confirmation email. opw-2176506 closes odoo/odoo#44494 X-original-commit: 684e678e1240f444ccdcd31939456fe57177b5b2 Signed-off-by:
Jorge Pinna Puissant (jpp) <jpp@odoo.com>
-
jdoutreloux authored
If sale_timesheet is installed, the timer is activated by default. Task-2125111 closes odoo/odoo#44468 Related: odoo/enterprise#8109 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
Yannick Tivisse authored
Purpose ======= At the second res.company creation, the multicompany mode is 'enabled'. But to get the company selector dropdown, the user needs to reload the page. Specification ============= Force a reload at res.company creation, similarly to the forced reload when updating the language (lang) of the user. closes odoo/odoo#44386 Taskid: 2127257 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Jan 31, 2020
-
-
Krunal Trivedi authored
Due to commit https://github.com/odoo/odoo/commit/7ecae3357117b1fd9889540556d5eba14ef8f237 which is introduces Next Activity icon on kanban cards at left bottom of the card in contacts however, this change effects other kanban cards making image and details separated, such effected kanban views are ratings in project, products and channels in live chat so fix the layout issue for all the above kanban cards and it will not effect the contact kanban view. taskID-2183676 closes odoo/odoo#44349 Closes: #44349 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Feb 03, 2020
-
-
Victor Feyens authored
Archived or deleted products shouldn't be counted in the comparison widget count anymore. The current behavior did only reset the cookie (and the count) when products were added/removed from the comparison, but didn't consider the case when the products currently in the cookie weren't all existing/valid. Fixes #44049 closes odoo/odoo#44485 X-original-commit: 0b488842 Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
Joseph Caburnay authored
The following steps will reproduce the issue: 1. Activate invoicing in the pos config 2. Start a new session 3. Switch browser to offline mode (or stop the odoo server) 4. Make an order 5. Invoice the order during payment 6. Validate 7. Error shows (which is okay) 8. The problem is that the receipt screen is not shown after validation. The intended behavior is that the receipt screen will show with an additional Print Invoice button above the receipt. The problem is caused by wrong signature of the thrown error when the _save_to_server is called. The signature understood by the error handlers is the one by `error` and not by `reason`. See _handleFailedPushForInvoice which is the main consumer of the error thrown by the _save_to_server call. closes odoo/odoo#44392 X-original-commit: 5d593eb3 Signed-off-by:
pimodoo <pimodoo@users.noreply.github.com>
-
Michael Mattiello (mcm) authored
This commit adds the new AbstractField class written in owl, meant to be extended by specific Field owl implementations. Note that its API is not complete yet, but it is enough for basic usecases. This commit also adapts the BasicRenderer to instantiate the future new fields that will be written in owl. closes odoo/odoo#43759 Related: odoo/enterprise#7872 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
Lucas Perais (lpe) authored
This commit's intention is to bring class inheritance of event handlers to components. Use case: A component class may want to set generic event handlers for all classes inheriting from it, in order to set shared event behavior from the start It is the case in many parts of Odoo, in particular in the cases of fields which need at least to react on some keyboard event for navigation The way to implement such a behavior is to make use of the `useListener` OWL hook, by passing as arguments event name and the handler function
-
Aaron Bohy authored
This hook is now available in owl directly, so we remove its custom definition in Odoo, and adapt the code using it.
-
Aaron Bohy authored
This commit updates owl from v1.0.0-beta5 to v1.0.4.
-
Nicolas Martinelli authored
Use the 'Volume' decimal precision on all `volume` fields. Complement of commit c1a5221b opw-2185374 closes odoo/odoo#44473 X-original-commit: dc0111d6 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
David Beguin authored
Linked to issue: https://github.com/odoo/odoo/issues/43745 At slide creation, as image_1920 was in readonly mode in form view when type is video, document or presentation, the field was not sent in value to the create. There is no reason to set this field readonly. If the user want to modify the thumbnail, that his responsability. This commit remove the readonly flag for slide.image_1920 field to allow computed thumbnail to be saved at slide creation. Task ID: 2182638 PR #44405 closes odoo/odoo#44472 X-original-commit: 15af8734 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
Sébastien Theys authored
Follow up on 255f7219 The issue is still happening. With the current commit, we will be able to know for sure if it happens because we don't wait long enough, or because the messages are never appearing. closes odoo/odoo#44471 Signed-off-by:
Alexandre Kühn (aku) <aku@odoo.com>
-
fja-odoo authored
Some elements like the file input are not compatible with selection. Since there is no reliable way of figuring out if the element is compatible or not we will simply try catch it. closes odoo/odoo#44470 X-original-commit: 1f0a0b380c2738795b0b5a7976692d9e9cd88583 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
Xavier Morel authored
If a view is present multiple times in the same module, the "last instance" is going to win (by replacing any previous instance's arch with its own). Most cases of duplications are probably views which got moved then either not removed (from the original location) or revived (through a forward-port), the first instance can just be removed entirely. For the few which seemed to be more than just trivial mistakes, merge the two views instead. closes odoo/odoo#44463 Related: odoo/enterprise#8107 Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com>
-