- Sep 25, 2019
-
-
Florian Gilbert authored
This commit deletes account_cancel module and squash it into account. The 'update_posted' field is changed by 'restrict_mode_hash_table' field. If 'restrict_mode_hash_table' is true, you have a hash chain on your account journal. These hash chains prove the inalterability of your accounting. l10n_fr_certification module is deleted and all hashing method are moved in account module. Now, you can download a PDF report about your inalterability in the company settings. If you have l10n_fr or l10n_post_cert installed you have more information on this report like the inalterability of pos orders, etc. Task ID: 2039160
-
Arnold Moyaux authored
On Mobile the byproduct One2many only empty line. It's due to default kanban view using the _rec_name in order to display the byproduct name. On byproduct the _rec_name is not defined nor the field name so the kanban is empty. closes odoo/odoo#37403 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
Simon Lejeune authored
When a BoM was composed of a phantom BoM, there was mutliple bugs: - if not routing was set on the phantom BoM, the components were never consumed - if no operation was set on the BoM, its components were to be consumed on the last workorder of the BoM and of the phantom BoM. closes odoo/odoo#37304 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
- Sep 24, 2019
-
-
Florent Lejoly authored
Currently there is a traceback when trying to leave a course (unsubscribe) from the frontend on the homepage of a specific course. (when clicking on "You're enrolled") This fixes the traceback. closes odoo/odoo#37384 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
William Henrotin authored
Computing quantities of a kit product made only of consumable failed as the quantities are not initialized. This commit makes sure this kind of products don't have their quantities set up in mrp and so are set to 0 in stock closes odoo/odoo#37382 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
Denis Vermylen authored
if website_animate is installed. Website_animate suggests to animate the image when it's selected and hides the blocks. So we add a click on "Blocks" to ensure we're in the right menu before continuing. If website_animate isn't installed, this extra step doesn't alter the current behaviour. Technically this should be done in a bridge module depending on website_sale and website_animate but none exists and it's not worth creating one for this tiny fix alone. closes odoo/odoo#37377 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
Simon Lejeune authored
oversight of bad6db24 Closes #37289 closes odoo/odoo#37361 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
RomainLibert authored
Make the kanban ribbon smaller and purple Move categ_ids closes odoo/odoo#37349 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
David Beguin authored
Task ID: 2074582 closes odoo/odoo#37340 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
David Beguin authored
Adding a string element to a list with += is not adding the element to the list but is instead adding every single character of the string as an element to the list. Building a string using a join method was resulting to an recent history displayed like H > O > M > E > ( > 8 > : > 4 > 2 > ) --> Should be : HOME (8:42) > Contact Us (8:45) Apart from that, since the tracking is now ordered by visit_datetime DESC, to have a chronological order, we need to reverse the list of last visited pages to have something like : Home (12:43) > About us (12:45) > Contact Us (12:52) instead of : Contact Us (12:52) > About us (12:45) > Home (12:43) Task ID: 2076190 PR #37340
-
David Beguin authored
As since 5b9a81a2 website.visitor.name can be null if the visitor is not linked to a lead or a res.partner, we cannot use the name anymore to build the name of the mail.channel, etc.. Using display_name will always return the correct value, and will include the numbering of the visitor, in order to identify easily the chat windows (if operator is speaking with multi visitor at the same time) Task ID: 2076190 PR #37340
-
David Beguin authored
This commit fixes the send feedback by creating explicitely the rating. Before, we gave to the mail channel the rating values. But as rating uses res_id and res_model, creating the rating directly with correct values in res_id and res_model makes the magic. The rating is correctly linked to the mail channel. Task ID: 2076190 PR #37340
-
mcm-odoo authored
Before: the address column was 50% wide because of a span in the labels column which causes its column to be 50% wide. Now: replaced the span by a label, the columns have the right sizes. task-2075905 closes odoo/odoo#37331 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
William Henrotin authored
With this commit, the 'update cost' button is always displayed on product.product whatever the variant count closes odoo/odoo#37328 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
- Sep 23, 2019
-
-
Simon Lejeune authored
closes odoo/odoo#37308 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
- Sep 24, 2019
-
-
Arnold Moyaux authored
Usecase to reproduce: - Create a receipt with a quantity of 2 - Receive 1 and create a back order - Receive 2 in the BO It will only require the components for 2 units and not 3. closes odoo/odoo#37305 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
Arnold Moyaux authored
-
Arnold Moyaux authored
test_update_quantity is in the middle of product_produce test and due to previous commit test_product_produce_11 is between 6 and 7. Reorder file for a better future.
-
Arnold Moyaux authored
commit ccbd6712 commit f3f9dd8c Introduced both test_product_produce_6.
-
qsm-odoo authored
With the PR this commit is from, websites now always use a google font. Adding a preconnect to the google fonts cdn allows to increase page loading speed. Part of https://github.com/odoo/odoo/pull/37293 task-2069043 closes odoo/odoo#37293 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
qsm-odoo authored
* web, theme_bootswatch Improvement of https://github.com/odoo/odoo/commit/02a321cffb2da60a86b960e75c445e37094567b4 - Clarify the name of the support font (to distinguish it from standard and google fonts and avoid confusion with Noto Sans and Noto Serif). - Make sure the support font is added and can be added for all font definitions in odoo scss files thanks to a scss function. Could be backported in 12.0 if judged necessary. Part of https://github.com/odoo/odoo/pull/37293
-
qsm-odoo authored
Before this commit, the default font for the website was the bootstrap one, which is a series of many fonts which should at least contain one which is present on every user system. The problem is that commit https://github.com/odoo/odoo/commit/ed18095127b20da516fa5ada943b2dd6d5c84652 added the definition of a Roboto font, available in all assets... and Roboto is part of the bootstrap font. This added a new font loading on page load and that loading is not optimized at the moment. This thus broke our work to improve google pagespeed ratings. This commit replaces the bootstrap font with a forced Roboto font whose loading is handled by an optimized loading of the related google font. This also improves the very default font of the website by making it more stable accross different browser (we will always use the loaded Roboto font instead of relying on the user system fonts). Part of https://github.com/odoo/odoo/pull/37293
-
Martin Trigaux authored
Still without demo data closes odoo/odoo#37274 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Martin Trigaux authored
Some models did not specified a _description
-
Martin Trigaux authored
When a model inherit from another, it still must have a _description specified if the _name is different Before this commit, mail.test.cc inherited from mail.thread.cc without specifying a _description but this was not raising any issue
-
Martin Trigaux authored
No need to be able to translate html element
-
- Sep 23, 2019
-
-
oco-odoo authored
So that people encoding their statements manually can directly encode the exchange rate data on their lines. closes odoo/odoo#37262 Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
RomainLibert authored
The new export feature forgot to filter out the action buttons that can be displayed in the list view. (see odoo/odoo@5c4544f) This lead to javascript trying to get fields on the model like `action_validate` which obviously doesn't exist. closes odoo/odoo#37261 Signed-off-by:
Romain Libert (rli) <rli@odoo.com>
-
Sébastien Theys authored
The format of `many2one_reference` was not introduced when the new field type was created, which leads to errors when the web client is trying to display the value of such fields. Since the value of this field is an ID, it is decided to display it like an integer, which is consistent with previous behavior: the fields that are now `many2one_reference` are still stored as integer and they were already displayed as integer before. closes odoo/odoo#37216 Signed-off-by:
Raphael Collet (rco) <rco@openerp.com>
-
Raphael Collet authored
This helps for updating inverse fields without making queries. Due to this change, a `flush` has to be added in the portal attachment test to actually compute the inverse after the change of `res_id`.
-
Raphael Collet authored
Before this commit, the inverse of `datas` would be computed after the `create`, which would lead to unnecessary queries, not only for writing the new values, but also because of the re-computation of fields that depend on these values.
-
Raphael Collet authored
This makes sense because in `create` the "previous" value of a field is obviously non-existent. This avoids having to fetch pre-existing attachments when they are known to be inexistent, which optimizes stored related binary that are computed post-insert.
-
Sébastien Theys authored
Before this commit, flushing a model that uses the `image.mixin` would generate twice as many queries as it should. This is because `_compute_related` is not meant to be overridden. In the override of `Image` we call `super()` then post process the records by reassigning each record's relevant image field with `_image_process`. The `super()` will assign the field of the records once which will in turn trigger a `write` (and thus, will generate queries) then after the `super()` call we reassign them which will re-trigger the same `write` and the same queries. With this commit, instead of overriding `_compute_related` we extract the processing to a method that can be overridden, so that the `write` is called simply once. The result, obviously, is that queries related to the `write` are cut in half. Related PR: #36683 & #36288 Co-authored-by:
Adrian Torres <adt@odoo.com> Co-authored-by:
Sébastien Theys <seb@odoo.com>
-
Raphael Collet authored
This fixes an issue when a Model A with a `many2one_reference` is inherited in Model B with `_inherits`, and another Model C defines a `one2many` having as inverse the inherited `many2one_reference` in Model B. Without this commit, the value of `model_field` is `False` by default for the field in B, which would lead to incorrect queries when building `get_domain_list` for the `one2many`.
-
- Sep 24, 2019
-
-
jbm-odoo authored
closes odoo/odoo#37299 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
jbm-odoo authored
-
Martin Trigaux authored
This commit fixes: - body of a email.template in a small field - translation of website_description of a product does not show the source of the translation - translation of website_description of a product shows the full content for the current language HTML fields are typically fields with longer of content. If the field is an HTML field, it should be displayed in a textarea, like the text fields. Most of HTML fields are split in meaningful chunks of content (using xml_translate or html_translate method). For these fields, the source must be displayed. Also sort the entries on the source to have a consistent order closes odoo/odoo#37215 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Sep 20, 2019
-
-
Joseph Caburnay authored
When real cost invoice policy is active in a delivery carrier, the delivery price is set after validating the delivery. When there is margin, the estimated price is calculated with margin but when the delivery is validated, the price set in the delivery line does not include the margin. This commit fixes this behavior by setting the price of the delivery line with appropriate margin. closes odoo/odoo#37178 Signed-off-by:
pimodoo <pimodoo@users.noreply.github.com>
-
- Sep 24, 2019
-
-
Romain Estievenart authored
Before this commit, the web_editor toolbar wasn't horizontally scrollable and part ot the items were not displayed. To fix this, we have to revert back the initial position on some elements. closes odoo/odoo#37076 Signed-off-by:
Adrien Dieudonné (adr) <adr@odoo.com>
-
Romain Estievenart authored
Before this commit, the web_editor toolbar wasn't horizontally scrollable and part ot the items were out of the screen area. To fix this, we have to revert back the initial position on some elements.
-