- Sep 03, 2019
-
-
Simon Lejeune authored
Now that company_id is required on the picking type, make sure we create as many dropship picking type/rules/sequence as there are companies task-1985992
-
Simon Lejeune authored
Ensure proper domains are applied and enforced on relation fields thanks to the `check_company` attributes. product.template - make responsible a property field in order to ensure proper next activities when a product is used between multiple companies stock.putaway.rule - added a company_id field stock.move.line - company_id is not related anymore since a move line can exist without a move until its validation stock.package_level - added a company_id field stock.picking.type - company_id is now required stock.production.lot - added a company_id field, adapted the constraint accordingly stock.quant - check the consistency only in inventory mode stock.quant.package - company_id is now empty if the package is empty stock.picking - company_id is now related to the one of its picking type Added some tests. Moved stock_traceability in the `report` directory. Removed useless /tests/tours/route.js. task-1985992
-
Simon Lejeune authored
Assigning `check_company=True` to a field will - set a default domain filtering the companies - allow to call `_check_company` on the records to ensure the domain is respected Setting `_check_company_auto = True` on a model will ensure `_check_company` is called at create and write, enforcing the multi company domain. Joint work with Raphael Collet <rco@odoo.com> task-1985992
-
Damien Bouvy authored
If the session is unbound before a call to this route, this assertion will raise. The point of this code is not to crash when the parameters are incorrect or the session unbound - the point is to avoid leaking incorrect information. Simply return an empty object to the JS code, it will stop polling after a single failed attempt instead of crashing. closes odoo/odoo#36356 Signed-off-by:
Damien Bouvy (dbo) <dbo@odoo.com>
-
svs-odoo authored
`sale` Delivery Lead Time -> Lead Time `stock` Assign owner -> Assign Owner Task #2058665 closes odoo/odoo#36132 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
svs-odoo authored
When an inventory is canceled, the user is able to edit its locations and products fields. So, if he/she does and then restart the inventory, it can have some lines who don't match these fields. Now when an inventory adjustment is canceled, we delete all its lines. Its lines will be recreated when the inventory adjustment will be restarted. Thus, lines will always corresponding to their inventory `location_ids` and `product_ids`. Also, a confirmation popup was added to ask if user really want to cancel the inventory when he/shes clicks on the cancel button (to avoid users delete their on going inv. adj. by miss clicking). Task #2058665
-
svs-odoo authored
Before this commit, forecasted quantity in the product stat button and in graph/grid view wasn't always equals. The issue was the forecasted quantity is based on quant in location who is child of warehouse location, and the `report.inventory.quantity` used in graph/grid view didn't filter on warehouse location (took all internal location). So, completes the domain on `report.inventory.quantity` to get only quantity in the warehouse. Same change is applied to the Forecasted Inventory report. Task #2058665
-
svs-odoo authored
In the product form view, add a space before the "days" word to avoid to have the value sticked to days. Task #2058665
-
svs-odoo authored
The informative message about the scheduler on the reordering rules form view takes now all the width. Task #2058665
-
Sébastien Theys authored
The canonical tag is important for SEO, indeed it prevents search engines from indexing duplicate content. Reasoning ========= The choice has been made to create the canonical tag automatically depending on the request path, ignoring the query string, and manually prefixing the appropriate domain and language code. Indeed creating it manually for each resource would create a lot of code and potential mistakes. It is more dangerous to do it the generic way, but after investigation it appears that it is an acceptable trade-off since the vast majority of our routes are well built and already ready for this: - using query string only for minor features that do not change the main content - having the models, the ids, the pager and other important features in the path Override ======== It is still possible to override the default behavior by passing `canonical_params` manually to the view or to the different methods. This is done for `/event` because the only way to display Past Events is to add `date=old`. Languages ========= Fix an issue where it was possible for a bot to be on the URL without language code but to use a language that is not the default language. Adapt hreflang, because it: - must only be present on canonical pages - must always lead to canonical pages - should not be set if there is no alternate language Misc ==== task-1958075 closes #12532 Inspired by OCA module `website_canonical_url` courtesy of Jairo Llopis. closes odoo/odoo#35852 Signed-off-by:
Jérémy Kersten (jke) <jke@openerp.com> Co-authored-by:
Jairo Llopis <jairo.llopis@tecnativa.com> Co-authored-by:
Sébastien Theys <seb@odoo.com>
-
Vincent Schippefilt authored
When the cursor hovers just above the settings icon that appears when the cursor is in the column is blinking between the pointer and the "move column" pointer cursor Task: 2060825 closes odoo/odoo#36377 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
Pierre Paridans authored
The mobile-specific code relies on the size of the browser <= SM (currently 767px). But when phantomjs was used to run the JS tests headlessly there was no way to force that size for the mobile test suite (e.g. when running from the command line, runbot...). The only solution was to mock some variables (isMobile, size_class) in web.config to force them to mobile-like values (see commits odoo/odoo@9bc5009481de188 and odoo/odoo@497dfb691774bd7b8). Since the switch to Chrome Headless the browser size is set to a mobile-friendly size (currently 375x667) when the mobile test suite is ran. So isMobile is automatically set to true. The code to mock the web.config has then become redundant. This commit removes it to only rely on the browser window size for the mobile test suite execution. Notes: When testing manually in the browser it's now required to set the browser window to a mobile-friendly size. Even if it was already the case, it will provide a more realistic environment and allows to test important/behavior-related media queries (e.g. clicking on a button only visible/present on mobile). BTW the easiest way to run all tests is to execute them directly using Chrome Headless (except for debugging of course). closes odoo/odoo#36328 Signed-off-by:
Christophe Monniez (moc) <moc@odoo.com>
-
wan authored
Task 2039772 Add a new amount matching mode by taking the amount from the label, based on a regex. The regex must contain a capture group. If multiple groups are matched, there will be an error. Also add a 'remaining' option for the second line, that puts the remaining amount of the statement in the second line. closes odoo/odoo#35143 Signed-off-by:
Quentin De Paoli (qdp) <qdp@openerp.com>
-
wan authored
Part of task 2039772 The second line of reconciliation models (client side) was computed based on the amount of the bank statement instead of the remaining balance, like on the server side. We also need it to be based on the remaining balance, for the next commit introducing the detection of the amount thanks to a regex on the commuication of the statement.
-
Arnaud Baes authored
Follow up of fix https://github.com/odoo/odoo/commit/c25803235a6db9d54755bfca5ea417c322a9fcba TaskID: BugsLogistics closes odoo/odoo#36311 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
William Henrotin authored
Commit fff2a30a introduces a dialog to show quantities on hand directly on sale order line. This commit replace the dialog by a bootstrap popover Task 2058670 closes odoo/odoo#36213 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
Raphael Collet authored
closes odoo/odoo#35910 Signed-off-by:
Raphael Collet (rco) <rco@openerp.com>
-
Raphael Collet authored
-
Raphael Collet authored
-
Raphael Collet authored
-
Raphael Collet authored
-
Raphael Collet authored
-
Raphael Collet authored
-
svs-odoo authored
Add a filter for `production_id` in mrp.workorder search. Task #1965962 closes odoo/odoo#36014 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
mgh-odoo authored
some fields are not added to mobile kanban that creates an issue for a new manufacturing order task-2056421 closes odoo/odoo#36171 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
mgh-odoo authored
task-2056421
-
- Sep 02, 2019
-
-
Pierre Paridans authored
Remove code left behind after commit odoo/odoo@9f7e6bb798155 closes odoo/odoo#36333 Signed-off-by:
Adrien Dieudonné (adr) <adr@odoo.com>
-
- Sep 03, 2019
-
-
Christophe Monniez authored
Temporary tour deactivation until the test is fixed. The test is also tagged 'to_fix' in order to execute them separately on the runbot. closes odoo/odoo#36364 Signed-off-by:
Christophe Monniez (moc) <moc@odoo.com>
-
- Sep 02, 2019
-
-
Xavier-Do authored
When a selection field has a dash the parsing was failing only returning the begining of this selection, leading to a mismatch fot the ir_model_fields_selection. This was discovered because "iot.trigger" add multiple selection fields element with name only differing by the post dash part: print print-op print-slip This was leading to a failure of the ON CONFLICT DO UPDATE (ir_translation line 120) since multiple EXCLUDED where similar in mrp_workorder_iot/i18n/fr.po(same res_id). closes odoo/odoo#36347 Signed-off-by:
Xavier Dollé (xdo) <xdo@odoo.com>
-
- Aug 30, 2019
-
-
Jinal Patel authored
Back-ported from the master, commit ca9a733b Before this rev., classNames 'oe_read_only' (only display in readonly mode) and 'oe_edit_only' (only display in edit mode) didn't work in x2m lists inside form views (only the cells in the tbody were hidden, but not the header). This rev. makes this work. Task 1949618 closes odoo/odoo#36117 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com> closes odoo/odoo#36285 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
- Sep 02, 2019
-
-
Prakash Prajapati authored
This rev. makes the part of the progressbar corresponding to falsy records 'alive': the user can now click on it to filter on records whose value is false for the progressbar field. Task 1952430 closes odoo/odoo#35100 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com> Co-authored-by:
Mohammed Shekha <msh@odoo.com> Co-authored-by:
Aaron Bohy <aab@odoo.com>
-
Aaron Bohy authored
The user can now click on the grey part of the progressbar, to filter on task on the 'Grey' state. Part of task 1952430
-
- Sep 01, 2019
-
-
Odoo Translation Bot authored
-
- Aug 30, 2019
-
-
Adrian Torres authored
Before this commit, creating a record of a model with at least one property/company_dependent field would trigger the field's inverse method regardless of whether an actual value was being passed in for the field or not. This means that if no value was given or if the value was the same as the default value, we would waste precious time in the property field's inverse method. With this commit, we do not call the inverse method if: 1) there is no value for it in the vals dict (use default) 2) the value in the vals dict is the same as the default value As an example, when creating a res.partner record while having account installed (which introduces a property field in res.partner), the creation time goes from 24ms to 14ms. closes odoo/odoo#36267 Signed-off-by:
Raphael Collet (rco) <rco@openerp.com>
-
Odoo's Mergebot authored
See sub commits for more details. Task ID 2058595 PR #36281 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
Thibault Delavallée authored
Purpose is to set review message on both message and rating so that reviews are correctly displayed in eLearning backend as well as correctly displayed in chatter frontend. Task ID 2058595 PR #36281
-
Thibault Delavallée authored
Creating channels and slides in backend was leading to warnings and/or crashes because of computed fields not being always updated. With new computed fields coming from 9920f20e this cannot be done anymore. Task ID 2058595 PR #36281
-
Thibault Delavallée authored
Purpose of this commit is to * delete rating when deleting message. Otherwise rating coming from frontend portal review chatter are lost in the void; * allow system users to delete ratings; Task ID 2058595 PR #36281
-
Thibault Delavallée authored
Commit 9920f20e introduced a new field type in the ORM. However it is not referenced in various JS parts, leading to crashes. Notably list view of messages and activities crashes. As this is basically an integer field, easy fix is to use an integer widget on those fields. Task ID 2058595 PR #36281
-
Thibault Delavallée authored
Purpose of this commit is to avoid having error message replacing the cross used to close the container of the error message. Task ID 2058595 PR #36281
-