Monday, August 13, 2018
3 changes
Resolved issues and error corrections
This change prevents the Point of Sale from showing an error when a fiscal position removes a tax from an order line. It helps cashiers continue sales smoothly in tax configurations where an original tax is intentionally mapped to no replacement tax.
Original PR description
Possibly an oversight:
line_tax can be undefined in case that the fiscal position mappes a src tax
to NO desctionation tax.
This is also contemplated in compute_all:
if (!tax){
return;
}
This commit, complements the compute_all semantic with this fix and avoides a
js traceback in those cases.
**Description of the issue/feature this PR addresses:**
- Eliminate traceback, when fiscal position maps to no tax
**Current behavior before PR:**
- Traceback, when FP maps a src tax to NO dst tax
**Desired behavior after PR is merged:**
- No traceback.
**Note:** Please do not close, even if not immediately accepted (`wishlist` tag). This PR is meant to be carried along and actively maintained, until this semantic will be completed this way or another.
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
@xoe-labsThis fixes an issue where a model inherited by another module could receive an identifier from the inheriting module instead of the module where it was originally defined. The change makes model references more predictable, reducing confusion and potential inconsistencies for configurations and integrations.
Original PR description
Description of the issue/feature this PR addresses: - create a module : `module_ZZ` - create a model `model_1` in `module_ZZ` --> get xml_id of `model_1` -> `module_ZZ.model_model_1` - create a module : `module_AA` - create inherit model `model_1` in `module_AA` --> get xml_id of `model_1` : -> `module_AA.model_model_1` it more logique to have `module_ZZ.model_model_1` no ? @alnslang @odony -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Fixes an error that could occur when opening the Sales Team menu after recent date-handling changes. This helps users access sales team information reliably without interruption.
Original PR description
<b> Issue:</b> https://www.odoo.com/web?#id=1873933&action=333&active_id=1278&model=project.task&view_type=form&menu_id=4720 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