Daily updates from Odoo
Navigate
Branch
Tuesday, September 2, 2014
9 changes
New functionality added to Odoo
A new default product called Miscellaneous is now available in the Product module. It is set up as a consumable item and can be used in Point of Sale, making it easier to handle general or uncategorized sales without extra setup.
Original PR description
- Task: https://www.odoo.com/web?debug=#id=9109&view_type=form&model=project.task&action=333&active_id=131 - Pad: https://pad.odoo.com/p/r.YBclg3RUX64e7UYL
Enhancements to existing features
Opportunity records now show a Sales button that links directly to related quotations and sales orders. The button also displays the total value of non-cancelled related quotes and sales, helping sales teams quickly assess pipeline value from the opportunity screen.
Original PR description
Add new button (“Sales“) on Opportunity form view and display total amount of related quotes/sales on that stat button. Task: https://www.odoo.com/web?#id=9370&view_type=form&model=project.task&menu_id=3942&action=327 Pad: https://pad.odoo.com/p/r.fvkticI2jioPxHls
CRM lead forms now use clearer wording by renaming the subject field to Opportunity and adding a helpful example placeholder. Address type editing is limited to the appropriate delivery and invoice address user group, reducing confusion and helping keep customer contact data consistent.
Original PR description
Hello, -> It will restrict address type field to 'group_sale_delivery_address' group. -> Rename "subject" into "Opportunity" -> Add a placeholder "e.g. product pricing" More Details: Task: https://www.odoo.com/web#id=8825&view_type=form&model=project.task&menu_id=3942&action=327 pad: https://pad.odoo.com/p/r.6drgLyS9TNu0oT1J Thanks jas-odoo
Adds three in-app onboarding tips to help users learn key accounting tasks on Android. The tips guide users through importing bank statements, reconciling bank statement lines, and understanding the balance sheet, making setup and daily accounting workflows easier to follow.
Original PR description
Add 3 Android Tips
Create new xml file in account module(account_tip_data.xml) and account_bank_statement_import module(account_import_tip_data.xml).
Tip1: Import Statement
Tip2: Reconciliation on bank statement
Tip3: Balance sheet
Task: https://www.odoo.com/web?#id=9065&view_type=form&model=project.task&menu_id=3942&action=327
Pad Link: https://pad.odoo.com/p/r.K4jFNvXJl2YQbZQkThe sharing option is now restricted to technical users because it is a complex feature that can be risky if used broadly. The menu order was also adjusted to make the option less prominent for regular users.
Original PR description
- Task: https://www.odoo.com/web?debug=#id=9203&view_type=form&model=project.task&action=333&active_id=131 - Pad: https://pad.odoo.com/p/r.eZ5EumopDhqor5Qk
Quotation expiry dates are now available directly in Sales, even when the website quotation feature is not used. The date is also shown in customer emails and sales reports, helping customers and sales teams understand how long an offer remains valid.
Original PR description
- Task: https://www.odoo.com/web/#id=9362&view_type=form&model=project.task&action=333&active_id=131 - Pad: https://pad.odoo.com/p/r.WMJGiGvsWBjI6lHO
The web interface’s icon library was upgraded to a newer Font Awesome version, bringing refreshed assets and additional icons. This improves visual consistency and gives teams more icon options for screens and features across Odoo.
Original PR description
- Task: https://www.odoo.com/web?debug=#id=9004&view_type=form&model=project.task&action=333&active_id=131 - Pad: https://pad.odoo.com/p/r.EwvAHKhOd3lHZAzO
Resolved issues and error corrections
Adds test coverage for a cache issue that could cause edited one-to-many form lines and earlier lines to be lost during change handling. This helps protect data entry workflows in accounting and other forms that rely on multi-line records.
Original PR description
This pull request add a new test about on_change on one2many field. The method convert_to_cache deletes the line modified and all previous lines from the cache. The new test fails because of that.
Odoo now avoids using a user's home location for data storage when that home location is not a real directory, such as for system service accounts. This helps deployments start and run more reliably in stricter server setups.
Original PR description
Use site data dir instead of user data dir when user's home is not a directory. Like system users created with /dev/null as home. Stricter than before.