You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
359 B

  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. from . import controllers
  3. from . import models
  4. from odoo.addons.payment import setup_provider, reset_payment_provider
  5. def post_init_hook(cr, registry):
  6. setup_provider(cr, registry, 'payplug')
  7. def uninstall_hook(cr, registry):
  8. reset_payment_provider(cr, registry, 'payplug')