Monday, July 28, 2025
2 changes · master
Features or functions removed from Odoo
Odoo removed built-in data and image assets for payment methods tied to discontinued payment providers such as Alipay, PayU, Ogone, and SIPS. Existing records are preserved through upgrade handling, so third-party integrations or historical display needs can continue to work while unused standard data is cleaned up.
Original PR description
Commits a4786d51, 34911dee, and 8be750a4 removed the Alipay, PayUmoney, PayU Latam, Ogone, and SIPS payment providers without removing the data for the payment methods they supported and that no other payment provider did. This commit removes those payment methods from the data without removing the associated records with an upgrade script, so that they can still be used by third-party payment integrations or for display purposes if needed.
An unused internal method was removed from the Stock module. This keeps the codebase cleaner without changing any business workflows or user-facing behavior.
Original PR description
The `_compute_ready_items_label` method in `stock.picking` was never used in the stock module. So, this method is unused and has no functional impact. `_compute_ready_items_label` method is added in this [PR](https://github.com/odoo/odoo/pull/166495). This method is never used in any functional or technical logic in that PR. This commit removes the dead code to keep the codebase clean.