Vauxoo / addons-vauxoo

All our modules related to developments that solves generic issues on Odoo, or that solve internal problems on Odoo Core, if something is here, maybe it is solving an issue in your company, try it and report what you see.
http://www.vauxoo.com
193 stars 288 forks source link

[FIX] stock_manual_transfer: super().unlink() was not removed in original commit #1626

Closed carralc closed 1 year ago

carralc commented 1 year ago

While the original fix (https://github.com/Vauxoo/addons-vauxoo/commit/cbd70ffe5b6693e9ecd299e3c935a3dcfa4a0131) did fix the immediate lint messages, we didn't actually stop it from calling super().unlink(), thus it didn't actually fix what it intended to fix. Here we remove that call to super().unlink() so the issue is properly fixed.

luisg123v commented 1 year ago

Thanks @carralc