Thursday, October 24, 2024
3 changes · 17.0
Resolved issues and error corrections
This update fixes an issue where tax groups weren't correctly reflecting the company associated with a sales order or invoice in Chile. By adding the move company to the context, the system now accurately retrieves the appropriate tax groups, ensuring correct reporting and compliance with Chilean tax regulations. This complements a previous fix and improves data accuracy.
Original PR description
This is a complement of previous fix: https://github.com/odoo/enterprise/commit/9b2d9508745fb1b00e42c8d729d01ad7ae1b4b85 Add the company of the move in the context as it is possible that the company of the move and the current company are different. Related community PR: https://github.com/odoo/odoo/pull/185096
This update resolves an issue where users were blocked from synchronizing their online accounts due to a persistent error status. The solution resets the fetching status automatically when transactions are retrieved or through a new button in the online account list view, ensuring smoother synchronization and uninterrupted access to updated financial data.
Original PR description
The field fetching status is used to check if we need to call the synchronization. In case there is an error during the synchronization, the user would be block with his connection. The solution is to reset the fetching status when fetching the transaction or use the new reset button on the list view of the online accounts. task:4262788
This update fixes an issue where Purchase Orders and Sales Orders generated between companies didn't consistently use the expected arrival or commitment dates. Now, the system will accurately reflect the specified delivery dates when creating counterpart orders in the other company, improving order scheduling and fulfillment accuracy.
Original PR description
When generating either a PO or SO from one company to another, currently the commitment date of a Sale Order or the Expected Arrival of a Purchase Order are not used to generate their counter-part in the other company. This means that if you set the expected arrival of the PO in Company A to 10 days in the future, the SO generated in Company B will still try to deliver it as soon as possible, regardless of the date set. Forward-Port-Of: odoo/enterprise#72586