- Sep 25, 2019
-
-
Julien Mougenot authored
Before this commit, textareas in x2many would not allow line return when pressing enter. Now, it does.
-
Aaron Bohy authored
When the content of an autocomplete dropdown (e.g. many2one field) was long, the dropdown could overflow the page. For instance, this was the case of the intrastat_id many2one. Task 2068261
-
Aaron Bohy authored
Let's assume an editable list view with at least two rows. Before this rev., the column widths were re-computed and frozen each time a record was switched into 'edit' mode. As a consequence, if the user clicked on a row, and then on another one, column widths might slightly change. Task 2068261
-
Aaron Bohy authored
Task 2068261
-
Aaron Bohy authored
ClassNames 'oe_read_only' (resp. 'oe_edit_only') can be used in x2many lists to hide columns in 'edit' (resp. 'readonly') modes. However, before this rev., there were two issues: 1) Having such a className on a <button> tag didn't work well as the 'display: none' rule didn't apply on the body cell (it only applied on the button). Same could be observed on <widget> nodes. 2) Having more than one invisible column (with those classNames) didn't work either, because the footer cells weren't hidden. We didn't notice it with one invisible column, because the footer contained one cell less than the header and the body. Those two issues could be observed on the mrp.bom form view. Task 2068261
-
Laurent Smet authored
The tax lock date no longer blocks the user when creating a journal entry priors to it. Instead, the accounting date is moved automatically during the validation to the next available date. This commit also brings more flexibility when dealing with the tax lock date. Indeed, the error is now shown only when adding something impacting the tax report that was not always the case before (e.g. adding a new line not affecting the tax report must not raise something). Others check has been also refactored to be more consistent with the "fully editable" mindset. closes odoo/odoo#36304 Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
Laurent Smet authored
Task ID: 2039160
-
Florian Gilbert authored
This method is also renamed "_autorise_lock_date_changes" and check tax_lock_date. Task ID: 2039160
-
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.
-