Odoo18-Base/addons/payment/__init__.py
2025-01-06 10:57:38 +07:00

15 lines
360 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import controllers
from . import models
from . import utils
from . import wizards
def setup_provider(env, code):
env['payment.provider']._setup_provider(code)
def reset_payment_provider(env, code, **kwargs):
env['payment.provider']._remove_provider(code, **kwargs)