Daily updates from Odoo
Navigate
Branch
Friday, November 17, 2017
5 changes
New functionality added to Odoo
Website editors can now add a Facebook fan page block to their Odoo website and preview it while editing. The block supports common Facebook URLs, uses the configured company Facebook page when available, and adapts better on mobile.
Original PR description
Task : https://www.odoo.com/web#id=31735&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Pad : https://pad.odoo.com/p/r.76dec9167e42c944e726777ffdb308d2 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
Payment transactions now record key operation events, including server-to-server payments and form payment feedback. This improves traceability for payment processing and helps teams investigate payment issues more easily.
Original PR description
This PR allows to log payment transaction operation like s2s & form payment. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Enhancements to existing features
The Purchase button on a product now shows purchase order lines only in a list, instead of opening an unsuitable line detail form. This keeps users in the intended overview and avoids confusion when reviewing purchase activity for a product.
Original PR description
… purchase stat button of product form. Task : https://www.odoo.com/web#id=35550&view_type=form&model=project.task&action=327&menu_id=4720 Pad : https://pad.odoo.com/p/r.76b5e932871f6575e6e3837dc8e64b52 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
On mobile forms, disabled status bars now appear in gray so users can more easily see that they cannot be changed. This reduces confusion when viewing records with locked or unavailable status controls.
Original PR description
…o user can easily understand it's not changeable Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: Task: https://www.odoo.com/web?#id=35306&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Pad: https://pad.odoo.com/p/openerp-project.task-I2SYAFUWLI -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Code cleanup and technical improvements
This update streamlines how Odoo lists databases by directly finding databases owned by the current database user. It also adds clearer logging when something goes wrong, making support and troubleshooting easier without changing day-to-day user workflows.
Original PR description
Description of the issue/feature this PR addresses: When trying to list db's, the db_user is searched and verified before searching for the databases. As it's enclosed in a db.cursor context manager, we can assume that there is a db user at this very moment. This commit uses a single query to find databases that belongs to this cursor user (as suggested by @KangOl -- thanks) Finally, this is not the kind of PR that we can merge before the WE. Also, this commit adds a message in the logs when an exception occurs to facilitate debugging instead of silently returning an empty list. Current behavior before PR: Search for the current_user and verify that there is one and then search for his databases Desired behavior after PR is merged: Search directly for the databases of the current user -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr