forked from Mapan/odoo17e
11 lines
259 B
Python
11 lines
259 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import controllers
|
|
from . import models
|
|
|
|
from odoo.addons.payment import reset_payment_provider
|
|
|
|
|
|
def uninstall_hook(env):
|
|
reset_payment_provider(env, 'sepa_direct_debit')
|