Monday, January 9, 2023
8 changes · master
Enhancements to existing features
Accounting users can now display the total amount in the original transaction currency even when the company currently uses only one active currency. This helps businesses distinguish older invoices, bills, and payments that were made in currencies that are no longer active.
Original PR description
…a mono-currency DB Description of the issue/feature this PR addresses: Currently, when a company is in a mono-currency environment, they can't display the total amount in currency when looking at invoices, payments, vendor bills... This could be a problem in a situation where the company currency is, for example dollars; at one point in time, transactions were made in both dollars and euros and now only the dollar currency is activated. The user wouldn't be able to differentiate between those transactions anymore. Current behavior before PR: The user can't show the total amount in currency or the currency on payments when in a mono-currency environment. Desired behavior after PR is merged: The user is able to show the total amount in currency and the currency on payments even in a mono-currency environment. task-3097112 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes a duplicate menu name definition in CRM because the same name is already provided by the Contacts area. This makes future menu name updates easier and reduces unnecessary configuration overlap without changing how users work.
Original PR description
before this commit the name assigned for the res_partner_menu_config menu from contacts and crm module is same, and thus removing the writing of same name again from crm module. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Autocomplete fields now automatically highlight their current text the first time a user focuses them. This makes it quicker to replace existing values in fields such as customer or product selectors, reducing small but repeated editing steps.
Original PR description
On first focus in an autocomplete field, the text content of the input element is automatically highlighted. TASK-ID: 3117420 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Slovak localization has been updated so its source terms are maintained in English and translated back into Slovak through the standard translation process. This improves consistency and maintainability of Slovak accounting localization content without changing core business workflows.
Original PR description
Before this PR, all this localisation was written in slovak, but all the localisation have to be written in english and then translated back in the native language. This PR correct that. Task-id: 3119583 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Point of Sale searches now always check the database for matching products and customers, even after the session has already loaded everything available. This means staff can find newly created items or customers without refreshing the POS session, improving day-to-day usability with only small extra search calls.
Original PR description
Since mid-15, when not all available-in-pos products are loaded in PoS, and they are being searched from the frontend, any matches are loaded. Currently, this feature is disabled when all such products are loaded in PoS, to avoid unnecessary call to the DB. However, if a product got created after a session and its products are loaded, it can't be loaded but with a page refresh - which can be annoying and not that user-friendly. This pr makes the load from search feature always enabled. The trade off between making a few unnecessary calls (short ones) and the inconvenience of refreshing the page once in a while, worth it. Task-id: 3092473 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The task form used in shared projects now more closely matches the standard task form used internally. This gives external project collaborators a more familiar, consistent view and adds task prioritization where relevant across project and timesheet workflows.
Original PR description
The form view of project.task in project sharing is modified to be similar to the classical form view of tasks (in backend). A prioritization is added to the views of project.task for project sharing used in the following modules: - project - sale_project - project_enterprise - hr_timesheet - sale_timesheet task-3119935
Project task sharing forms have been updated to look and work more like the standard task form used inside Odoo. This gives users a more consistent experience and adds task prioritization in shared project views across field service, timesheet, sales, and project apps.
Original PR description
The form view of project.task in project sharing is modified to be similar to the classical form view of tasks (in backend). A prioritization is added to the views of project.task for project sharing used in the following modules: - project - sale_project - project_enterprise - hr_timesheet - sale_timesheet - industry_fsm - industry_fsm_sale task-3119935 CE-https://github.com/odoo/odoo/pull/109067
The upsell screen no longer shows the New button, preventing users from accidentally starting a regular quote when they intend to create an upsell. This makes the subscription upsell flow clearer and reduces user confusion.
Original PR description
Purpose ====== The new button on the upsell screen is confusing for users as they think they are creating an upsell when, in fact, they are just creating a new quote. In this Commit, We hide the new button in the upsell screen so the user can't create a manually. task-3032430