Initial import from Docker volume
This commit is contained in:
32
modules/account_payment_braintree/__init__.py
Executable file
32
modules/account_payment_braintree/__init__.py
Executable file
@@ -0,0 +1,32 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.pool import Pool
|
||||
|
||||
from . import account, ir, party, routes
|
||||
|
||||
__all__ = ['register', 'routes']
|
||||
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
ir.Cron,
|
||||
account.PaymentJournal,
|
||||
account.PaymentGroup,
|
||||
account.Payment,
|
||||
account.PaymentBraintreeRefund,
|
||||
account.PaymentBraintreeAccount,
|
||||
account.PaymentBraintreeCustomer,
|
||||
account.PaymentBraintreeCustomerIdentical,
|
||||
account.PaymentBraintreeCustomerPaymentMethodDeleteAsk,
|
||||
party.Party,
|
||||
party.PartyReceptionDirectDebit,
|
||||
module='account_payment_braintree', type_='model')
|
||||
Pool.register(
|
||||
account.PaymentBraintreeCustomerPaymentMethodDelete,
|
||||
account.PaymentBraintreeCheckout,
|
||||
party.Replace,
|
||||
module='account_payment_braintree', type_='wizard')
|
||||
Pool.register(
|
||||
account.PaymentBraintreeCheckoutPage,
|
||||
module='account_payment_braintree', type_='report')
|
||||
Reference in New Issue
Block a user