-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path__init__.py
32 lines (29 loc) · 918 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This file is part of the account_invoice_ar module for 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 invoice
from . import pos
from . import bank
from . import party
from . import currency
def register():
Pool.register(
pos.Pos,
pos.PosSequence,
invoice.Invoice,
invoice.InvoiceLine,
invoice.InvoiceExportLicense,
invoice.CreditInvoiceStart,
invoice.InvoiceCmpAsoc,
invoice.AfipWSTransaction,
bank.BankAccount,
party.Party,
currency.Currency,
module='account_invoice_ar', type_='model')
Pool.register(
invoice.CreditInvoice,
module='account_invoice_ar', type_='wizard')
Pool.register(
invoice.InvoiceReport,
module='account_invoice_ar', type_='report')