Saturday, June 28, 2025
5 changes · 17.0
Resolved issues and error corrections
Swedish SIE4 transaction imports now ignore optional object-list details that are not needed for accounting entries. This prevents those extra details from being mistaken for transaction amounts, reducing the risk of incorrect imported balances.
Original PR description
The aim of this commit is ignoring the whole object list when we import transactions. The object list is represented by the elements between `{}` [[1]]. As we don't need these elements, we do ignore them to avoid a potential issue where we identify an element from this object list as the transaction's balance.
opw-4868415
[1]: https://sie.se/wp-content/uploads/2020/05/SIE_filformat_ver_4B_ENGLISH.pdfMiscellaneous changes
Actually update to use new email domain --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#216195
Original PR description
Actually update to use new email domain --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#216195
Added the dirty hook `_get_additional_robots_rules_web` to allow modules to add extra rules to the robots.txt file whenever it's needed. Previously, it was blocking all the user-agents when we didn't have website installed. Part of https://github.com/odoo/enterprise/pull/85990 opw-4726371 Forward-Port-Of: odoo/odoo#211734
Original PR description
Added the dirty hook `_get_additional_robots_rules_web` to allow modules to add extra rules to the robots.txt file whenever it's needed. Previously, it was blocking all the user-agents when we didn't have website installed. Part of https://github.com/odoo/enterprise/pull/85990 opw-4726371 Forward-Port-Of: odoo/odoo#211734
opw-4816130 Forward-Port-Of: odoo/enterprise#88744
Original PR description
opw-4816130 Forward-Port-Of: odoo/enterprise#88744
Lately we have seen that when trying to upload to Instagram throught the media link, the request is blocked by the robots.txt file. This is because Facebook crawler is trying to access our image url and it is not being able to get the image in their side. This commit tries to add this user-agent to the robots.txt for both when we have and do not have website installed, without altering any of the existent templates. This will silently add it for website, so the user will be able to modify the
Original PR description
Lately we have seen that when trying to upload to Instagram throught the media link, the request is blocked by the robots.txt file. This is because Facebook crawler is trying to access our image url and it is not being able to get the image in their side. This commit tries to add this user-agent to the robots.txt for both when we have and do not have website installed, without altering any of the existent templates. This will silently add it for website, so the user will be able to modify the robots.txt file if needed, but won't be able ot remove it. Community side: https://github.com/odoo/odoo/pull/211734 opw-4726371 Forward-Port-Of: odoo/enterprise#85990