mirror of
https://gitlab.com/flectra-hq/flectra.git
synced 2026-08-19 01:34:43 -05:00
12 lines
400 B
Python
12 lines
400 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, 'authorize')
|
|
|