Monday, February 20, 2023
2 changes · master
Enhancements to existing features
Users can once again create and edit accounts directly from the invoice list view. This improves workflow flexibility by allowing accounting teams to manage missing accounts without leaving the invoice process.
Original PR description
Before this PR, we wanted remove the possibility to create account on the fly. However, we thought it would be better to allow people to create and edit an account from the tree view. task-id: 3188348 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The website configurator has been polished with clearer text, improved layout, larger skip buttons, and safer theme preview loading. Users can now enter an industry even when it is not listed, helping Odoo collect missing industry names to improve future recommendations.
Original PR description
The first objective of this commit is to polish the website configurator: 1) On page 1 of it: - The size of the text is increased. 2) On page 2 of it: - The font size inside dropdown is reduced. - 30…
The first objective of this commit is to polish the website
configurator:
1) On page 1 of it: - The size of the text is increased.
2) On page 2 of it: - The font size inside dropdown is reduced.
- 30 results are displayed inside dropdown instead
of 15.
3) On page 3 of it: - The size of the text is increased.
3) On page 4: - The cards are refactored.
- The end line is removed.
- The "Build my website" button is moved to the left.
4) On page 5 : - It is now impossible for the user to click on a theme
preview before it is completely loaded.
5) On all pages, the size of the "Skip and start from scratch" button
has been increased.
On the second page of the website configurator, the user has to choose
an industry type. Sometimes, it happens that the user is searching for
an industry that is not known by the server. Before this commit, a
message of type "No result found" appeared and the user had to choose
an other industry among the existing ones. From this commit, the
"No result found" message is replaced by the name of the industry that
the user is writing. To choose its industry type, the user can click on
the displayed industry name or outside of the input area. This last
option calls the `_blurIndustrySelection` function and the written
industry is kept as the final industry choice. If the user chooses an
industry name that is not known by the server then the remaining of the
website configuration is done with the "abbey" industry. Moreover, this
unknown industry name as well as the language used by the user is sent
and stored to the IAP database. The goal of it is to regularly update
the industry list so that it becomes as most complete as possible.
IAP PR : https://github.com/odoo/iap-apps/pull/549
task-3062171