mirror of
https://gitlab.com/flectra-hq/flectra.git
synced 2025-02-25 18:55:21 -06:00
11 lines
395 B
Python
11 lines
395 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import models
|
|
from . import controllers
|
|
from flectra.addons.payment.models.payment_acquirer import create_missing_journal_for_acquirers
|
|
from flectra.addons.payment import reset_payment_provider
|
|
|
|
def uninstall_hook(cr, registry):
|
|
reset_payment_provider(cr, registry, 'adyen')
|