Saturday, March 5, 2022
2 changes · master
Miscellaneous changes
[FIX] mobile: calculation of invoice lines and journal items on update Problem : - updating an invoice line on mobile would result in an incorrect untaxed amount, tax amount and total amount on the invoice and an incorrect entries in the journal items - subtotal of invoice line was not showing in mobile view Solution : - the problem was that debit and credit fields were missing from the view so onchange were not trigger Task: task-2766245 -- I confirm I have signed the CLA and
Original PR description
[FIX] mobile: calculation of invoice lines and journal items on update Problem : - updating an invoice line on mobile would result in an incorrect untaxed amount, tax amount and total amount on the invoice and an incorrect entries in the journal items - subtotal of invoice line was not showing in mobile view Solution : - the problem was that debit and credit fields were missing from the view so onchange were not trigger Task: task-2766245 -- I confirm I have signed the CLA and read the PR guidelines at [www.odoo.com/submit-pr](http://www.odoo.com/submit-pr) Forward-Port-Of: odoo/odoo#84982
## Issue adressed: This commit aims to correct the xml created in order to make it pass the validation of Belcotax. ## Before this commit: The xml that are created are rejected by belcotax because it doesn't pass the validation. ## After this commit: The xml pass the xml validation process. ### Cause of rejection: 1) Missing nodes and data in the XML 2) Didn't take foreign country into account 3) all Sum controls weren't ok ### Notes: A) The generated xmls were tested using
Original PR description
## Issue adressed: This commit aims to correct the xml created in order to make it pass the validation of Belcotax. ## Before this commit: The xml that are created are rejected by belcotax because it…
## Issue adressed: This commit aims to correct the xml created in order to make it pass the validation of Belcotax. ## Before this commit: The xml that are created are rejected by belcotax because it doesn't pass the validation. ## After this commit: The xml pass the xml validation process. ### Cause of rejection: 1) Missing nodes and data in the XML 2) Didn't take foreign country into account 3) all Sum controls weren't ok ### Notes: A) The generated xmls were tested using real datas with the belcotax standalone xml validation tool. To use this tool, here is how to proceed: Belcotax has made its validation application available to run in standalone. 1) Go to https://finances.belgium.be/fr/E-services/Belcotaxonweb/documentation-technique 2) download the "Module de validation revenus 2020" file by right clicking on it and open in a new window and refresh to download the "belcotax.jnlp" file. 3) install what is required to run java web start application on your system. Linux mint: sudo apt install icedtea-netx 4) run your file in terminal this way: javaws belcotax.jnlp task/ticket: #2591273 Forward-Port-Of: odoo/enterprise#25011 Forward-Port-Of: odoo/enterprise#22004