Daily updates from Odoo
Saturday, November 22, 2025
2 changes · master
Resolved issues and error corrections
The Belgian Partner VAT Listing now excludes transactions marked as exempt based on the tax category code. This prevents exempt 0% taxes from being reported when they should not be, improving compliance and report accuracy.
Original PR description
Currently, the behavior is wrong and 0% taxes appear in the report (if the cumulative base for a partner is > 250) A distinction needs to be done here. The operations are taxable (even at a zero rate) or exempt. We shall rely on the Tax Category Code (E = Exempt) When a tax belongs to E, it cannot appear in the Partner VAT Listing. It is exempt from taxation. It does not open the right to deduction of vat on purchases. task-5269970 Forward-Port-Of: odoo/enterprise#99803
This fix updates Facebook social media statistics handling after Facebook deprecated some metrics. It prevents broken or unreliable stat calculations by removing unused data requests, using the replacement metric for post views, and temporarily setting uncertain audience trend values to zero until a fuller follow-up is available.
Original PR description
Bug === Facebook deprecated some of the endpoints related to statistics https://developers.facebook.com/docs/platforminsights/page/deprecated-metrics For the accounts, `page_fan_adds` and `page_fan_removes`, we are still unsure about unfollow, and so to get a fix quickly, we set the audience trend to zero, and we will fix it later. For live post, we used `post_impressions` in the API call, but that metric was not used, so we just remove it. For stream post, `post_impressions` has been replaced by `post_media_view`, as suggested in the migration note from Facebook. Task-5346965 Forward-Port-Of: odoo/enterprise#100119