Monday, January 9, 2023
4 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
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