- Jun 18, 2018
-
-
Hetashree Chauhan authored
Change to more understable error messages TASK-1841502
-
- Jun 15, 2018
-
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Fabien Pinckaers authored
-
Christophe Simonis authored
Note: 1aacc962 has been ignored and will be forward-ported later
-
Christophe Simonis authored
-
Thibault Delavallée authored
Incoming email servers have an action_id field holding a server action to run on newly created records. It comes from old implementation of mail gateways in Odoo. Since then mail gateway has evolved. Incoming mail servers are not linked to a unique model anymore. With aliases and automatic thread creation mails can create records in various models. As the server action is bound to a given model it causes issues. Either we have to give back the result of the mail gateway processing to ensure models match. Either we have to limit action_id to records created using the "default model behavior" of incoming mail servers. We choose to remove this field. Same result can be achieved with an automated action running on create trigger. If exactly the same behavior is intended the following rules should be applied * add automated action with model linked to the one you want to update depending on alias configuration and work flow; * set trigger to create; * set action as python; * if it is necessary to be linked to the mail gateway, check in record message_ids that there is a message with message_type being 'email' meaning it has received an incoming email; Using that heuristic migrating existing fetchmail action to server actions should be quite straightforward and will give more flexibility. This commit is linked to task ID 58641. Closes #23621 .
-
Christophe Simonis authored
-
Jérome Maes authored
-
- Jun 14, 2018
-
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
Revert fd2b1304
-
Nicolas Martinelli authored
When manually registering a time on a Work Order, an error is raised because of an incorrect value for `workcenter_id`. The field is added in the view. opw-1851766
-
Nicolas Martinelli authored
Display stat button to groups who have read access to events.
-
Toufik Benjaa authored
- Stripe.js was limited to only a few pages, which means, if you tried to implement a new payment route it would never work without modifying stripe.js to support the new case. This commit allows stripe.js to be generic and work with any page.
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
No need to force other workers to reset their cache.
-
mreficent authored
There exists two actions for the same mode The mrp_production_report action is used for the graph and pivot. The reporting view does not need a form view, which can be displayed in the operation action Closes #25239
-
mreficent authored
The action action_pos_config_pos is to configure the PoS config record. No need to display a kanban as to launch a new PoS action_pos_config_kanban is the one that display the kanban view Closes #25239
-
RomainLibert authored
If the current user is not linked to any employee we cannot retrieve his calendar and so we cannot compute default times for the leave.
-
Prakash Prajapati authored
Closes #PR:24940. Related to task/issue ID 1851353.
-
Priyanka Kakadiya authored
Field tz is not mandatory on res.partners, so we need a fallback in case it is not defined. Related to Issue : 1856843 Closes #25206
-
Adrien Dieudonne authored
Before this commit, load_action and load_views were never resolved in case of internet connection loss. It's because the call is triggered by web.rpc direcly who uses ajax.rpc without any response check. Now the rpc response is checked in web.ajax. Thereby all responses are handled whether they come from session.rpc or rpc.query. Plus, it was not the responsibility of the session to check the rpc responses. Steps to reproduce the issue: (1) load_action: - Go to the app switcher for the first time - Force disconnected from the network -> No notification appears and the user aren't notify (2) load_views (mobile only): - Go to Sales -> Quotation (In this case, the first call is 'load_views' because we need to force to load some views like kanban view) - Force disconnected from the network -> No notification appears and the user aren't notify Note: It's now important to notify the user about connection loss because a recent improvement in mobile app replaces the 'retry screen' and lets the webclient handle connection issues by itself. The single odoo mobile app is supposed to work with all databases from 10.0.
-
Christophe Simonis authored
The timezone returned by GeoIP may be unknown by `pytz` due to incompatibilities between GeoIP and pytz databases (which may be outdated).
-
Tejas Shahu authored
Recently a ref() has been converted into a direct xml id match. As this does not return a recordset but an ID, the .id that follows is not necessary anymore.
-
Christophe Simonis authored
scrap test is irrelevant in version 11.0
-
RomainLibert authored
In order to avoid the access error when trying to view a partner form view we should hide the event count stat button for the users who don't have access to it (must be event_user or event_manager to read this field). Closes #25225
-
Thibault Delavallée authored
Otherwse there is a traceback. Anyway no need to put a void location.
-
Thibault Delavallée authored
Oversight of last forward port.
-
RomainLibert authored
The controller /event/<model("event.event"):event>/registration/confirm was broken since the portal user cannot read event.registration objects. In 9.0 this was not an issue as we browsed and sudoed the event.registration, but since in 10.0 this line disapeared so did the sudo which this commit reintroduces.
-
Thibault Delavallée authored
This information does not add a real interesting value when dealing with jobs as this is a concatenation of documents linked to the jobs and to applicants. Computation is heavy and could lead to performance issues. We choose to therefore not show the document count and keep the icon.
-
Priyanka Kakadiya authored
Because of same method name point of sale's onchange method overrides sale's onchange method. Sale's method is therefore not called anymore. Fix related to commit https://github.com/odoo/odoo/commit/e434690fe3adf884222b84e16dac3b3dcc0b12ad. See task/issue ID #1854683. Closes #25116.
-
qsm-odoo authored
When saving the media dialog without any selected image, a crash occurred. Now, it properly closes the dialog. opw-1858614
-
Simon Lejeune authored
- Create a product with -4.0 Units in stock - Set the Buy and MTO routes, assign a vendor - Create a SO for 25 Units - A PO of 25 Units is created => validate and receive products - Check availability on the picking linked to the SO Nothing is reserved, while 21 Units could be reserved. opw-1850688 Co-authored-by:
Nicolas Martinelli <nim@odoo.com>
-
Nicolas Martinelli authored
This reverts commit c0618d72.
-
celm1990 authored
This sets the field country_enforce_cities readonly in order to skip inverse field's write on contact creation. Was PR #24686. Courtesy of Carlos Lopez
-