Daily updates from Odoo
Thursday, April 11, 2024
6 changes · master
Enhancements to existing features
The Field Service Sales demo data now includes products with a sales price of zero. This helps users discover and understand how no-charge products can be used in field service workflows, such as complimentary items or included services.
Original PR description
This commit adds some products with a sales price of zero to the demo data. This is a feature that isn't well-known and is difficult to discover, yet it's quite powerful. task:3460001
Account managers can now see more sales, purchase, subscription, and invoice records linked to the partners they manage, including cases where those partners are listed as referrers. This makes it easier for commission teams to track customer activity and related documents from the right menus without extra navigation barriers.
Original PR description
[IMP] partner_commission: account manager access rights This commit intends to give access to account managers to more records of the partners they manage. It mainly gives a range of new permissions…
[IMP] partner_commission: account manager access rights This commit intends to give access to account managers to more records of the partners they manage. It mainly gives a range of new permissions to the Commission/Own Documents and Commission/All Documents groups as well as changing stat buttons to include records where the partner is set as referrer. Commission Managers have access to sale orders/purchase orders/subscriptions/ invoices with a "referrer" set while Commission Users have access to a range of documents where the `partner_id` field is an account they manage or the `referrer_id` field is an account they manage. At creation, a child partner will be propagated its parent's account manager (= user_id). So an account manager will have access to the children's records as well as long as that field is propagated. The groups also give access to Invoicing and Accounting top menu so that members of the group can easily access account.move records. Task-2842675
This update makes several internal checks more efficient by counting matching records instead of loading full search results. Users should not see functional changes, but affected areas may respond slightly faster and follow better development practices.
Original PR description
The aim of this commit is to improve a bit the performance of those conditional and to promote good practices in the code. (And also because Accounting isn't Zaccounting :D ) Context: `search` will create an `ORDER BY` sql statement while the `search_count` is a simple `count(*)` without any ordering. task-id: None
Room is now listed under Productivity and WhatsApp under Marketing, making both apps easier for users to find in the app menu. This improves navigation and aligns these apps with the business areas where they are most commonly used.
Original PR description
Purpose =========== Change the category of the the whatsapp and room. Specification ================= Move Room to Productivity (first). Move WhatsApp to Marketing (last). Technical ========== In the module category record, we utilize the "base" prefix to ensure that the sequence specified within this record is honored. Omitting the "base" prefix would result in the sequence not being respected. This convention is consistently applied throughout the entire Odoo code base. Upgrade Pr- https://github.com/odoo/upgrade/pull/5838 Task-3612501
Onboarding messages in the employee referral app can now be translated for different languages. This improves the experience for multilingual companies by showing referral onboarding guidance in users' preferred languages.
Original PR description
The text shown on the onboarding screens were not translatable. They are now. Task: 3794638
The Barcode app now hides reserved serial number lines with no completed quantity by default, reducing clutter during stock operations. Businesses can still enable a new operation-type setting to show those reserved serial numbers when the previous workflow is needed.
Original PR description
Before this PR: =================== - the operation type in the barcode displayed lines even when the quantity done was 0 . - when the setting is on create new only then in barcode, show lines with done=0 - when use existing not checked AND create new not checked, in barcode we have multiple lines . After this PR: ==================== - Introduces a new option in operations type 'show_reserved_sns,' in the sale module with default value False . - This option becomes active only when the 'use_existing_type' is enabled . - When unchecked, it ensures that lines where the quantity done is 0 are hidden , only the selected ones will be added. - When checked, it will work same as before this commit . - when the setting is on create new only then in barcode, never show show lines with done=0 - when use existing not checked AND create new not checked, Then there should be one line in the aggregate with no serial and a +qty . Task ID : 3284600