Tuesday, October 16, 2018
6 changes · master
Enhancements to existing features
When users choose not to create a backorder for remaining stock quantities, the system now skips creating one instead of creating and immediately cancelling it. This makes stock processing cleaner, reduces unnecessary records, and better matches the user's chosen workflow.
Original PR description
Description of the issue/feature this PR addresses: Creation of backorders only when needed Current behavior before PR: - When the option "No Backorder" was selected, a backorder was created then cancelled. Desired behavior after PR is merged: - When the option "No Backorder" was selected, no backorders are created. ( Task ID : 46981 ) -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
A duplicate entry in Odoo's base country data was removed to keep the shared reference data clean and consistent. This is a small housekeeping improvement that helps avoid confusion or inconsistencies in records that rely on country information.
Original PR description
Twice in the file Coutresy of dhamedic, cf odoo/odoo#27826
Newly created websites now start with a more polished and easier-to-edit homepage. The welcome message also uses the website name and only shows guidance when helpful, making setup clearer for users.
The web app will now show console errors when a JavaScript module fails while loading, instead of hiding them unless debug mode is enabled. This helps support and development teams identify problems faster when pages or features fail to start correctly.
Original PR description
Before this commit, if a JS module caused an error while being evaluated, the error was silently swallowed (and only logged in debug mode, in the extra information about the state of all modules). With this commit, we always log the error in the console. Note that this only applies to JS execution errors. If a file has invalid javascript structure, then a parsing error will happen, even before the module system has the possibility to do anythin. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes unnecessary internal parameters from quality control stock picking logic. It simplifies maintenance without changing how users work with quality checks or inventory operations.
Original PR description
Useless kwargs removed in addition to the one removed in odoo community Task ID : 46981
Resolved issues and error corrections
Point of Sale can now apply fiscal position rules that map one tax to multiple taxes, matching the behavior already available in accounting. This helps businesses handle local tax rules where an existing tax must be kept and complemented by another tax, reducing mismatches between POS sales and back-office accounting.
Original PR description
Before this commit, it was not possible to map one tax to multiple taxes in the point of sale, just as it is in the account module. This commit implements fiscal positions that can map to various taxes on POS. Furthermore, id adds test to secure that somewhat implicit feature on which several localisations seem to depend upon. A typical use case if one tax is not replaced but complemented by another. **Description of the issue/feature this PR addresses:** - Taxes can only be replaced in POS. - Not complemented by a peer tax. - Behavior not aligned with backend fp mapping. **Current behavior before PR:** - Tax cannot be mapped to several taxes (aka: complemented: "to itself and other") on POS **Desired behavior after PR is merged:** - Tax can be mapped (aka: complemented) to various taxes on POS -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr @xoe-labs