Daily updates from Odoo
Wednesday, July 25, 2018
3 changes
Resolved issues and error corrections
Grouped data queries can now skip fetching display names when that information is not needed. This reduces unnecessary processing and can make reporting or summary calculations faster without changing the results users rely on.
Original PR description
@odony When you `read_group` to compute some stuff (exemple : number of sale for a product), the `name_get` is compute for each record. But this information is computed for nothing. https://github.com/odoo/odoo/issues/22783 To no compute the name_get : `self.env['your_model'].with_context(no_name_get=True).read_group()` What do you think ? (or maybe create `read_group_fast()` methode, or use `fast_compute` for the context) @alnslang -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Clicking a partner from a form now opens the complete partner record instead of a simplified version. This gives users immediate access to all partner details and avoids extra navigation when reviewing or editing customer and contact information.
Original PR description
… on partner click in form view. Cliking on the partner in the form should open full partner form. so set high priority to the full partner form than partner short form. Before this commit: Clicking on the partner in form opens short partner form view. Related to Issue: 1865330 Issue : https://www.odoo.com/web#id=1865330&action=327&model=project.task&view_type=form&menu_id=4720 Pad: https://pad.odoo.com/p/r.e06d9971a6d5be6d438c2ccbacf24fd6 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes an installation problem in the India sales localization by removing a reference to a file that no longer exists. Businesses using Indian sales features can install or update the module without being blocked by this packaging error.
Original PR description
Task link: https://www.odoo.com/web#id=1867432&action=333&active_id=1278&model=project.task&view_type=form&menu_id=4720 Pad link: https://pad.odoo.com/p/r.7b10a6923a7fb98062d07d2c9a7867ea Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr